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
listlengths
1
1.84k
created_at
stringlengths
25
25
arxiv
listlengths
0
201
languages
listlengths
0
1.83k
tags_str
stringlengths
17
9.34k
text_str
stringlengths
0
389k
text_lists
listlengths
0
722
processed_texts
listlengths
1
723
tokens_length
listlengths
1
723
input_texts
listlengths
1
61
embeddings
listlengths
768
768
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/646595746905620480/oeKI14gB_400x400.png&#39;)"> </div> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1072419376668782597/hhmhNVER_400x400.jpg&#39;)"> </div> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1481142443068198912/NCrXoLUB_400x400.jpg&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI CYBORG 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">ひろゆき, Hiroyuki Nishimura & 落合陽一 Yoichi OCHIAI & 乙武 洋匡</div> <div style="text-align: center; font-size: 14px;">@h_ototake-hirox246-ochyai</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from ひろゆき, Hiroyuki Nishimura & 落合陽一 Yoichi OCHIAI & 乙武 洋匡. | Data | ひろゆき, Hiroyuki Nishimura | 落合陽一 Yoichi OCHIAI | 乙武 洋匡 | | --- | --- | --- | --- | | Tweets downloaded | 3248 | 3240 | 3238 | | Retweets | 281 | 2238 | 1259 | | Short tweets | 1980 | 574 | 1437 | | Tweets kept | 987 | 428 | 542 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/3k39l31f/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @h_ototake-hirox246-ochyai's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/1d9okxed) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/1d9okxed/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/h_ototake-hirox246-ochyai') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "http://www.huggingtweets.com/h_ototake-hirox246-ochyai/1642059945521/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/h_ototake-hirox246-ochyai
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI CYBORG ひろゆき, Hiroyuki Nishimura & 落合陽一 Yoichi OCHIAI & 乙武 洋匡 @h\_ototake-hirox246-ochyai I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from ひろゆき, Hiroyuki Nishimura & 落合陽一 Yoichi OCHIAI & 乙武 洋匡. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @h\_ototake-hirox246-ochyai's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1423284698046865415/vfSSZ3t9_400x400.jpg&#39;)"> </div> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1419852056282681354/8GlUQCan_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI CYBORG 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">🥴 & Habiba.</div> <div style="text-align: center; font-size: 14px;">@habiba_shoukry-yourfavhwhw</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from 🥴 & Habiba.. | Data | 🥴 | Habiba. | | --- | --- | --- | | Tweets downloaded | 3246 | 3239 | | Retweets | 57 | 188 | | Short tweets | 524 | 842 | | Tweets kept | 2665 | 2209 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/9yp9ftet/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @habiba_shoukry-yourfavhwhw's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/30vbu11w) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/30vbu11w/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/habiba_shoukry-yourfavhwhw') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/habiba_shoukry-yourfavhwhw/1629988046175/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/habiba_shoukry-yourfavhwhw
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI CYBORG & Habiba. @habiba\_shoukry-yourfavhwhw I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from & Habiba.. Data: Tweets downloaded, Habiba.: 3246 Data: Retweets, Habiba.: 57 Data: Short tweets, Habiba.: 524 Data: Tweets kept, Habiba.: 2665 Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @habiba\_shoukry-yourfavhwhw's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1400442064928600067/6UfU9DXL_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">your mum</div> <div style="text-align: center; font-size: 14px;">@haikalstr</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from your mum. | Data | your mum | | --- | --- | | Tweets downloaded | 3217 | | Retweets | 322 | | Short tweets | 243 | | Tweets kept | 2652 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/1fmae98u/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @haikalstr's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/2ki9x4z1) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/2ki9x4z1/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/haikalstr') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/haikalstr/1625152718916/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/haikalstr
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT your mum @haikalstr I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from your mum. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @haikalstr's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1371870867802710017/0Wlb-sBT_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">maggie 🤖 AI Bot </div> <div style="font-size: 15px">@hairchewer bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@hairchewer's tweets](https://twitter.com/hairchewer). | Data | Quantity | | --- | --- | | Tweets downloaded | 3223 | | Retweets | 258 | | Short tweets | 484 | | Tweets kept | 2481 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/3ar310nf/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hairchewer's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/2fojeuw3) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/2fojeuw3/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hairchewer') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hairchewer/1617766469015/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hairchewer
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
maggie AI Bot @hairchewer bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @hairchewer's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hairchewer's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1362498247009435650/D9bwHj-Z_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">eve 🤖 AI Bot </div> <div style="font-size: 15px">@halfeandhalfe bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://app.wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-model-to-generate-tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@halfeandhalfe's tweets](https://twitter.com/halfeandhalfe). | Data | Quantity | | --- | --- | | Tweets downloaded | 2064 | | Retweets | 722 | | Short tweets | 208 | | Tweets kept | 1134 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/31lw5fth/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @halfeandhalfe's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/217xjxpq) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/217xjxpq/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/halfeandhalfe') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/halfeandhalfe/1614109362630/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/halfeandhalfe
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
eve AI Bot @halfeandhalfe bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @halfeandhalfe's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @halfeandhalfe's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<link rel="stylesheet" href="https://unpkg.com/@tailwindcss/[email protected]/dist/typography.min.css"> <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/511999355520176129/yA6oDyuN_400x400.jpeg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Hamamatsu 🤖 AI Bot </div> <div style="font-size: 15px; color: #657786">@hamamatsuphoton bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://app.wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-model-to-generate-tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@hamamatsuphoton's tweets](https://twitter.com/hamamatsuphoton). <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>2536</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>249</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>10</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>2277</td> </tr> </tbody> </table> [Explore the data](https://app.wandb.ai/wandb/huggingtweets/runs/19r6sue9/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hamamatsuphoton's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://app.wandb.ai/wandb/huggingtweets/runs/1amhguu3) for full transparency and reproducibility. At the end of training, [the final model](https://app.wandb.ai/wandb/huggingtweets/runs/1amhguu3/artifacts) is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/hamamatsuphoton'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) <section class='prose'> For more details, visit the project repository. </section> [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets) <!--- random size file -->
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hamamatsuphoton/1602223986751/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hamamatsuphoton
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
<link rel="stylesheet" href="URL <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('URL </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Hamamatsu AI Bot </div> <div style="font-size: 15px; color: #657786">@hamamatsuphoton bot</div> </div> I was made with huggingtweets. Create your own bot based on your favorite user with the demo! ## How does it work? The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. ## Training data The model was trained on @hamamatsuphoton's tweets. <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>2536</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>249</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>10</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>2277</td> </tr> </tbody> </table> Explore the data, which is tracked with W&B artifacts at every step of the pipeline. ## Training procedure The model is based on a pre-trained GPT-2 which is fine-tuned on @hamamatsuphoton's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/hamamatsuphoton'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> ![Follow](URL <section class='prose'> For more details, visit the project repository. </section> ![GitHub stars](URL
[ "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @hamamatsuphoton's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>2536</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>249</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>10</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>2277</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @hamamatsuphoton's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/hamamatsuphoton'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @hamamatsuphoton's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>2536</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>249</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>10</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>2277</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @hamamatsuphoton's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/hamamatsuphoton'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ 57, 34, 432, 77, 9, 169, 48, 58 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report." ]
[ -0.04084593802690506, 0.035596683621406555, -0.0024457171093672514, 0.04662978649139404, 0.10991521924734116, 0.022836215794086456, 0.12812861800193787, 0.0424627922475338, -0.03746044635772705, -0.03597303107380867, 0.22758877277374268, 0.1009177565574646, 0.03089720755815506, 0.17962171137332916, 0.010350672528147697, -0.2703946828842163, 0.015237200073897839, 0.0647135004401207, -0.07720091193914413, 0.15752871334552765, 0.05562684312462807, -0.049801189452409744, 0.08214939385652542, 0.032038331031799316, -0.165513277053833, -0.004831716418266296, -0.02072383277118206, -0.04504403471946716, 0.09232694655656815, 0.06956911832094193, 0.07011176645755768, 0.034282486885786057, 0.017851393669843674, -0.0714372918009758, 0.06354191154241562, 0.014452377334237099, -0.02349161170423031, 0.13615116477012634, 0.028668763116002083, -0.0002947957837022841, 0.1798527091741562, 0.11815319955348969, 0.016722125932574272, 0.016196802258491516, -0.1166125237941742, -0.0606788769364357, 0.012365915812551975, 0.04470464214682579, 0.10005760192871094, 0.058856748044490814, 0.01943058706820011, 0.13215520977973938, -0.1164829432964325, 0.08512931317090988, 0.1828341782093048, -0.24191047251224518, -0.006823094096034765, 0.061043880879879, 0.08518847078084946, 0.02852868288755417, -0.0027500083670020103, 0.050437480211257935, 0.06484624743461609, 0.021347152069211006, 0.03636380657553673, -0.0638979896903038, 0.05009674280881882, 0.011186900548636913, -0.10215270519256592, -0.07660897821187973, 0.2294245809316635, -0.0602995827794075, 0.004886541981250048, -0.028186868876218796, -0.08490151911973953, -0.06026294082403183, -0.012795685790479183, -0.05738116800785065, -0.01700775697827339, 0.034475523978471756, 0.0214629378169775, -0.10922146588563919, -0.07046429812908173, -0.1146778091788292, -0.09578189998865128, 0.17879855632781982, -0.02900231070816517, 0.08940442651510239, -0.2603394091129303, 0.2254239320755005, 0.07019765675067902, -0.11909467726945877, 0.04757627099752426, -0.11814092099666595, 0.08530338853597641, 0.02207805961370468, 0.041434839367866516, 0.07761925458908081, 0.04161522537469864, 0.11940909177064896, 0.03257475048303604, -0.00314142694696784, 0.05456724017858505, 0.07224375009536743, 0.0941813513636589, 0.1230122447013855, -0.07287998497486115, -0.07873915135860443, 0.08034131675958633, -0.04709449037909508, -0.11787727475166321, -0.06861002743244171, -0.1452382206916809, -0.004202034790068865, -0.0335184708237648, 0.07922724634408951, 0.05637102574110031, 0.09526676684617996, -0.01433930266648531, -0.05777551606297493, 0.04157217592000961, -0.06985066086053848, 0.019995175302028656, -0.011708668433129787, -0.060763102024793625, 0.13121068477630615, 0.04688004031777382, -0.014275136403739452, -0.08673419058322906, 0.07951672375202179, -0.1204570084810257, -0.07978847622871399, -0.08239417523145676, -0.05098734796047211, -0.007686138618737459, -0.11281027644872665, 0.049203939735889435, -0.11458899080753326, -0.22705501317977905, -0.01313747651875019, 0.04550096020102501, -0.016462473198771477, -0.03707117214798927, -0.040630146861076355, -0.009473399259150028, 0.04880702868103981, -0.042894408106803894, 0.039052072912454605, -0.05325083062052727, 0.050018906593322754, -0.09618895500898361, 0.051321301609277725, -0.10470817238092422, 0.041251372545957565, -0.09671807289123535, 0.07595963031053543, 0.0017866486450657248, 0.0454767569899559, 0.010063555091619492, 0.08985432982444763, -0.03214199095964432, -0.044836416840553284, -0.07869677990674973, 0.026561295613646507, 0.02284199558198452, 0.20134314894676208, -0.10196486860513687, -0.0819794163107872, 0.12614667415618896, -0.07252102345228195, -0.1288122832775116, 0.0409054271876812, -0.02831157296895981, 0.17958028614521027, 0.07370224595069885, 0.16096454858779907, 0.12039237469434738, -0.03798284754157066, 0.1263856589794159, 0.14821170270442963, -0.1269366294145584, -0.004153167363256216, 0.039416827261447906, 0.014042570255696774, -0.20559121668338776, 0.04052022844552994, -0.01946125738322735, 0.06584736704826355, -0.10201486945152283, -0.00946728140115738, 0.0031527038663625717, -0.02320384420454502, 0.0023026331327855587, -0.0472555048763752, 0.061078161001205444, 0.038737643510103226, -0.022763127461075783, 0.029682613909244537, 0.06635552644729614, -0.026160234585404396, -0.00823320634663105, -0.04484035447239876, 0.10009831935167313, -0.07260703295469284, 0.06797321885824203, -0.13160665333271027, -0.003086181590333581, -0.012450510635972023, 0.0972909927368164, 0.03811546042561531, 0.10621625185012817, 0.05470104143023491, 0.03126294165849686, 0.07701993733644485, -0.02846951223909855, 0.0746634304523468, 0.01002051867544651, -0.0850096121430397, -0.1272277683019638, 0.015217535197734833, -0.10649837553501129, -0.004191380459815264, -0.08523700386285782, -0.0015737697249278426, -0.12802091240882874, 0.05826076865196228, -0.016465239226818085, 0.0539434514939785, -0.055182818323373795, -0.04337453469634056, -0.044662054628133774, -0.022007398307323456, 0.0482511967420578, -0.033139705657958984, -0.06687536835670471, 0.16832175850868225, -0.15395553410053253, 0.2592274248600006, 0.1313537061214447, -0.0889907032251358, 0.002020547864958644, -0.07812081277370453, -0.04194976016879082, -0.012868959456682205, 0.07527336478233337, -0.03700125962495804, 0.15495356917381287, -0.03386903926730156, 0.17382068932056427, -0.099679134786129, -0.0334031768143177, 0.02144831046462059, -0.10981054604053497, 0.057656705379486084, 0.08051177859306335, 0.04427298903465271, -0.159133642911911, 0.08837400376796722, 0.19756358861923218, 0.05472150072455406, 0.20321963727474213, -0.006869805511087179, -0.06112205237150192, -0.05358194187283516, -0.0808696523308754, -0.052568696439266205, 0.056259434670209885, -0.09903126955032349, -0.004000484477728605, 0.06423190236091614, 0.08783505111932755, 0.11237549781799316, -0.10904275625944138, -0.046180129051208496, 0.05125856027007103, -0.004819708876311779, -0.051060013473033905, 0.07006146013736725, -0.0659489631652832, 0.13217470049858093, 0.014598124660551548, -0.07049204409122467, 0.0036125897895544767, -0.004913401324301958, -0.11891388893127441, 0.20653130114078522, -0.08047540485858917, -0.27306002378463745, -0.16792123019695282, -0.16288253664970398, 0.07165426760911942, 0.038431257009506226, 0.033738572150468826, -0.08776884526014328, -0.020982403308153152, 0.004409478977322578, 0.11553267389535904, -0.09698133170604706, 0.013121976517140865, 0.008159824647009373, -0.018650712445378304, -0.07579360157251358, -0.09033482521772385, -0.0241270512342453, -0.02461584471166134, 0.020020704716444016, 0.03998296707868576, -0.11154978722333908, 0.06758414953947067, 0.2167699933052063, -0.015538511797785759, 0.06870997697114944, 0.00025148785789497197, 0.26176807284355164, -0.08426473289728165, 0.040830448269844055, 0.11926601082086563, -0.08760137856006622, 0.05199241638183594, 0.07132956385612488, 0.03210015222430229, -0.014074578881263733, 0.016441889107227325, -0.11233895272016525, -0.12864868342876434, -0.1923626959323883, -0.06961654871702194, -0.028241310268640518, 0.13464264571666718, 0.031150488182902336, 0.04321796074509621, 0.10346641391515732, 0.07471037656068802, 0.06701335310935974, 0.03259968012571335, -0.0005120337591506541, 0.0647427961230278, 0.024594781920313835, -0.05812343955039978, 0.054217349737882614, -0.04845457896590233, -0.0797470211982727, 0.08279551565647125, -0.011098933406174183, 0.0927528515458107, 0.06928195804357529, 0.02340286411345005, 0.018686039373278618, 0.04218229651451111, 0.15593960881233215, 0.22442668676376343, -0.012412761338055134, -0.041085485368967056, -0.05078154057264328, -0.040494389832019806, -0.01600850187242031, 0.015044075436890125, -0.05785144492983818, -0.033252447843551636, -0.0728597640991211, -0.015066487714648247, 0.011195010505616665, 0.015441779047250748, 0.07578693330287933, -0.22024130821228027, -0.038240667432546616, 0.042616840451955795, -0.013794191181659698, -0.10639895498752594, 0.05872863903641701, 0.016779562458395958, -0.17391349375247955, -0.07854076474905014, -0.016605399549007416, 0.1603294163942337, -0.030760308727622032, 0.0619782954454422, 0.005449770484119654, 0.02271227352321148, -0.013140208087861538, 0.11191333085298538, -0.27346712350845337, 0.1954270750284195, 0.001131516881287098, -0.04876048117876053, -0.016439033672213554, -0.04243995249271393, 0.0009058643481694162, 0.14556926488876343, 0.09718295931816101, 0.0028763783629983664, 0.0669604167342186, -0.07678256928920746, -0.11943262070417404, 0.05284353718161583, 0.08068333566188812, -0.07738065719604492, 0.029960619285702705, -0.029798466712236404, 0.027152907103300095, -0.007555682212114334, -0.030231619253754616, 0.002119861776009202, -0.11661309748888016, 0.02936525270342827, -0.08075195550918579, 0.06012337654829025, 0.02433968149125576, -0.02529163844883442, -0.012048180215060711, 0.1316436529159546, -0.013300766237080097, -0.08264251798391342, -0.08976204693317413, -0.02328740619122982, 0.09523095935583115, -0.05599937587976456, 0.03358715400099754, -0.08175740391016006, -0.04073614999651909, 0.005860272329300642, -0.16970814764499664, 0.06983034312725067, -0.10846570879220963, -0.09971687942743301, -0.050264790654182434, 0.15346404910087585, 0.013677009381353855, 0.025709833949804306, 0.03220117464661598, -0.04211581498384476, -0.18150363862514496, -0.15989434719085693, -0.007562890648841858, 0.0717545747756958, -0.04433317109942436, 0.03638565540313721, 0.007171243894845247, 0.10013602674007416, 0.004198792390525341, 0.07230839878320694, 0.2026015669107437, 0.16423118114471436, -0.08760133385658264, 0.17723721265792847, 0.16266676783561707, -0.12243213504552841, -0.2722402811050415, -0.09522651135921478, -0.05925937369465828, 0.03468820080161095, 0.02297091670334339, -0.13072867691516876, 0.06184706464409828, -0.011241482570767403, -0.004976592492312193, 0.13391432166099548, -0.2790721356868744, -0.07025358080863953, 0.13864430785179138, -0.012145180255174637, 0.2560276985168457, -0.042459286749362946, -0.08155408501625061, -0.060940731316804886, -0.2339130938053131, 0.1595010906457901, -0.12908293306827545, 0.030256805941462517, -0.06380902975797653, 0.1317017376422882, 0.04475972056388855, -0.051817599684000015, 0.13714583218097687, -0.0770399421453476, 0.03692200407385826, -0.1231972947716713, -0.01437266543507576, 0.05212629213929176, -0.014681367203593254, 0.10554680228233337, -0.053141020238399506, 0.10400939732789993, -0.12106935679912567, -0.052672889083623886, -0.054288461804389954, 0.017598338425159454, -0.023758167400956154, -0.05668776109814644, -0.039483629167079926, -0.05230721831321716, 0.00942184031009674, -0.024894973263144493, -0.008981208316981792, -0.02189256064593792, 0.08200293034315109, 0.10853444039821625, 0.1416669338941574, -0.04508063197135925, -0.02666328102350235, -0.029412275180220604, -0.043095141649246216, 0.07755832374095917, -0.1675589680671692, -0.020979177206754684, 0.15767353773117065, 0.008264025673270226, 0.08081416040658951, 0.07994852215051651, -0.043529048562049866, -0.04116993397474289, 0.09435915946960449, -0.23738352954387665, -0.032961416989564896, -0.07289689034223557, -0.032304681837558746, 0.05143286660313606, 0.06389017403125763, 0.11233682930469513, -0.055076416581869125, -0.015500548295676708, 0.038369257003068924, -0.013473432511091232, -0.10457789897918701, 0.12659704685211182, 0.07594829052686691, 0.04931824654340744, -0.13000807166099548, 0.03979043290019035, -0.02080575004220009, -0.024042857810854912, -0.009190280921757221, 0.09610513597726822, -0.13868926465511322, -0.061987441033124924, 0.01100219041109085, 0.1624082624912262, -0.08940329402685165, -0.054934311658144, -0.00678250240162015, -0.07782098650932312, 0.06215988099575043, 0.06269455701112747, 0.039047662168741226, 0.10006190836429596, -0.08492296934127808, -0.004345493856817484, -0.04427671059966087, 0.02742549031972885, 0.04004936292767525, -0.01839151792228222, -0.11644710600376129, 0.050648268312215805, 0.01261399406939745, 0.21786263585090637, -0.12195943295955658, -0.07748695462942123, -0.13975368440151215, 0.03579137846827507, -0.1441981941461563, -0.02782432734966278, -0.09455464035272598, -0.0542730838060379, -0.024786408990621567, -0.02354593575000763, -0.05044161155819893, -0.03595460206270218, -0.06568260490894318, 0.04963921010494232, -0.01889806240797043, -0.04201965406537056, -0.018809955567121506, 0.04780932888388634, 0.10624072700738907, -0.0022816911805421114, 0.11582330614328384, 0.10476028919219971, -0.06149300932884216, 0.06964143365621567, -0.08975338935852051, 0.049342647194862366, 0.010800108313560486, -0.03639211133122444, 0.07890737056732178, 0.033158838748931885, 0.011678727343678474, -0.02014644630253315, -0.05248590186238289, 0.015699470415711403, 0.019494805485010147, -0.09001129865646362, 0.04338252544403076, 0.03427375108003616, -0.07128193974494934, -0.06945458799600601, -0.02831537090241909, -0.04915383830666542, 0.10966338962316513, 0.09227382391691208, 0.01580313965678215, 0.11524862796068192, -0.09982031583786011, -0.0043287696316838264, 0.0288130734115839, -0.08074736595153809, -0.01706261746585369, -0.10044533759355545, -0.01304725930094719, -0.02274717018008232, 0.2554529011249542, 0.12089171260595322, -0.025309232994914055, -0.03230812028050423, 0.07114472985267639, 0.08105676621198654, -0.0211230106651783, 0.14824873208999634, 0.03444083034992218, -0.0007331980159506202, -0.1400776505470276, 0.10673409700393677, -0.060156434774398804, -0.010151425376534462, 0.09550673514604568, -0.08319920301437378, 0.048856139183044434, 0.07468824833631516, -0.01950058713555336, 0.05372466519474983, -0.11716536432504654, -0.2690386474132538, 0.023945249617099762, 0.027653370052576065, -0.0441947840154171, 0.07253700494766235, 0.145015150308609, 0.00042942073196172714, 0.05244648456573486, 0.061493102461099625, -0.05709811672568321, -0.17804701626300812, -0.19115881621837616, -0.0384756401181221, -0.11082857847213745, -0.023826930671930313, -0.10639674216508865, 0.04148538038134575, -0.02072913944721222, 0.05925795063376427, -0.09639845043420792, 0.12447383254766464, 0.06843417137861252, -0.11577396094799042, 0.05810433253645897, -0.008805959485471249, 0.048459235578775406, -0.07387776672840118, 0.08210063725709915, -0.10721065104007721, -0.026499031111598015, -0.016933415085077286, 0.03711435943841934, -0.05858420953154564, 0.0011270071845501661, -0.10357651859521866, -0.06808403134346008, -0.056935109198093414, 0.09072309732437134, -0.024477418512105942, 0.03998230770230293, -0.014557241462171078, -0.061277762055397034, -0.025446701794862747, 0.2273169606924057, -0.018587565049529076, -0.043939489871263504, -0.0661960318684578, 0.2851298749446869, -0.06544138491153717, 0.07253559678792953, -0.032977886497974396, -0.001274158013984561, -0.07127615064382553, 0.2931469976902008, 0.36314713954925537, -0.14264726638793945, 0.011796033009886742, -0.018389053642749786, 0.03556118905544281, 0.07535336911678314, 0.18024654686450958, 0.07291083037853241, 0.3107033371925354, -0.04080776497721672, -0.01225926261395216, -0.10546047985553741, -0.03835856914520264, 0.014304363168776035, 0.02947218343615532, 0.08378855139017105, -0.05586446449160576, -0.06808875501155853, 0.1039084792137146, -0.26703301072120667, -0.02056516334414482, -0.16380304098129272, -0.061613935977220535, -0.04166705906391144, 0.0007227687747217715, 0.07237391918897629, 0.028740311041474342, 0.05115301162004471, -0.039005450904369354, -0.047156207263469696, 0.057444483041763306, -0.02154913917183876, -0.12674635648727417, 0.0002557095722295344, 0.143532857298851, -0.07906237244606018, -0.0018181405030190945, 0.0032308290246874094, 0.060348983854055405, 0.044118594378232956, 0.04119637981057167, -0.10164451599121094, 0.02608482725918293, 0.01246592216193676, -0.03363148868083954, -0.028164468705654144, 0.008156497962772846, 0.07835527509450912, -0.21697945892810822, 0.0020338469184935093, -0.14078554511070251, 0.011757226660847664, -0.07641053944826126, -0.006896127946674824, -0.08222074061632156, 0.03242125362157822, 0.004625517874956131, 0.1118803396821022, 0.11125602573156357, -0.03202005848288536, -0.0006144302315078676, -0.06265610456466675, 0.06727221608161926, -0.06884542852640152, -0.02960195019841194, -0.025150567293167114, -0.09257599711418152, -0.09335606545209885, 0.09815482050180435, -0.022339481860399246, -0.1427105814218521, 0.007601875811815262, -0.09401176869869232, -0.04369132220745087, -0.021486658602952957, 0.09382037818431854, 0.11086808145046234, 0.09180203825235367, -0.007599277421832085, 0.047748953104019165, 0.03120456263422966, 0.07436691224575043, -0.12886843085289001, -0.10148585587739944 ]
null
null
transformers
<link rel="stylesheet" href="https://unpkg.com/@tailwindcss/[email protected]/dist/typography.min.css"> <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('http://pbs.twimg.com/profile_images/1287206199088173057/ixE4fKy1_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Hamel Husain 🤖 AI Bot </div> <div style="font-size: 15px; color: #657786">@hamelhusain bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://app.wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-model-to-generate-tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@hamelhusain's tweets](https://twitter.com/hamelhusain). <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>2190</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>710</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>128</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>1352</td> </tr> </tbody> </table> [Explore the data](https://app.wandb.ai/wandb/huggingtweets/runs/3rxq8bbn/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hamelhusain's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://app.wandb.ai/wandb/huggingtweets/runs/3d0vtk8b) for full transparency and reproducibility. At the end of training, [the final model](https://app.wandb.ai/wandb/huggingtweets/runs/3d0vtk8b/artifacts) is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/hamelhusain'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/borisdayma) <section class='prose'> For more details, visit the project repository. </section> [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://github.com/borisdayma/huggingtweets/blob/master/img/logo_share.png?raw=true", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hamelhusain
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
<link rel="stylesheet" href="URL <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('URL </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Hamel Husain AI Bot </div> <div style="font-size: 15px; color: #657786">@hamelhusain bot</div> </div> I was made with huggingtweets. Create your own bot based on your favorite user with the demo! ## How does it work? The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. ## Training data The model was trained on @hamelhusain's tweets. <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>2190</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>710</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>128</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>1352</td> </tr> </tbody> </table> Explore the data, which is tracked with W&B artifacts at every step of the pipeline. ## Training procedure The model is based on a pre-trained GPT-2 which is fine-tuned on @hamelhusain's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/hamelhusain'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> ![Follow](URL <section class='prose'> For more details, visit the project repository. </section> ![GitHub stars](URL
[ "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @hamelhusain's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>2190</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>710</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>128</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>1352</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @hamelhusain's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/hamelhusain'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @hamelhusain's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>2190</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>710</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>128</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>1352</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @hamelhusain's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/hamelhusain'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ 57, 34, 431, 76, 9, 168, 48, 58 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report." ]
[ -0.04084593802690506, 0.035596683621406555, -0.0024457171093672514, 0.04662978649139404, 0.10991521924734116, 0.022836215794086456, 0.12812861800193787, 0.0424627922475338, -0.03746044635772705, -0.03597303107380867, 0.22758877277374268, 0.1009177565574646, 0.03089720755815506, 0.17962171137332916, 0.010350672528147697, -0.2703946828842163, 0.015237200073897839, 0.0647135004401207, -0.07720091193914413, 0.15752871334552765, 0.05562684312462807, -0.049801189452409744, 0.08214939385652542, 0.032038331031799316, -0.165513277053833, -0.004831716418266296, -0.02072383277118206, -0.04504403471946716, 0.09232694655656815, 0.06956911832094193, 0.07011176645755768, 0.034282486885786057, 0.017851393669843674, -0.0714372918009758, 0.06354191154241562, 0.014452377334237099, -0.02349161170423031, 0.13615116477012634, 0.028668763116002083, -0.0002947957837022841, 0.1798527091741562, 0.11815319955348969, 0.016722125932574272, 0.016196802258491516, -0.1166125237941742, -0.0606788769364357, 0.012365915812551975, 0.04470464214682579, 0.10005760192871094, 0.058856748044490814, 0.01943058706820011, 0.13215520977973938, -0.1164829432964325, 0.08512931317090988, 0.1828341782093048, -0.24191047251224518, -0.006823094096034765, 0.061043880879879, 0.08518847078084946, 0.02852868288755417, -0.0027500083670020103, 0.050437480211257935, 0.06484624743461609, 0.021347152069211006, 0.03636380657553673, -0.0638979896903038, 0.05009674280881882, 0.011186900548636913, -0.10215270519256592, -0.07660897821187973, 0.2294245809316635, -0.0602995827794075, 0.004886541981250048, -0.028186868876218796, -0.08490151911973953, -0.06026294082403183, -0.012795685790479183, -0.05738116800785065, -0.01700775697827339, 0.034475523978471756, 0.0214629378169775, -0.10922146588563919, -0.07046429812908173, -0.1146778091788292, -0.09578189998865128, 0.17879855632781982, -0.02900231070816517, 0.08940442651510239, -0.2603394091129303, 0.2254239320755005, 0.07019765675067902, -0.11909467726945877, 0.04757627099752426, -0.11814092099666595, 0.08530338853597641, 0.02207805961370468, 0.041434839367866516, 0.07761925458908081, 0.04161522537469864, 0.11940909177064896, 0.03257475048303604, -0.00314142694696784, 0.05456724017858505, 0.07224375009536743, 0.0941813513636589, 0.1230122447013855, -0.07287998497486115, -0.07873915135860443, 0.08034131675958633, -0.04709449037909508, -0.11787727475166321, -0.06861002743244171, -0.1452382206916809, -0.004202034790068865, -0.0335184708237648, 0.07922724634408951, 0.05637102574110031, 0.09526676684617996, -0.01433930266648531, -0.05777551606297493, 0.04157217592000961, -0.06985066086053848, 0.019995175302028656, -0.011708668433129787, -0.060763102024793625, 0.13121068477630615, 0.04688004031777382, -0.014275136403739452, -0.08673419058322906, 0.07951672375202179, -0.1204570084810257, -0.07978847622871399, -0.08239417523145676, -0.05098734796047211, -0.007686138618737459, -0.11281027644872665, 0.049203939735889435, -0.11458899080753326, -0.22705501317977905, -0.01313747651875019, 0.04550096020102501, -0.016462473198771477, -0.03707117214798927, -0.040630146861076355, -0.009473399259150028, 0.04880702868103981, -0.042894408106803894, 0.039052072912454605, -0.05325083062052727, 0.050018906593322754, -0.09618895500898361, 0.051321301609277725, -0.10470817238092422, 0.041251372545957565, -0.09671807289123535, 0.07595963031053543, 0.0017866486450657248, 0.0454767569899559, 0.010063555091619492, 0.08985432982444763, -0.03214199095964432, -0.044836416840553284, -0.07869677990674973, 0.026561295613646507, 0.02284199558198452, 0.20134314894676208, -0.10196486860513687, -0.0819794163107872, 0.12614667415618896, -0.07252102345228195, -0.1288122832775116, 0.0409054271876812, -0.02831157296895981, 0.17958028614521027, 0.07370224595069885, 0.16096454858779907, 0.12039237469434738, -0.03798284754157066, 0.1263856589794159, 0.14821170270442963, -0.1269366294145584, -0.004153167363256216, 0.039416827261447906, 0.014042570255696774, -0.20559121668338776, 0.04052022844552994, -0.01946125738322735, 0.06584736704826355, -0.10201486945152283, -0.00946728140115738, 0.0031527038663625717, -0.02320384420454502, 0.0023026331327855587, -0.0472555048763752, 0.061078161001205444, 0.038737643510103226, -0.022763127461075783, 0.029682613909244537, 0.06635552644729614, -0.026160234585404396, -0.00823320634663105, -0.04484035447239876, 0.10009831935167313, -0.07260703295469284, 0.06797321885824203, -0.13160665333271027, -0.003086181590333581, -0.012450510635972023, 0.0972909927368164, 0.03811546042561531, 0.10621625185012817, 0.05470104143023491, 0.03126294165849686, 0.07701993733644485, -0.02846951223909855, 0.0746634304523468, 0.01002051867544651, -0.0850096121430397, -0.1272277683019638, 0.015217535197734833, -0.10649837553501129, -0.004191380459815264, -0.08523700386285782, -0.0015737697249278426, -0.12802091240882874, 0.05826076865196228, -0.016465239226818085, 0.0539434514939785, -0.055182818323373795, -0.04337453469634056, -0.044662054628133774, -0.022007398307323456, 0.0482511967420578, -0.033139705657958984, -0.06687536835670471, 0.16832175850868225, -0.15395553410053253, 0.2592274248600006, 0.1313537061214447, -0.0889907032251358, 0.002020547864958644, -0.07812081277370453, -0.04194976016879082, -0.012868959456682205, 0.07527336478233337, -0.03700125962495804, 0.15495356917381287, -0.03386903926730156, 0.17382068932056427, -0.099679134786129, -0.0334031768143177, 0.02144831046462059, -0.10981054604053497, 0.057656705379486084, 0.08051177859306335, 0.04427298903465271, -0.159133642911911, 0.08837400376796722, 0.19756358861923218, 0.05472150072455406, 0.20321963727474213, -0.006869805511087179, -0.06112205237150192, -0.05358194187283516, -0.0808696523308754, -0.052568696439266205, 0.056259434670209885, -0.09903126955032349, -0.004000484477728605, 0.06423190236091614, 0.08783505111932755, 0.11237549781799316, -0.10904275625944138, -0.046180129051208496, 0.05125856027007103, -0.004819708876311779, -0.051060013473033905, 0.07006146013736725, -0.0659489631652832, 0.13217470049858093, 0.014598124660551548, -0.07049204409122467, 0.0036125897895544767, -0.004913401324301958, -0.11891388893127441, 0.20653130114078522, -0.08047540485858917, -0.27306002378463745, -0.16792123019695282, -0.16288253664970398, 0.07165426760911942, 0.038431257009506226, 0.033738572150468826, -0.08776884526014328, -0.020982403308153152, 0.004409478977322578, 0.11553267389535904, -0.09698133170604706, 0.013121976517140865, 0.008159824647009373, -0.018650712445378304, -0.07579360157251358, -0.09033482521772385, -0.0241270512342453, -0.02461584471166134, 0.020020704716444016, 0.03998296707868576, -0.11154978722333908, 0.06758414953947067, 0.2167699933052063, -0.015538511797785759, 0.06870997697114944, 0.00025148785789497197, 0.26176807284355164, -0.08426473289728165, 0.040830448269844055, 0.11926601082086563, -0.08760137856006622, 0.05199241638183594, 0.07132956385612488, 0.03210015222430229, -0.014074578881263733, 0.016441889107227325, -0.11233895272016525, -0.12864868342876434, -0.1923626959323883, -0.06961654871702194, -0.028241310268640518, 0.13464264571666718, 0.031150488182902336, 0.04321796074509621, 0.10346641391515732, 0.07471037656068802, 0.06701335310935974, 0.03259968012571335, -0.0005120337591506541, 0.0647427961230278, 0.024594781920313835, -0.05812343955039978, 0.054217349737882614, -0.04845457896590233, -0.0797470211982727, 0.08279551565647125, -0.011098933406174183, 0.0927528515458107, 0.06928195804357529, 0.02340286411345005, 0.018686039373278618, 0.04218229651451111, 0.15593960881233215, 0.22442668676376343, -0.012412761338055134, -0.041085485368967056, -0.05078154057264328, -0.040494389832019806, -0.01600850187242031, 0.015044075436890125, -0.05785144492983818, -0.033252447843551636, -0.0728597640991211, -0.015066487714648247, 0.011195010505616665, 0.015441779047250748, 0.07578693330287933, -0.22024130821228027, -0.038240667432546616, 0.042616840451955795, -0.013794191181659698, -0.10639895498752594, 0.05872863903641701, 0.016779562458395958, -0.17391349375247955, -0.07854076474905014, -0.016605399549007416, 0.1603294163942337, -0.030760308727622032, 0.0619782954454422, 0.005449770484119654, 0.02271227352321148, -0.013140208087861538, 0.11191333085298538, -0.27346712350845337, 0.1954270750284195, 0.001131516881287098, -0.04876048117876053, -0.016439033672213554, -0.04243995249271393, 0.0009058643481694162, 0.14556926488876343, 0.09718295931816101, 0.0028763783629983664, 0.0669604167342186, -0.07678256928920746, -0.11943262070417404, 0.05284353718161583, 0.08068333566188812, -0.07738065719604492, 0.029960619285702705, -0.029798466712236404, 0.027152907103300095, -0.007555682212114334, -0.030231619253754616, 0.002119861776009202, -0.11661309748888016, 0.02936525270342827, -0.08075195550918579, 0.06012337654829025, 0.02433968149125576, -0.02529163844883442, -0.012048180215060711, 0.1316436529159546, -0.013300766237080097, -0.08264251798391342, -0.08976204693317413, -0.02328740619122982, 0.09523095935583115, -0.05599937587976456, 0.03358715400099754, -0.08175740391016006, -0.04073614999651909, 0.005860272329300642, -0.16970814764499664, 0.06983034312725067, -0.10846570879220963, -0.09971687942743301, -0.050264790654182434, 0.15346404910087585, 0.013677009381353855, 0.025709833949804306, 0.03220117464661598, -0.04211581498384476, -0.18150363862514496, -0.15989434719085693, -0.007562890648841858, 0.0717545747756958, -0.04433317109942436, 0.03638565540313721, 0.007171243894845247, 0.10013602674007416, 0.004198792390525341, 0.07230839878320694, 0.2026015669107437, 0.16423118114471436, -0.08760133385658264, 0.17723721265792847, 0.16266676783561707, -0.12243213504552841, -0.2722402811050415, -0.09522651135921478, -0.05925937369465828, 0.03468820080161095, 0.02297091670334339, -0.13072867691516876, 0.06184706464409828, -0.011241482570767403, -0.004976592492312193, 0.13391432166099548, -0.2790721356868744, -0.07025358080863953, 0.13864430785179138, -0.012145180255174637, 0.2560276985168457, -0.042459286749362946, -0.08155408501625061, -0.060940731316804886, -0.2339130938053131, 0.1595010906457901, -0.12908293306827545, 0.030256805941462517, -0.06380902975797653, 0.1317017376422882, 0.04475972056388855, -0.051817599684000015, 0.13714583218097687, -0.0770399421453476, 0.03692200407385826, -0.1231972947716713, -0.01437266543507576, 0.05212629213929176, -0.014681367203593254, 0.10554680228233337, -0.053141020238399506, 0.10400939732789993, -0.12106935679912567, -0.052672889083623886, -0.054288461804389954, 0.017598338425159454, -0.023758167400956154, -0.05668776109814644, -0.039483629167079926, -0.05230721831321716, 0.00942184031009674, -0.024894973263144493, -0.008981208316981792, -0.02189256064593792, 0.08200293034315109, 0.10853444039821625, 0.1416669338941574, -0.04508063197135925, -0.02666328102350235, -0.029412275180220604, -0.043095141649246216, 0.07755832374095917, -0.1675589680671692, -0.020979177206754684, 0.15767353773117065, 0.008264025673270226, 0.08081416040658951, 0.07994852215051651, -0.043529048562049866, -0.04116993397474289, 0.09435915946960449, -0.23738352954387665, -0.032961416989564896, -0.07289689034223557, -0.032304681837558746, 0.05143286660313606, 0.06389017403125763, 0.11233682930469513, -0.055076416581869125, -0.015500548295676708, 0.038369257003068924, -0.013473432511091232, -0.10457789897918701, 0.12659704685211182, 0.07594829052686691, 0.04931824654340744, -0.13000807166099548, 0.03979043290019035, -0.02080575004220009, -0.024042857810854912, -0.009190280921757221, 0.09610513597726822, -0.13868926465511322, -0.061987441033124924, 0.01100219041109085, 0.1624082624912262, -0.08940329402685165, -0.054934311658144, -0.00678250240162015, -0.07782098650932312, 0.06215988099575043, 0.06269455701112747, 0.039047662168741226, 0.10006190836429596, -0.08492296934127808, -0.004345493856817484, -0.04427671059966087, 0.02742549031972885, 0.04004936292767525, -0.01839151792228222, -0.11644710600376129, 0.050648268312215805, 0.01261399406939745, 0.21786263585090637, -0.12195943295955658, -0.07748695462942123, -0.13975368440151215, 0.03579137846827507, -0.1441981941461563, -0.02782432734966278, -0.09455464035272598, -0.0542730838060379, -0.024786408990621567, -0.02354593575000763, -0.05044161155819893, -0.03595460206270218, -0.06568260490894318, 0.04963921010494232, -0.01889806240797043, -0.04201965406537056, -0.018809955567121506, 0.04780932888388634, 0.10624072700738907, -0.0022816911805421114, 0.11582330614328384, 0.10476028919219971, -0.06149300932884216, 0.06964143365621567, -0.08975338935852051, 0.049342647194862366, 0.010800108313560486, -0.03639211133122444, 0.07890737056732178, 0.033158838748931885, 0.011678727343678474, -0.02014644630253315, -0.05248590186238289, 0.015699470415711403, 0.019494805485010147, -0.09001129865646362, 0.04338252544403076, 0.03427375108003616, -0.07128193974494934, -0.06945458799600601, -0.02831537090241909, -0.04915383830666542, 0.10966338962316513, 0.09227382391691208, 0.01580313965678215, 0.11524862796068192, -0.09982031583786011, -0.0043287696316838264, 0.0288130734115839, -0.08074736595153809, -0.01706261746585369, -0.10044533759355545, -0.01304725930094719, -0.02274717018008232, 0.2554529011249542, 0.12089171260595322, -0.025309232994914055, -0.03230812028050423, 0.07114472985267639, 0.08105676621198654, -0.0211230106651783, 0.14824873208999634, 0.03444083034992218, -0.0007331980159506202, -0.1400776505470276, 0.10673409700393677, -0.060156434774398804, -0.010151425376534462, 0.09550673514604568, -0.08319920301437378, 0.048856139183044434, 0.07468824833631516, -0.01950058713555336, 0.05372466519474983, -0.11716536432504654, -0.2690386474132538, 0.023945249617099762, 0.027653370052576065, -0.0441947840154171, 0.07253700494766235, 0.145015150308609, 0.00042942073196172714, 0.05244648456573486, 0.061493102461099625, -0.05709811672568321, -0.17804701626300812, -0.19115881621837616, -0.0384756401181221, -0.11082857847213745, -0.023826930671930313, -0.10639674216508865, 0.04148538038134575, -0.02072913944721222, 0.05925795063376427, -0.09639845043420792, 0.12447383254766464, 0.06843417137861252, -0.11577396094799042, 0.05810433253645897, -0.008805959485471249, 0.048459235578775406, -0.07387776672840118, 0.08210063725709915, -0.10721065104007721, -0.026499031111598015, -0.016933415085077286, 0.03711435943841934, -0.05858420953154564, 0.0011270071845501661, -0.10357651859521866, -0.06808403134346008, -0.056935109198093414, 0.09072309732437134, -0.024477418512105942, 0.03998230770230293, -0.014557241462171078, -0.061277762055397034, -0.025446701794862747, 0.2273169606924057, -0.018587565049529076, -0.043939489871263504, -0.0661960318684578, 0.2851298749446869, -0.06544138491153717, 0.07253559678792953, -0.032977886497974396, -0.001274158013984561, -0.07127615064382553, 0.2931469976902008, 0.36314713954925537, -0.14264726638793945, 0.011796033009886742, -0.018389053642749786, 0.03556118905544281, 0.07535336911678314, 0.18024654686450958, 0.07291083037853241, 0.3107033371925354, -0.04080776497721672, -0.01225926261395216, -0.10546047985553741, -0.03835856914520264, 0.014304363168776035, 0.02947218343615532, 0.08378855139017105, -0.05586446449160576, -0.06808875501155853, 0.1039084792137146, -0.26703301072120667, -0.02056516334414482, -0.16380304098129272, -0.061613935977220535, -0.04166705906391144, 0.0007227687747217715, 0.07237391918897629, 0.028740311041474342, 0.05115301162004471, -0.039005450904369354, -0.047156207263469696, 0.057444483041763306, -0.02154913917183876, -0.12674635648727417, 0.0002557095722295344, 0.143532857298851, -0.07906237244606018, -0.0018181405030190945, 0.0032308290246874094, 0.060348983854055405, 0.044118594378232956, 0.04119637981057167, -0.10164451599121094, 0.02608482725918293, 0.01246592216193676, -0.03363148868083954, -0.028164468705654144, 0.008156497962772846, 0.07835527509450912, -0.21697945892810822, 0.0020338469184935093, -0.14078554511070251, 0.011757226660847664, -0.07641053944826126, -0.006896127946674824, -0.08222074061632156, 0.03242125362157822, 0.004625517874956131, 0.1118803396821022, 0.11125602573156357, -0.03202005848288536, -0.0006144302315078676, -0.06265610456466675, 0.06727221608161926, -0.06884542852640152, -0.02960195019841194, -0.025150567293167114, -0.09257599711418152, -0.09335606545209885, 0.09815482050180435, -0.022339481860399246, -0.1427105814218521, 0.007601875811815262, -0.09401176869869232, -0.04369132220745087, -0.021486658602952957, 0.09382037818431854, 0.11086808145046234, 0.09180203825235367, -0.007599277421832085, 0.047748953104019165, 0.03120456263422966, 0.07436691224575043, -0.12886843085289001, -0.10148585587739944 ]
null
null
transformers
<link rel="stylesheet" href="https://unpkg.com/@tailwindcss/[email protected]/dist/typography.min.css"> <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1304268352030900226/VGi7Ymii_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Hamlet Batista 🤖 AI Bot </div> <div style="font-size: 15px; color: #657786">@hamletbatista bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://app.wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-model-to-generate-tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@hamletbatista's tweets](https://twitter.com/hamletbatista). <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>3222</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>1431</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>620</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>1171</td> </tr> </tbody> </table> [Explore the data](https://app.wandb.ai/wandb/huggingtweets/runs/3t0swbn3/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hamletbatista's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://app.wandb.ai/wandb/huggingtweets/runs/ypcx69ns) for full transparency and reproducibility. At the end of training, [the final model](https://app.wandb.ai/wandb/huggingtweets/runs/ypcx69ns/artifacts) is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/hamletbatista'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) <section class='prose'> For more details, visit the project repository. </section> [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets) <!--- random size file -->
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hamletbatista/1600859203128/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hamletbatista
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
<link rel="stylesheet" href="URL <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('URL </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Hamlet Batista AI Bot </div> <div style="font-size: 15px; color: #657786">@hamletbatista bot</div> </div> I was made with huggingtweets. Create your own bot based on your favorite user with the demo! ## How does it work? The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. ## Training data The model was trained on @hamletbatista's tweets. <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>3222</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>1431</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>620</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>1171</td> </tr> </tbody> </table> Explore the data, which is tracked with W&B artifacts at every step of the pipeline. ## Training procedure The model is based on a pre-trained GPT-2 which is fine-tuned on @hamletbatista's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/hamletbatista'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> ![Follow](URL <section class='prose'> For more details, visit the project repository. </section> ![GitHub stars](URL
[ "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @hamletbatista's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>3222</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>1431</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>620</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>1171</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @hamletbatista's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/hamletbatista'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @hamletbatista's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>3222</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>1431</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>620</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>1171</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @hamletbatista's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/hamletbatista'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ 57, 34, 432, 76, 9, 168, 48, 58 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report." ]
[ -0.04084593802690506, 0.035596683621406555, -0.0024457171093672514, 0.04662978649139404, 0.10991521924734116, 0.022836215794086456, 0.12812861800193787, 0.0424627922475338, -0.03746044635772705, -0.03597303107380867, 0.22758877277374268, 0.1009177565574646, 0.03089720755815506, 0.17962171137332916, 0.010350672528147697, -0.2703946828842163, 0.015237200073897839, 0.0647135004401207, -0.07720091193914413, 0.15752871334552765, 0.05562684312462807, -0.049801189452409744, 0.08214939385652542, 0.032038331031799316, -0.165513277053833, -0.004831716418266296, -0.02072383277118206, -0.04504403471946716, 0.09232694655656815, 0.06956911832094193, 0.07011176645755768, 0.034282486885786057, 0.017851393669843674, -0.0714372918009758, 0.06354191154241562, 0.014452377334237099, -0.02349161170423031, 0.13615116477012634, 0.028668763116002083, -0.0002947957837022841, 0.1798527091741562, 0.11815319955348969, 0.016722125932574272, 0.016196802258491516, -0.1166125237941742, -0.0606788769364357, 0.012365915812551975, 0.04470464214682579, 0.10005760192871094, 0.058856748044490814, 0.01943058706820011, 0.13215520977973938, -0.1164829432964325, 0.08512931317090988, 0.1828341782093048, -0.24191047251224518, -0.006823094096034765, 0.061043880879879, 0.08518847078084946, 0.02852868288755417, -0.0027500083670020103, 0.050437480211257935, 0.06484624743461609, 0.021347152069211006, 0.03636380657553673, -0.0638979896903038, 0.05009674280881882, 0.011186900548636913, -0.10215270519256592, -0.07660897821187973, 0.2294245809316635, -0.0602995827794075, 0.004886541981250048, -0.028186868876218796, -0.08490151911973953, -0.06026294082403183, -0.012795685790479183, -0.05738116800785065, -0.01700775697827339, 0.034475523978471756, 0.0214629378169775, -0.10922146588563919, -0.07046429812908173, -0.1146778091788292, -0.09578189998865128, 0.17879855632781982, -0.02900231070816517, 0.08940442651510239, -0.2603394091129303, 0.2254239320755005, 0.07019765675067902, -0.11909467726945877, 0.04757627099752426, -0.11814092099666595, 0.08530338853597641, 0.02207805961370468, 0.041434839367866516, 0.07761925458908081, 0.04161522537469864, 0.11940909177064896, 0.03257475048303604, -0.00314142694696784, 0.05456724017858505, 0.07224375009536743, 0.0941813513636589, 0.1230122447013855, -0.07287998497486115, -0.07873915135860443, 0.08034131675958633, -0.04709449037909508, -0.11787727475166321, -0.06861002743244171, -0.1452382206916809, -0.004202034790068865, -0.0335184708237648, 0.07922724634408951, 0.05637102574110031, 0.09526676684617996, -0.01433930266648531, -0.05777551606297493, 0.04157217592000961, -0.06985066086053848, 0.019995175302028656, -0.011708668433129787, -0.060763102024793625, 0.13121068477630615, 0.04688004031777382, -0.014275136403739452, -0.08673419058322906, 0.07951672375202179, -0.1204570084810257, -0.07978847622871399, -0.08239417523145676, -0.05098734796047211, -0.007686138618737459, -0.11281027644872665, 0.049203939735889435, -0.11458899080753326, -0.22705501317977905, -0.01313747651875019, 0.04550096020102501, -0.016462473198771477, -0.03707117214798927, -0.040630146861076355, -0.009473399259150028, 0.04880702868103981, -0.042894408106803894, 0.039052072912454605, -0.05325083062052727, 0.050018906593322754, -0.09618895500898361, 0.051321301609277725, -0.10470817238092422, 0.041251372545957565, -0.09671807289123535, 0.07595963031053543, 0.0017866486450657248, 0.0454767569899559, 0.010063555091619492, 0.08985432982444763, -0.03214199095964432, -0.044836416840553284, -0.07869677990674973, 0.026561295613646507, 0.02284199558198452, 0.20134314894676208, -0.10196486860513687, -0.0819794163107872, 0.12614667415618896, -0.07252102345228195, -0.1288122832775116, 0.0409054271876812, -0.02831157296895981, 0.17958028614521027, 0.07370224595069885, 0.16096454858779907, 0.12039237469434738, -0.03798284754157066, 0.1263856589794159, 0.14821170270442963, -0.1269366294145584, -0.004153167363256216, 0.039416827261447906, 0.014042570255696774, -0.20559121668338776, 0.04052022844552994, -0.01946125738322735, 0.06584736704826355, -0.10201486945152283, -0.00946728140115738, 0.0031527038663625717, -0.02320384420454502, 0.0023026331327855587, -0.0472555048763752, 0.061078161001205444, 0.038737643510103226, -0.022763127461075783, 0.029682613909244537, 0.06635552644729614, -0.026160234585404396, -0.00823320634663105, -0.04484035447239876, 0.10009831935167313, -0.07260703295469284, 0.06797321885824203, -0.13160665333271027, -0.003086181590333581, -0.012450510635972023, 0.0972909927368164, 0.03811546042561531, 0.10621625185012817, 0.05470104143023491, 0.03126294165849686, 0.07701993733644485, -0.02846951223909855, 0.0746634304523468, 0.01002051867544651, -0.0850096121430397, -0.1272277683019638, 0.015217535197734833, -0.10649837553501129, -0.004191380459815264, -0.08523700386285782, -0.0015737697249278426, -0.12802091240882874, 0.05826076865196228, -0.016465239226818085, 0.0539434514939785, -0.055182818323373795, -0.04337453469634056, -0.044662054628133774, -0.022007398307323456, 0.0482511967420578, -0.033139705657958984, -0.06687536835670471, 0.16832175850868225, -0.15395553410053253, 0.2592274248600006, 0.1313537061214447, -0.0889907032251358, 0.002020547864958644, -0.07812081277370453, -0.04194976016879082, -0.012868959456682205, 0.07527336478233337, -0.03700125962495804, 0.15495356917381287, -0.03386903926730156, 0.17382068932056427, -0.099679134786129, -0.0334031768143177, 0.02144831046462059, -0.10981054604053497, 0.057656705379486084, 0.08051177859306335, 0.04427298903465271, -0.159133642911911, 0.08837400376796722, 0.19756358861923218, 0.05472150072455406, 0.20321963727474213, -0.006869805511087179, -0.06112205237150192, -0.05358194187283516, -0.0808696523308754, -0.052568696439266205, 0.056259434670209885, -0.09903126955032349, -0.004000484477728605, 0.06423190236091614, 0.08783505111932755, 0.11237549781799316, -0.10904275625944138, -0.046180129051208496, 0.05125856027007103, -0.004819708876311779, -0.051060013473033905, 0.07006146013736725, -0.0659489631652832, 0.13217470049858093, 0.014598124660551548, -0.07049204409122467, 0.0036125897895544767, -0.004913401324301958, -0.11891388893127441, 0.20653130114078522, -0.08047540485858917, -0.27306002378463745, -0.16792123019695282, -0.16288253664970398, 0.07165426760911942, 0.038431257009506226, 0.033738572150468826, -0.08776884526014328, -0.020982403308153152, 0.004409478977322578, 0.11553267389535904, -0.09698133170604706, 0.013121976517140865, 0.008159824647009373, -0.018650712445378304, -0.07579360157251358, -0.09033482521772385, -0.0241270512342453, -0.02461584471166134, 0.020020704716444016, 0.03998296707868576, -0.11154978722333908, 0.06758414953947067, 0.2167699933052063, -0.015538511797785759, 0.06870997697114944, 0.00025148785789497197, 0.26176807284355164, -0.08426473289728165, 0.040830448269844055, 0.11926601082086563, -0.08760137856006622, 0.05199241638183594, 0.07132956385612488, 0.03210015222430229, -0.014074578881263733, 0.016441889107227325, -0.11233895272016525, -0.12864868342876434, -0.1923626959323883, -0.06961654871702194, -0.028241310268640518, 0.13464264571666718, 0.031150488182902336, 0.04321796074509621, 0.10346641391515732, 0.07471037656068802, 0.06701335310935974, 0.03259968012571335, -0.0005120337591506541, 0.0647427961230278, 0.024594781920313835, -0.05812343955039978, 0.054217349737882614, -0.04845457896590233, -0.0797470211982727, 0.08279551565647125, -0.011098933406174183, 0.0927528515458107, 0.06928195804357529, 0.02340286411345005, 0.018686039373278618, 0.04218229651451111, 0.15593960881233215, 0.22442668676376343, -0.012412761338055134, -0.041085485368967056, -0.05078154057264328, -0.040494389832019806, -0.01600850187242031, 0.015044075436890125, -0.05785144492983818, -0.033252447843551636, -0.0728597640991211, -0.015066487714648247, 0.011195010505616665, 0.015441779047250748, 0.07578693330287933, -0.22024130821228027, -0.038240667432546616, 0.042616840451955795, -0.013794191181659698, -0.10639895498752594, 0.05872863903641701, 0.016779562458395958, -0.17391349375247955, -0.07854076474905014, -0.016605399549007416, 0.1603294163942337, -0.030760308727622032, 0.0619782954454422, 0.005449770484119654, 0.02271227352321148, -0.013140208087861538, 0.11191333085298538, -0.27346712350845337, 0.1954270750284195, 0.001131516881287098, -0.04876048117876053, -0.016439033672213554, -0.04243995249271393, 0.0009058643481694162, 0.14556926488876343, 0.09718295931816101, 0.0028763783629983664, 0.0669604167342186, -0.07678256928920746, -0.11943262070417404, 0.05284353718161583, 0.08068333566188812, -0.07738065719604492, 0.029960619285702705, -0.029798466712236404, 0.027152907103300095, -0.007555682212114334, -0.030231619253754616, 0.002119861776009202, -0.11661309748888016, 0.02936525270342827, -0.08075195550918579, 0.06012337654829025, 0.02433968149125576, -0.02529163844883442, -0.012048180215060711, 0.1316436529159546, -0.013300766237080097, -0.08264251798391342, -0.08976204693317413, -0.02328740619122982, 0.09523095935583115, -0.05599937587976456, 0.03358715400099754, -0.08175740391016006, -0.04073614999651909, 0.005860272329300642, -0.16970814764499664, 0.06983034312725067, -0.10846570879220963, -0.09971687942743301, -0.050264790654182434, 0.15346404910087585, 0.013677009381353855, 0.025709833949804306, 0.03220117464661598, -0.04211581498384476, -0.18150363862514496, -0.15989434719085693, -0.007562890648841858, 0.0717545747756958, -0.04433317109942436, 0.03638565540313721, 0.007171243894845247, 0.10013602674007416, 0.004198792390525341, 0.07230839878320694, 0.2026015669107437, 0.16423118114471436, -0.08760133385658264, 0.17723721265792847, 0.16266676783561707, -0.12243213504552841, -0.2722402811050415, -0.09522651135921478, -0.05925937369465828, 0.03468820080161095, 0.02297091670334339, -0.13072867691516876, 0.06184706464409828, -0.011241482570767403, -0.004976592492312193, 0.13391432166099548, -0.2790721356868744, -0.07025358080863953, 0.13864430785179138, -0.012145180255174637, 0.2560276985168457, -0.042459286749362946, -0.08155408501625061, -0.060940731316804886, -0.2339130938053131, 0.1595010906457901, -0.12908293306827545, 0.030256805941462517, -0.06380902975797653, 0.1317017376422882, 0.04475972056388855, -0.051817599684000015, 0.13714583218097687, -0.0770399421453476, 0.03692200407385826, -0.1231972947716713, -0.01437266543507576, 0.05212629213929176, -0.014681367203593254, 0.10554680228233337, -0.053141020238399506, 0.10400939732789993, -0.12106935679912567, -0.052672889083623886, -0.054288461804389954, 0.017598338425159454, -0.023758167400956154, -0.05668776109814644, -0.039483629167079926, -0.05230721831321716, 0.00942184031009674, -0.024894973263144493, -0.008981208316981792, -0.02189256064593792, 0.08200293034315109, 0.10853444039821625, 0.1416669338941574, -0.04508063197135925, -0.02666328102350235, -0.029412275180220604, -0.043095141649246216, 0.07755832374095917, -0.1675589680671692, -0.020979177206754684, 0.15767353773117065, 0.008264025673270226, 0.08081416040658951, 0.07994852215051651, -0.043529048562049866, -0.04116993397474289, 0.09435915946960449, -0.23738352954387665, -0.032961416989564896, -0.07289689034223557, -0.032304681837558746, 0.05143286660313606, 0.06389017403125763, 0.11233682930469513, -0.055076416581869125, -0.015500548295676708, 0.038369257003068924, -0.013473432511091232, -0.10457789897918701, 0.12659704685211182, 0.07594829052686691, 0.04931824654340744, -0.13000807166099548, 0.03979043290019035, -0.02080575004220009, -0.024042857810854912, -0.009190280921757221, 0.09610513597726822, -0.13868926465511322, -0.061987441033124924, 0.01100219041109085, 0.1624082624912262, -0.08940329402685165, -0.054934311658144, -0.00678250240162015, -0.07782098650932312, 0.06215988099575043, 0.06269455701112747, 0.039047662168741226, 0.10006190836429596, -0.08492296934127808, -0.004345493856817484, -0.04427671059966087, 0.02742549031972885, 0.04004936292767525, -0.01839151792228222, -0.11644710600376129, 0.050648268312215805, 0.01261399406939745, 0.21786263585090637, -0.12195943295955658, -0.07748695462942123, -0.13975368440151215, 0.03579137846827507, -0.1441981941461563, -0.02782432734966278, -0.09455464035272598, -0.0542730838060379, -0.024786408990621567, -0.02354593575000763, -0.05044161155819893, -0.03595460206270218, -0.06568260490894318, 0.04963921010494232, -0.01889806240797043, -0.04201965406537056, -0.018809955567121506, 0.04780932888388634, 0.10624072700738907, -0.0022816911805421114, 0.11582330614328384, 0.10476028919219971, -0.06149300932884216, 0.06964143365621567, -0.08975338935852051, 0.049342647194862366, 0.010800108313560486, -0.03639211133122444, 0.07890737056732178, 0.033158838748931885, 0.011678727343678474, -0.02014644630253315, -0.05248590186238289, 0.015699470415711403, 0.019494805485010147, -0.09001129865646362, 0.04338252544403076, 0.03427375108003616, -0.07128193974494934, -0.06945458799600601, -0.02831537090241909, -0.04915383830666542, 0.10966338962316513, 0.09227382391691208, 0.01580313965678215, 0.11524862796068192, -0.09982031583786011, -0.0043287696316838264, 0.0288130734115839, -0.08074736595153809, -0.01706261746585369, -0.10044533759355545, -0.01304725930094719, -0.02274717018008232, 0.2554529011249542, 0.12089171260595322, -0.025309232994914055, -0.03230812028050423, 0.07114472985267639, 0.08105676621198654, -0.0211230106651783, 0.14824873208999634, 0.03444083034992218, -0.0007331980159506202, -0.1400776505470276, 0.10673409700393677, -0.060156434774398804, -0.010151425376534462, 0.09550673514604568, -0.08319920301437378, 0.048856139183044434, 0.07468824833631516, -0.01950058713555336, 0.05372466519474983, -0.11716536432504654, -0.2690386474132538, 0.023945249617099762, 0.027653370052576065, -0.0441947840154171, 0.07253700494766235, 0.145015150308609, 0.00042942073196172714, 0.05244648456573486, 0.061493102461099625, -0.05709811672568321, -0.17804701626300812, -0.19115881621837616, -0.0384756401181221, -0.11082857847213745, -0.023826930671930313, -0.10639674216508865, 0.04148538038134575, -0.02072913944721222, 0.05925795063376427, -0.09639845043420792, 0.12447383254766464, 0.06843417137861252, -0.11577396094799042, 0.05810433253645897, -0.008805959485471249, 0.048459235578775406, -0.07387776672840118, 0.08210063725709915, -0.10721065104007721, -0.026499031111598015, -0.016933415085077286, 0.03711435943841934, -0.05858420953154564, 0.0011270071845501661, -0.10357651859521866, -0.06808403134346008, -0.056935109198093414, 0.09072309732437134, -0.024477418512105942, 0.03998230770230293, -0.014557241462171078, -0.061277762055397034, -0.025446701794862747, 0.2273169606924057, -0.018587565049529076, -0.043939489871263504, -0.0661960318684578, 0.2851298749446869, -0.06544138491153717, 0.07253559678792953, -0.032977886497974396, -0.001274158013984561, -0.07127615064382553, 0.2931469976902008, 0.36314713954925537, -0.14264726638793945, 0.011796033009886742, -0.018389053642749786, 0.03556118905544281, 0.07535336911678314, 0.18024654686450958, 0.07291083037853241, 0.3107033371925354, -0.04080776497721672, -0.01225926261395216, -0.10546047985553741, -0.03835856914520264, 0.014304363168776035, 0.02947218343615532, 0.08378855139017105, -0.05586446449160576, -0.06808875501155853, 0.1039084792137146, -0.26703301072120667, -0.02056516334414482, -0.16380304098129272, -0.061613935977220535, -0.04166705906391144, 0.0007227687747217715, 0.07237391918897629, 0.028740311041474342, 0.05115301162004471, -0.039005450904369354, -0.047156207263469696, 0.057444483041763306, -0.02154913917183876, -0.12674635648727417, 0.0002557095722295344, 0.143532857298851, -0.07906237244606018, -0.0018181405030190945, 0.0032308290246874094, 0.060348983854055405, 0.044118594378232956, 0.04119637981057167, -0.10164451599121094, 0.02608482725918293, 0.01246592216193676, -0.03363148868083954, -0.028164468705654144, 0.008156497962772846, 0.07835527509450912, -0.21697945892810822, 0.0020338469184935093, -0.14078554511070251, 0.011757226660847664, -0.07641053944826126, -0.006896127946674824, -0.08222074061632156, 0.03242125362157822, 0.004625517874956131, 0.1118803396821022, 0.11125602573156357, -0.03202005848288536, -0.0006144302315078676, -0.06265610456466675, 0.06727221608161926, -0.06884542852640152, -0.02960195019841194, -0.025150567293167114, -0.09257599711418152, -0.09335606545209885, 0.09815482050180435, -0.022339481860399246, -0.1427105814218521, 0.007601875811815262, -0.09401176869869232, -0.04369132220745087, -0.021486658602952957, 0.09382037818431854, 0.11086808145046234, 0.09180203825235367, -0.007599277421832085, 0.047748953104019165, 0.03120456263422966, 0.07436691224575043, -0.12886843085289001, -0.10148585587739944 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1111434706745069575/7L1hshMt_400x400.png&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">the omen is cringe tbh</div> <div style="text-align: center; font-size: 14px;">@hampshireomen</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from the omen is cringe tbh. | Data | the omen is cringe tbh | | --- | --- | | Tweets downloaded | 1462 | | Retweets | 68 | | Short tweets | 109 | | Tweets kept | 1285 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/1792rc86/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hampshireomen's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/1y440us5) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/1y440us5/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hampshireomen') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "http://www.huggingtweets.com/hampshireomen/1647377480803/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hampshireomen
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT the omen is cringe tbh @hampshireomen I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from the omen is cringe tbh. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hampshireomen's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1502824671292448768/LbY2Y0Pf_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">Hank Green</div> <div style="text-align: center; font-size: 14px;">@hankgreen</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from Hank Green. | Data | Hank Green | | --- | --- | | Tweets downloaded | 3192 | | Retweets | 167 | | Short tweets | 378 | | Tweets kept | 2647 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/8zt26c2h/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hankgreen's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/jb24l8bp) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/jb24l8bp/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hankgreen') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://github.com/borisdayma/huggingtweets/blob/master/img/logo.png?raw=true", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hankgreen
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT Hank Green @hankgreen I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from Hank Green. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hankgreen's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1386661978/frank_soda_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Hank Soda 🤖 AI Bot </div> <div style="font-size: 15px">@hanksoda bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@hanksoda's tweets](https://twitter.com/hanksoda). | Data | Quantity | | --- | --- | | Tweets downloaded | 1758 | | Retweets | 178 | | Short tweets | 124 | | Tweets kept | 1456 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/ybc0xpov/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hanksoda's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/3o62ar2g) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/3o62ar2g/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hanksoda') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hanksoda/1617221992554/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hanksoda
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
Hank Soda AI Bot @hanksoda bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @hanksoda's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hanksoda's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1231086579336257536/cwkV33rb_400x400.jpg&#39;)"> </div> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1338621721750941699/o0kTXA0A_400x400.jpg&#39;)"> </div> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1229217557535756288/jzA5Ph7n_400x400.jpg&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI CYBORG 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">🇹🇭👸🏽♠️ Thai Queen of Spades ♠️👸🏽🇹🇭 7.25K & Hanna ♠ & ♠️ Hayley ♠️</div> <div style="text-align: center; font-size: 14px;">@hannabbc-hfrost3000-thaiqos</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from 🇹🇭👸🏽♠️ Thai Queen of Spades ♠️👸🏽🇹🇭 7.25K & Hanna ♠ & ♠️ Hayley ♠️. | Data | 🇹🇭👸🏽♠️ Thai Queen of Spades ♠️👸🏽🇹🇭 7.25K | Hanna ♠ | ♠️ Hayley ♠️ | | --- | --- | --- | --- | | Tweets downloaded | 639 | 1044 | 365 | | Retweets | 247 | 0 | 114 | | Short tweets | 37 | 164 | 19 | | Tweets kept | 355 | 880 | 232 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/1512srx0/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hannabbc-hfrost3000-thaiqos's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/kzlnl9be) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/kzlnl9be/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hannabbc-hfrost3000-thaiqos') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://github.com/borisdayma/huggingtweets/blob/master/img/logo.png?raw=true", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hannabbc-hfrost3000-thaiqos
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI CYBORG 🇹🇭️ Thai Queen of Spades ️🇹🇭 7.25K & Hanna & ️ Hayley ️ @hannabbc-hfrost3000-thaiqos I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from 🇹🇭️ Thai Queen of Spades ️🇹🇭 7.25K & Hanna & ️ Hayley ️. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hannabbc-hfrost3000-thaiqos's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/467172766416789504/01jisH73_400x400.png')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Hannes Bajohr 🤖 AI Bot </div> <div style="font-size: 15px">@hannesbajohr bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@hannesbajohr's tweets](https://twitter.com/hannesbajohr). | Data | Quantity | | --- | --- | | Tweets downloaded | 3210 | | Retweets | 1663 | | Short tweets | 293 | | Tweets kept | 1254 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/32cptzpn/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hannesbajohr's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/2lxf36v7) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/2lxf36v7/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hannesbajohr') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://github.com/borisdayma/huggingtweets/blob/master/img/logo.png?raw=true", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hannesbajohr
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
Hannes Bajohr AI Bot @hannesbajohr bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @hannesbajohr's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hannesbajohr's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<link rel="stylesheet" href="https://unpkg.com/@tailwindcss/[email protected]/dist/typography.min.css"> <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1131567101620236288/5xgFhTdC_400x400.png')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Hans Vestberg 🤖 AI Bot </div> <div style="font-size: 15px; color: #657786">@hansvestberg bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://app.wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-model-to-generate-tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@hansvestberg's tweets](https://twitter.com/hansvestberg). <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>2015</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>724</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>38</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>1253</td> </tr> </tbody> </table> [Explore the data](https://app.wandb.ai/wandb/huggingtweets/runs/1igrey9f/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hansvestberg's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://app.wandb.ai/wandb/huggingtweets/runs/1zzvxvhc) for full transparency and reproducibility. At the end of training, [the final model](https://app.wandb.ai/wandb/huggingtweets/runs/1zzvxvhc/artifacts) is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/hansvestberg'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) <section class='prose'> For more details, visit the project repository. </section> [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets) <!--- random size file -->
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hansvestberg/1603208643411/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hansvestberg
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
<link rel="stylesheet" href="URL <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('URL </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Hans Vestberg AI Bot </div> <div style="font-size: 15px; color: #657786">@hansvestberg bot</div> </div> I was made with huggingtweets. Create your own bot based on your favorite user with the demo! ## How does it work? The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. ## Training data The model was trained on @hansvestberg's tweets. <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>2015</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>724</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>38</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>1253</td> </tr> </tbody> </table> Explore the data, which is tracked with W&B artifacts at every step of the pipeline. ## Training procedure The model is based on a pre-trained GPT-2 which is fine-tuned on @hansvestberg's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/hansvestberg'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> ![Follow](URL <section class='prose'> For more details, visit the project repository. </section> ![GitHub stars](URL
[ "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @hansvestberg's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>2015</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>724</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>38</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>1253</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @hansvestberg's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/hansvestberg'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @hansvestberg's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>2015</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>724</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>38</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>1253</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @hansvestberg's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/hansvestberg'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ 57, 34, 430, 76, 9, 168, 48, 58 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report." ]
[ -0.04084593802690506, 0.035596683621406555, -0.0024457171093672514, 0.04662978649139404, 0.10991521924734116, 0.022836215794086456, 0.12812861800193787, 0.0424627922475338, -0.03746044635772705, -0.03597303107380867, 0.22758877277374268, 0.1009177565574646, 0.03089720755815506, 0.17962171137332916, 0.010350672528147697, -0.2703946828842163, 0.015237200073897839, 0.0647135004401207, -0.07720091193914413, 0.15752871334552765, 0.05562684312462807, -0.049801189452409744, 0.08214939385652542, 0.032038331031799316, -0.165513277053833, -0.004831716418266296, -0.02072383277118206, -0.04504403471946716, 0.09232694655656815, 0.06956911832094193, 0.07011176645755768, 0.034282486885786057, 0.017851393669843674, -0.0714372918009758, 0.06354191154241562, 0.014452377334237099, -0.02349161170423031, 0.13615116477012634, 0.028668763116002083, -0.0002947957837022841, 0.1798527091741562, 0.11815319955348969, 0.016722125932574272, 0.016196802258491516, -0.1166125237941742, -0.0606788769364357, 0.012365915812551975, 0.04470464214682579, 0.10005760192871094, 0.058856748044490814, 0.01943058706820011, 0.13215520977973938, -0.1164829432964325, 0.08512931317090988, 0.1828341782093048, -0.24191047251224518, -0.006823094096034765, 0.061043880879879, 0.08518847078084946, 0.02852868288755417, -0.0027500083670020103, 0.050437480211257935, 0.06484624743461609, 0.021347152069211006, 0.03636380657553673, -0.0638979896903038, 0.05009674280881882, 0.011186900548636913, -0.10215270519256592, -0.07660897821187973, 0.2294245809316635, -0.0602995827794075, 0.004886541981250048, -0.028186868876218796, -0.08490151911973953, -0.06026294082403183, -0.012795685790479183, -0.05738116800785065, -0.01700775697827339, 0.034475523978471756, 0.0214629378169775, -0.10922146588563919, -0.07046429812908173, -0.1146778091788292, -0.09578189998865128, 0.17879855632781982, -0.02900231070816517, 0.08940442651510239, -0.2603394091129303, 0.2254239320755005, 0.07019765675067902, -0.11909467726945877, 0.04757627099752426, -0.11814092099666595, 0.08530338853597641, 0.02207805961370468, 0.041434839367866516, 0.07761925458908081, 0.04161522537469864, 0.11940909177064896, 0.03257475048303604, -0.00314142694696784, 0.05456724017858505, 0.07224375009536743, 0.0941813513636589, 0.1230122447013855, -0.07287998497486115, -0.07873915135860443, 0.08034131675958633, -0.04709449037909508, -0.11787727475166321, -0.06861002743244171, -0.1452382206916809, -0.004202034790068865, -0.0335184708237648, 0.07922724634408951, 0.05637102574110031, 0.09526676684617996, -0.01433930266648531, -0.05777551606297493, 0.04157217592000961, -0.06985066086053848, 0.019995175302028656, -0.011708668433129787, -0.060763102024793625, 0.13121068477630615, 0.04688004031777382, -0.014275136403739452, -0.08673419058322906, 0.07951672375202179, -0.1204570084810257, -0.07978847622871399, -0.08239417523145676, -0.05098734796047211, -0.007686138618737459, -0.11281027644872665, 0.049203939735889435, -0.11458899080753326, -0.22705501317977905, -0.01313747651875019, 0.04550096020102501, -0.016462473198771477, -0.03707117214798927, -0.040630146861076355, -0.009473399259150028, 0.04880702868103981, -0.042894408106803894, 0.039052072912454605, -0.05325083062052727, 0.050018906593322754, -0.09618895500898361, 0.051321301609277725, -0.10470817238092422, 0.041251372545957565, -0.09671807289123535, 0.07595963031053543, 0.0017866486450657248, 0.0454767569899559, 0.010063555091619492, 0.08985432982444763, -0.03214199095964432, -0.044836416840553284, -0.07869677990674973, 0.026561295613646507, 0.02284199558198452, 0.20134314894676208, -0.10196486860513687, -0.0819794163107872, 0.12614667415618896, -0.07252102345228195, -0.1288122832775116, 0.0409054271876812, -0.02831157296895981, 0.17958028614521027, 0.07370224595069885, 0.16096454858779907, 0.12039237469434738, -0.03798284754157066, 0.1263856589794159, 0.14821170270442963, -0.1269366294145584, -0.004153167363256216, 0.039416827261447906, 0.014042570255696774, -0.20559121668338776, 0.04052022844552994, -0.01946125738322735, 0.06584736704826355, -0.10201486945152283, -0.00946728140115738, 0.0031527038663625717, -0.02320384420454502, 0.0023026331327855587, -0.0472555048763752, 0.061078161001205444, 0.038737643510103226, -0.022763127461075783, 0.029682613909244537, 0.06635552644729614, -0.026160234585404396, -0.00823320634663105, -0.04484035447239876, 0.10009831935167313, -0.07260703295469284, 0.06797321885824203, -0.13160665333271027, -0.003086181590333581, -0.012450510635972023, 0.0972909927368164, 0.03811546042561531, 0.10621625185012817, 0.05470104143023491, 0.03126294165849686, 0.07701993733644485, -0.02846951223909855, 0.0746634304523468, 0.01002051867544651, -0.0850096121430397, -0.1272277683019638, 0.015217535197734833, -0.10649837553501129, -0.004191380459815264, -0.08523700386285782, -0.0015737697249278426, -0.12802091240882874, 0.05826076865196228, -0.016465239226818085, 0.0539434514939785, -0.055182818323373795, -0.04337453469634056, -0.044662054628133774, -0.022007398307323456, 0.0482511967420578, -0.033139705657958984, -0.06687536835670471, 0.16832175850868225, -0.15395553410053253, 0.2592274248600006, 0.1313537061214447, -0.0889907032251358, 0.002020547864958644, -0.07812081277370453, -0.04194976016879082, -0.012868959456682205, 0.07527336478233337, -0.03700125962495804, 0.15495356917381287, -0.03386903926730156, 0.17382068932056427, -0.099679134786129, -0.0334031768143177, 0.02144831046462059, -0.10981054604053497, 0.057656705379486084, 0.08051177859306335, 0.04427298903465271, -0.159133642911911, 0.08837400376796722, 0.19756358861923218, 0.05472150072455406, 0.20321963727474213, -0.006869805511087179, -0.06112205237150192, -0.05358194187283516, -0.0808696523308754, -0.052568696439266205, 0.056259434670209885, -0.09903126955032349, -0.004000484477728605, 0.06423190236091614, 0.08783505111932755, 0.11237549781799316, -0.10904275625944138, -0.046180129051208496, 0.05125856027007103, -0.004819708876311779, -0.051060013473033905, 0.07006146013736725, -0.0659489631652832, 0.13217470049858093, 0.014598124660551548, -0.07049204409122467, 0.0036125897895544767, -0.004913401324301958, -0.11891388893127441, 0.20653130114078522, -0.08047540485858917, -0.27306002378463745, -0.16792123019695282, -0.16288253664970398, 0.07165426760911942, 0.038431257009506226, 0.033738572150468826, -0.08776884526014328, -0.020982403308153152, 0.004409478977322578, 0.11553267389535904, -0.09698133170604706, 0.013121976517140865, 0.008159824647009373, -0.018650712445378304, -0.07579360157251358, -0.09033482521772385, -0.0241270512342453, -0.02461584471166134, 0.020020704716444016, 0.03998296707868576, -0.11154978722333908, 0.06758414953947067, 0.2167699933052063, -0.015538511797785759, 0.06870997697114944, 0.00025148785789497197, 0.26176807284355164, -0.08426473289728165, 0.040830448269844055, 0.11926601082086563, -0.08760137856006622, 0.05199241638183594, 0.07132956385612488, 0.03210015222430229, -0.014074578881263733, 0.016441889107227325, -0.11233895272016525, -0.12864868342876434, -0.1923626959323883, -0.06961654871702194, -0.028241310268640518, 0.13464264571666718, 0.031150488182902336, 0.04321796074509621, 0.10346641391515732, 0.07471037656068802, 0.06701335310935974, 0.03259968012571335, -0.0005120337591506541, 0.0647427961230278, 0.024594781920313835, -0.05812343955039978, 0.054217349737882614, -0.04845457896590233, -0.0797470211982727, 0.08279551565647125, -0.011098933406174183, 0.0927528515458107, 0.06928195804357529, 0.02340286411345005, 0.018686039373278618, 0.04218229651451111, 0.15593960881233215, 0.22442668676376343, -0.012412761338055134, -0.041085485368967056, -0.05078154057264328, -0.040494389832019806, -0.01600850187242031, 0.015044075436890125, -0.05785144492983818, -0.033252447843551636, -0.0728597640991211, -0.015066487714648247, 0.011195010505616665, 0.015441779047250748, 0.07578693330287933, -0.22024130821228027, -0.038240667432546616, 0.042616840451955795, -0.013794191181659698, -0.10639895498752594, 0.05872863903641701, 0.016779562458395958, -0.17391349375247955, -0.07854076474905014, -0.016605399549007416, 0.1603294163942337, -0.030760308727622032, 0.0619782954454422, 0.005449770484119654, 0.02271227352321148, -0.013140208087861538, 0.11191333085298538, -0.27346712350845337, 0.1954270750284195, 0.001131516881287098, -0.04876048117876053, -0.016439033672213554, -0.04243995249271393, 0.0009058643481694162, 0.14556926488876343, 0.09718295931816101, 0.0028763783629983664, 0.0669604167342186, -0.07678256928920746, -0.11943262070417404, 0.05284353718161583, 0.08068333566188812, -0.07738065719604492, 0.029960619285702705, -0.029798466712236404, 0.027152907103300095, -0.007555682212114334, -0.030231619253754616, 0.002119861776009202, -0.11661309748888016, 0.02936525270342827, -0.08075195550918579, 0.06012337654829025, 0.02433968149125576, -0.02529163844883442, -0.012048180215060711, 0.1316436529159546, -0.013300766237080097, -0.08264251798391342, -0.08976204693317413, -0.02328740619122982, 0.09523095935583115, -0.05599937587976456, 0.03358715400099754, -0.08175740391016006, -0.04073614999651909, 0.005860272329300642, -0.16970814764499664, 0.06983034312725067, -0.10846570879220963, -0.09971687942743301, -0.050264790654182434, 0.15346404910087585, 0.013677009381353855, 0.025709833949804306, 0.03220117464661598, -0.04211581498384476, -0.18150363862514496, -0.15989434719085693, -0.007562890648841858, 0.0717545747756958, -0.04433317109942436, 0.03638565540313721, 0.007171243894845247, 0.10013602674007416, 0.004198792390525341, 0.07230839878320694, 0.2026015669107437, 0.16423118114471436, -0.08760133385658264, 0.17723721265792847, 0.16266676783561707, -0.12243213504552841, -0.2722402811050415, -0.09522651135921478, -0.05925937369465828, 0.03468820080161095, 0.02297091670334339, -0.13072867691516876, 0.06184706464409828, -0.011241482570767403, -0.004976592492312193, 0.13391432166099548, -0.2790721356868744, -0.07025358080863953, 0.13864430785179138, -0.012145180255174637, 0.2560276985168457, -0.042459286749362946, -0.08155408501625061, -0.060940731316804886, -0.2339130938053131, 0.1595010906457901, -0.12908293306827545, 0.030256805941462517, -0.06380902975797653, 0.1317017376422882, 0.04475972056388855, -0.051817599684000015, 0.13714583218097687, -0.0770399421453476, 0.03692200407385826, -0.1231972947716713, -0.01437266543507576, 0.05212629213929176, -0.014681367203593254, 0.10554680228233337, -0.053141020238399506, 0.10400939732789993, -0.12106935679912567, -0.052672889083623886, -0.054288461804389954, 0.017598338425159454, -0.023758167400956154, -0.05668776109814644, -0.039483629167079926, -0.05230721831321716, 0.00942184031009674, -0.024894973263144493, -0.008981208316981792, -0.02189256064593792, 0.08200293034315109, 0.10853444039821625, 0.1416669338941574, -0.04508063197135925, -0.02666328102350235, -0.029412275180220604, -0.043095141649246216, 0.07755832374095917, -0.1675589680671692, -0.020979177206754684, 0.15767353773117065, 0.008264025673270226, 0.08081416040658951, 0.07994852215051651, -0.043529048562049866, -0.04116993397474289, 0.09435915946960449, -0.23738352954387665, -0.032961416989564896, -0.07289689034223557, -0.032304681837558746, 0.05143286660313606, 0.06389017403125763, 0.11233682930469513, -0.055076416581869125, -0.015500548295676708, 0.038369257003068924, -0.013473432511091232, -0.10457789897918701, 0.12659704685211182, 0.07594829052686691, 0.04931824654340744, -0.13000807166099548, 0.03979043290019035, -0.02080575004220009, -0.024042857810854912, -0.009190280921757221, 0.09610513597726822, -0.13868926465511322, -0.061987441033124924, 0.01100219041109085, 0.1624082624912262, -0.08940329402685165, -0.054934311658144, -0.00678250240162015, -0.07782098650932312, 0.06215988099575043, 0.06269455701112747, 0.039047662168741226, 0.10006190836429596, -0.08492296934127808, -0.004345493856817484, -0.04427671059966087, 0.02742549031972885, 0.04004936292767525, -0.01839151792228222, -0.11644710600376129, 0.050648268312215805, 0.01261399406939745, 0.21786263585090637, -0.12195943295955658, -0.07748695462942123, -0.13975368440151215, 0.03579137846827507, -0.1441981941461563, -0.02782432734966278, -0.09455464035272598, -0.0542730838060379, -0.024786408990621567, -0.02354593575000763, -0.05044161155819893, -0.03595460206270218, -0.06568260490894318, 0.04963921010494232, -0.01889806240797043, -0.04201965406537056, -0.018809955567121506, 0.04780932888388634, 0.10624072700738907, -0.0022816911805421114, 0.11582330614328384, 0.10476028919219971, -0.06149300932884216, 0.06964143365621567, -0.08975338935852051, 0.049342647194862366, 0.010800108313560486, -0.03639211133122444, 0.07890737056732178, 0.033158838748931885, 0.011678727343678474, -0.02014644630253315, -0.05248590186238289, 0.015699470415711403, 0.019494805485010147, -0.09001129865646362, 0.04338252544403076, 0.03427375108003616, -0.07128193974494934, -0.06945458799600601, -0.02831537090241909, -0.04915383830666542, 0.10966338962316513, 0.09227382391691208, 0.01580313965678215, 0.11524862796068192, -0.09982031583786011, -0.0043287696316838264, 0.0288130734115839, -0.08074736595153809, -0.01706261746585369, -0.10044533759355545, -0.01304725930094719, -0.02274717018008232, 0.2554529011249542, 0.12089171260595322, -0.025309232994914055, -0.03230812028050423, 0.07114472985267639, 0.08105676621198654, -0.0211230106651783, 0.14824873208999634, 0.03444083034992218, -0.0007331980159506202, -0.1400776505470276, 0.10673409700393677, -0.060156434774398804, -0.010151425376534462, 0.09550673514604568, -0.08319920301437378, 0.048856139183044434, 0.07468824833631516, -0.01950058713555336, 0.05372466519474983, -0.11716536432504654, -0.2690386474132538, 0.023945249617099762, 0.027653370052576065, -0.0441947840154171, 0.07253700494766235, 0.145015150308609, 0.00042942073196172714, 0.05244648456573486, 0.061493102461099625, -0.05709811672568321, -0.17804701626300812, -0.19115881621837616, -0.0384756401181221, -0.11082857847213745, -0.023826930671930313, -0.10639674216508865, 0.04148538038134575, -0.02072913944721222, 0.05925795063376427, -0.09639845043420792, 0.12447383254766464, 0.06843417137861252, -0.11577396094799042, 0.05810433253645897, -0.008805959485471249, 0.048459235578775406, -0.07387776672840118, 0.08210063725709915, -0.10721065104007721, -0.026499031111598015, -0.016933415085077286, 0.03711435943841934, -0.05858420953154564, 0.0011270071845501661, -0.10357651859521866, -0.06808403134346008, -0.056935109198093414, 0.09072309732437134, -0.024477418512105942, 0.03998230770230293, -0.014557241462171078, -0.061277762055397034, -0.025446701794862747, 0.2273169606924057, -0.018587565049529076, -0.043939489871263504, -0.0661960318684578, 0.2851298749446869, -0.06544138491153717, 0.07253559678792953, -0.032977886497974396, -0.001274158013984561, -0.07127615064382553, 0.2931469976902008, 0.36314713954925537, -0.14264726638793945, 0.011796033009886742, -0.018389053642749786, 0.03556118905544281, 0.07535336911678314, 0.18024654686450958, 0.07291083037853241, 0.3107033371925354, -0.04080776497721672, -0.01225926261395216, -0.10546047985553741, -0.03835856914520264, 0.014304363168776035, 0.02947218343615532, 0.08378855139017105, -0.05586446449160576, -0.06808875501155853, 0.1039084792137146, -0.26703301072120667, -0.02056516334414482, -0.16380304098129272, -0.061613935977220535, -0.04166705906391144, 0.0007227687747217715, 0.07237391918897629, 0.028740311041474342, 0.05115301162004471, -0.039005450904369354, -0.047156207263469696, 0.057444483041763306, -0.02154913917183876, -0.12674635648727417, 0.0002557095722295344, 0.143532857298851, -0.07906237244606018, -0.0018181405030190945, 0.0032308290246874094, 0.060348983854055405, 0.044118594378232956, 0.04119637981057167, -0.10164451599121094, 0.02608482725918293, 0.01246592216193676, -0.03363148868083954, -0.028164468705654144, 0.008156497962772846, 0.07835527509450912, -0.21697945892810822, 0.0020338469184935093, -0.14078554511070251, 0.011757226660847664, -0.07641053944826126, -0.006896127946674824, -0.08222074061632156, 0.03242125362157822, 0.004625517874956131, 0.1118803396821022, 0.11125602573156357, -0.03202005848288536, -0.0006144302315078676, -0.06265610456466675, 0.06727221608161926, -0.06884542852640152, -0.02960195019841194, -0.025150567293167114, -0.09257599711418152, -0.09335606545209885, 0.09815482050180435, -0.022339481860399246, -0.1427105814218521, 0.007601875811815262, -0.09401176869869232, -0.04369132220745087, -0.021486658602952957, 0.09382037818431854, 0.11086808145046234, 0.09180203825235367, -0.007599277421832085, 0.047748953104019165, 0.03120456263422966, 0.07436691224575043, -0.12886843085289001, -0.10148585587739944 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1064019238279495680/-EPf-JLO_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">🧛 Harbo Chomps 🧛</div> <div style="text-align: center; font-size: 14px;">@harbogomps</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from 🧛 Harbo Chomps 🧛. | Data | 🧛 Harbo Chomps 🧛 | | --- | --- | | Tweets downloaded | 515 | | Retweets | 189 | | Short tweets | 92 | | Tweets kept | 234 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/ao36t1el/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @harbogomps's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/3b5rtb6c) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/3b5rtb6c/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/harbogomps') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/harbogomps/1635628393154/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/harbogomps
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT Harbo Chomps @harbogomps I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from Harbo Chomps . Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @harbogomps's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1244133811278852097/rxL5LqpS_400x400.png&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">hardmaru</div> <div style="text-align: center; font-size: 14px;">@hardmaru</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from hardmaru. | Data | hardmaru | | --- | --- | | Tweets downloaded | 3244 | | Retweets | 587 | | Short tweets | 246 | | Tweets kept | 2411 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/3rlh65t6/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hardmaru's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/3bwhefwe) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/3bwhefwe/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hardmaru') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hardmaru/1620671462182/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hardmaru
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT hardmaru @hardmaru I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from hardmaru. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hardmaru's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1320617833106006017/Quwape-G_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">Harish Garg</div> <div style="text-align: center; font-size: 14px;">@harishkgarg</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from Harish Garg. | Data | Harish Garg | | --- | --- | | Tweets downloaded | 3246 | | Retweets | 328 | | Short tweets | 366 | | Tweets kept | 2552 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/2tl8dz55/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @harishkgarg's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/3853sjv0) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/3853sjv0/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/harishkgarg') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/harishkgarg/1625312937710/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/harishkgarg
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT Harish Garg @harishkgarg I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from Harish Garg. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @harishkgarg's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1365265161108488199/iHbOA3pa_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">OldOldboy</div> <div style="text-align: center; font-size: 14px;">@harmchair</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from OldOldboy. | Data | OldOldboy | | --- | --- | | Tweets downloaded | 2989 | | Retweets | 1909 | | Short tweets | 119 | | Tweets kept | 961 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/7np3bbn9/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @harmchair's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/2maud2dh) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/2maud2dh/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/harmchair') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/harmchair/1621198521107/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/harmchair
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT OldOldboy @harmchair I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from OldOldboy. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @harmchair's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1363281981971308548/ufu9ek3-_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">harry 🤖 AI Bot </div> <div style="font-size: 15px">@harry bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@harry's tweets](https://twitter.com/harry). | Data | Quantity | | --- | --- | | Tweets downloaded | 2383 | | Retweets | 35 | | Short tweets | 690 | | Tweets kept | 1658 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/32hcrpfq/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @harry's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/v0ipqdm7) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/v0ipqdm7/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/harry') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/harry/1616700847153/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/harry
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
harry AI Bot @harry bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @harry's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @harry's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1408854540930146309/ZQgGrcsH_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">averageharry 😼</div> <div style="text-align: center; font-size: 14px;">@harrybutaverage</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from averageharry 😼. | Data | averageharry 😼 | | --- | --- | | Tweets downloaded | 3249 | | Retweets | 28 | | Short tweets | 1190 | | Tweets kept | 2031 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/zwpsqrg6/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @harrybutaverage's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/os07864o) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/os07864o/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/harrybutaverage') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/harrybutaverage/1625263201502/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/harrybutaverage
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT averageharry @harrybutaverage I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from averageharry . Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @harrybutaverage's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1207601173756174336/djTLQauA_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">hasanabi</div> <div style="text-align: center; font-size: 14px;">@hasanthehun</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from hasanabi. | Data | hasanabi | | --- | --- | | Tweets downloaded | 3231 | | Retweets | 619 | | Short tweets | 202 | | Tweets kept | 2410 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/6atkn60d/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hasanthehun's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/2a6l3ych) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/2a6l3ych/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hasanthehun') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://github.com/borisdayma/huggingtweets/blob/master/img/logo.png?raw=true", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hasanthehun
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT hasanabi @hasanthehun I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from hasanabi. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hasanthehun's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
null
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/922396157493383169/LLKd_U72_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">橋下徹</div> <div style="text-align: center; font-size: 14px;">@hashimoto_lo</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from 橋下徹. | Data | 橋下徹 | | --- | --- | | Tweets downloaded | 3247 | | Retweets | 759 | | Short tweets | 137 | | Tweets kept | 2351 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/1wi9n714/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hashimoto_lo's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/240mb7l6) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/240mb7l6/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hashimoto_lo') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "http://www.huggingtweets.com/hashimoto_lo/1643506993033/predictions.png", "widget": [{"text": "My dream is"}]}
null
huggingtweets/hashimoto_lo
[ "huggingtweets", "en", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #huggingtweets #en #region-us
AI BOT 橋下徹 @hashimoto\_lo I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from 橋下徹. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hashimoto\_lo's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#huggingtweets #en #region-us \n" ]
[ 13 ]
[ "passage: TAGS\n#huggingtweets #en #region-us \n" ]
[ 0.06862699240446091, -0.10726692527532578, -0.010401245206594467, -0.06321337819099426, 0.08621513843536377, 0.10232581198215485, 0.027164114639163017, 0.0985046774148941, 0.13242372870445251, 0.0191008560359478, 0.14544545114040375, -0.02377847209572792, -0.059302784502506256, 0.05649275705218315, 0.013633874244987965, -0.17248544096946716, 0.03670460358262062, -0.015605193562805653, 0.026972385123372078, 0.09363088756799698, 0.021145451813936234, 0.020441683009266853, 0.0902106985449791, -0.08021455258131027, -0.1398237943649292, 0.10563203692436218, 0.07052353769540787, 0.034161631017923355, 0.12517565488815308, -0.03278198093175888, 0.135564923286438, -0.03551725298166275, -0.11858534812927246, -0.20654892921447754, 0.05404523015022278, 0.03882395476102829, -0.061763372272253036, 0.03536899387836456, 0.07869033515453339, -0.15818791091442108, 0.11689841002225876, 0.05036948621273041, 0.036260005086660385, 0.13469965755939484, -0.22866027057170868, -0.07904011756181717, -0.04602409526705742, -0.07707278430461884, 0.10253201425075531, 0.00002397169555479195, 0.009154452942311764, 0.2598714828491211, -0.1161927580833435, 0.01967962086200714, 0.12730732560157776, -0.17017430067062378, 0.01806800253689289, 0.019835561513900757, 0.08412177860736847, 0.09157158434391022, 0.011509888805449009, 0.10852907598018646, 0.0707852765917778, -0.0101486686617136, -0.1360270082950592, -0.04950163885951042, -0.009859689511358738, 0.0853719413280487, -0.019690826535224915, -0.05046107620000839, 0.17664311826229095, 0.058999452739953995, 0.010314999148249626, 0.05766073241829872, -0.05329941213130951, 0.02751901187002659, 0.006196039728820324, -0.020993784070014954, 0.018363341689109802, 0.14473530650138855, 0.01760878413915634, -0.05249418318271637, -0.13410590589046478, 0.07058989256620407, -0.18945349752902985, 0.05454850196838379, -0.03698793053627014, 0.06096231937408447, -0.258131206035614, -0.01568523794412613, -0.14322851598262787, 0.012979496270418167, 0.09651564061641693, -0.0732380747795105, 0.03764953464269638, -0.012448606081306934, -0.021792607381939888, 0.11723798513412476, 0.10804640501737595, 0.1609608232975006, -0.04320541396737099, -0.00869857519865036, -0.0065362900495529175, 0.07786694169044495, 0.09295008331537247, -0.07654742151498795, 0.07032539695501328, -0.0564110204577446, -0.04492797330021858, -0.21906612813472748, 0.0008765582460910082, -0.030310221016407013, 0.04600467532873154, -0.01984437182545662, -0.13926945626735687, 0.0724203959107399, 0.028251374140381813, 0.005772269796580076, -0.10059063136577606, 0.07909262925386429, -0.02333223633468151, -0.002073736162856221, -0.04910872504115105, -0.043945688754320145, 0.01002762746065855, 0.056697506457567215, -0.10170026123523712, 0.03527959808707237, 0.07433190196752548, 0.07395917177200317, -0.16713260114192963, -0.013432089239358902, 0.04245100915431976, 0.042995184659957886, 0.062102507799863815, -0.17763984203338623, 0.0445265956223011, -0.15618294477462769, -0.0354858934879303, -0.00870739296078682, -0.05047069117426872, 0.01355440728366375, 0.06636203825473785, -0.027222590520977974, 0.11233346909284592, 0.01111317053437233, 0.005379479844123125, -0.12045124173164368, -0.06185131147503853, 0.06667035073041916, -0.02369607612490654, 0.0511794276535511, -0.14944906532764435, 0.007654519751667976, -0.180730938911438, 0.07720775902271271, 0.016102097928524017, 0.026931453496217728, -0.026627028360962868, 0.3114912509918213, 0.030569342896342278, 0.10634830594062805, -0.22846999764442444, 0.05719701200723648, -0.023560456931591034, 0.28067547082901, -0.1065937876701355, -0.12447673082351685, 0.18407796323299408, -0.06522929668426514, -0.12309088557958603, 0.12086527794599533, 0.03488042950630188, 0.10873927175998688, 0.09767720103263855, 0.3835752606391907, -0.10195262730121613, -0.08146942406892776, 0.03636458143591881, 0.1353151649236679, -0.25350436568260193, 0.02267700806260109, 0.025416342541575432, -0.08121002465486526, -0.1325274407863617, -0.01190396212041378, 0.2367665320634842, 0.14369091391563416, -0.11477484554052353, -0.02520707994699478, 0.020064817741513252, -0.016537215560674667, 0.05091886967420578, 0.017726575955748558, -0.0013406252255663276, -0.21194274723529816, 0.02760516293346882, -0.124215267598629, 0.03498653694987297, 0.13977846503257751, 0.04585346579551697, -0.07557849586009979, -0.040234941989183426, 0.08057703077793121, -0.01661347784101963, -0.02294166386127472, -0.16728036105632782, -0.06481286138296127, 0.1498730629682541, 0.1340765357017517, 0.013609949499368668, 0.09578457474708557, -0.12554091215133667, 0.002669427078217268, 0.013310762122273445, 0.13174262642860413, -0.007498446851968765, -0.04374158754944801, -0.022994134575128555, 0.1897602677345276, -0.09339086711406708, 0.07846151292324066, -0.05010027438402176, 0.001938516623340547, 0.10550153255462646, 0.060221847146749496, 0.0357060432434082, -0.013110004365444183, 0.03018314018845558, 0.005840349942445755, 0.018294237554073334, -0.06945645809173584, 0.12700411677360535, -0.011421116068959236, -0.11599461734294891, 0.22505104541778564, -0.12537546455860138, 0.1077398806810379, 0.1641158014535904, -0.15259717404842377, -0.09176535904407501, -0.05451177433133125, -0.05600990727543831, -0.04779776558279991, 0.12334655225276947, -0.07418269664049149, -0.04411538317799568, -0.044391438364982605, -0.0011415277840569615, 0.017120715230703354, -0.07650631666183472, 0.019346725195646286, -0.08435862511396408, -0.19952528178691864, 0.0862463191151619, -0.048986468464136124, -0.15294228494167328, 0.12348992377519608, 0.3562917411327362, 0.1481546014547348, 0.23727938532829285, -0.044758010655641556, 0.017626842483878136, 0.026004822924733162, -0.0384499691426754, -0.045703496783971786, 0.004267206881195307, -0.1251041442155838, -0.0365486666560173, -0.0015835420927032828, 0.004274635575711727, 0.10203591734170914, -0.036351218819618225, -0.14834646880626678, 0.02251344546675682, 0.0014692102558910847, -0.08886273205280304, 0.10843174904584885, -0.027543172240257263, 0.07448233664035797, 0.032922543585300446, 0.03858240693807602, 0.05848072096705437, 0.002110567642375827, -0.11813180893659592, 0.006854616105556488, -0.22355535626411438, -0.2711923122406006, -0.09768662601709366, -0.08925486356019974, 0.03989091515541077, 0.041187938302755356, 0.051699478179216385, -0.18302172422409058, 0.03948478400707245, 0.003198040649294853, 0.10697315633296967, -0.06025030463933945, 0.04016250744462013, -0.06218542903661728, 0.039252810180187225, -0.026844710111618042, -0.036029912531375885, -0.0012391663622111082, -0.0970999225974083, -0.10773636400699615, 0.11318950355052948, -0.12849527597427368, 0.08555713295936584, 0.14430534839630127, 0.03159665688872337, 0.02274978905916214, -0.06426727026700974, 0.08118022978305817, -0.10766161978244781, -0.02468705177307129, -0.020854998379945755, -0.012126539833843708, 0.08575579524040222, 0.08519800752401352, 0.02189561165869236, -0.15146233141422272, 0.0591089241206646, 0.048329032957553864, -0.13319815695285797, -0.13935089111328125, -0.09409863501787186, 5.991143439132429e-7, 0.2797071039676666, -0.002339477650821209, 0.023659970611333847, 0.14668741822242737, -0.005060214549303055, 0.07289005070924759, -0.20045752823352814, -0.05620472878217697, 0.018704742193222046, -0.004834607243537903, -0.022842248901724815, -0.008816422894597054, -0.08761768788099289, 0.006385814398527145, 0.2184516340494156, -0.004971520509570837, -0.12653324007987976, 0.13448448479175568, 0.0007297596894204617, 0.0038821459747850895, 0.1352946162223816, 0.08407466113567352, 0.06298195570707321, -0.07155273109674454, -0.03599351644515991, -0.043885089457035065, 0.03730371966958046, 0.0007575029158033431, 0.01575464755296707, 0.03105960786342621, -0.22486138343811035, -0.016705667600035667, -0.2129937708377838, 0.10879084467887878, -0.04748593270778656, 0.13807302713394165, 0.0026444492395967245, 0.04441913589835167, 0.10906891524791718, -0.005030614789575338, -0.011882180348038673, 0.10863572359085083, 0.1383846551179886, -0.03977278992533684, 0.07618652284145355, 0.10392951220273972, 0.08540554344654083, 0.10903793573379517, 0.06167486310005188, -0.08492720872163773, -0.021127475425601006, -0.053188424557447433, 0.04624804109334946, -0.20438914000988007, 0.16149352490901947, -0.038125935941934586, -0.14207349717617035, 0.04278627038002014, -0.1275794953107834, 0.047217957675457, 0.02532968670129776, 0.05271764472126961, 0.09215202182531357, 0.04994546249508858, -0.08136153966188431, -0.047041911631822586, -0.009494416415691376, 0.20800645649433136, -0.04930320754647255, -0.10087979584932327, -0.015097087249159813, 0.02010302059352398, -0.0005327145336195827, 0.11119779944419861, 0.02447434328496456, -0.04610208794474602, -0.08690282702445984, 0.03303453326225281, -0.03661355376243591, 0.08763010054826736, 0.09737902879714966, -0.02698802947998047, -0.05718262121081352, 0.1235092505812645, 0.06895491480827332, -0.1251404732465744, -0.14452208578586578, 0.015589582733809948, -0.007731362245976925, -0.003907877020537853, -0.03874189779162407, -0.17162851989269257, -0.09909867495298386, -0.1906745284795761, 0.12603247165679932, -0.02163488231599331, 0.030842140316963196, -0.054747339338064194, 0.230157732963562, -0.009354943409562111, 0.009969666600227356, -0.03108477219939232, -0.013541288673877716, -0.012568399310112, -0.05987691134214401, 0.17130033671855927, -0.1589484065771103, -0.04290361702442169, 0.08715757727622986, 0.03195212036371231, 0.022129757329821587, -0.07987111806869507, -0.03223046660423279, 0.13554437458515167, 0.35851117968559265, 0.0012283556861802936, 0.2099764049053192, 0.2042219638824463, -0.05234047770500183, -0.21901710331439972, -0.09460500627756119, -0.2348603904247284, -0.07078184932470322, 0.18186907470226288, -0.07664406299591064, 0.0643012747168541, 0.12657569348812103, 0.02973685972392559, 0.20995554327964783, -0.12457278370857239, -0.044523198157548904, 0.04818897321820259, -0.08845916390419006, 0.6114599704742432, -0.061698999255895615, -0.10802759975194931, -0.01825915277004242, -0.15282532572746277, 0.2387581467628479, -0.05154171586036682, 0.013269291259348392, 0.03874128684401512, 0.1005491390824318, 0.05056579411029816, 0.05772935599088669, 0.19292889535427094, 0.02319646254181862, 0.058188073337078094, -0.13999897241592407, -0.1260925531387329, 0.10026954114437103, -0.0229759830981493, -0.08925508707761765, -0.017890285700559616, -0.02936561405658722, -0.19818171858787537, 0.05141949653625488, -0.1515510380268097, 0.05321922153234482, 0.056100163608789444, -0.02688506431877613, -0.039986640214920044, -0.002744022523984313, -0.09706974029541016, -0.04741370305418968, 0.13259218633174896, -0.08547285199165344, 0.21339218318462372, -0.08619081228971481, 0.062479544430971146, -0.1132776141166687, 0.09236282855272293, -0.05286029726266861, -0.06702502816915512, 0.020908309146761894, -0.17462939023971558, 0.04489823803305626, 0.05220690742135048, -0.02032669261097908, 0.0322212353348732, 0.03294215351343155, -0.09376110136508942, 0.04418664798140526, 0.21215519309043884, -0.20752321183681488, -0.10239655524492264, -0.032411038875579834, -0.18671981990337372, 0.19688937067985535, 0.007372637744992971, 0.09758103638887405, 0.1276085525751114, -0.02415306493639946, 0.05030597373843193, 0.02030378393828869, -0.13016556203365326, -0.019506316632032394, 0.02471683733165264, -0.04843040183186531, -0.07417872548103333, 0.16410969197750092, 0.003125022863969207, -0.17150603234767914, -0.0407160185277462, 0.33249592781066895, -0.06882669776678085, -0.021546127274632454, -0.15638038516044617, 0.06429695338010788, -0.03442022576928139, 0.031490225344896317, 0.08549392223358154, 0.021496908739209175, -0.01903107762336731, 0.243308424949646, -0.0012956787832081318, 0.20592927932739258, 0.08698756247758865, 0.02289220504462719, 0.06535287946462631, -0.1015409454703331, 0.003708842908963561, -0.019963471218943596, -0.06298170238733292, -0.025758573785424232, -0.03440312668681145, 0.12883484363555908, -0.08708789944648743, -0.08515651524066925, -0.18808633089065552, -0.00678415410220623, -0.045131731778383255, -0.14115594327449799, -0.0497581847012043, -0.09431345015764236, 0.08569512516260147, -0.01951061561703682, -0.0172411035746336, -0.13612228631973267, -0.0707104429602623, 0.06029095500707626, 0.08022084087133408, 0.056907493621110916, -0.02142960950732231, -0.005597047973424196, 0.202048197388649, 0.0028164649847894907, 0.19390766322612762, 0.20113031566143036, -0.061333067715168, 0.1175730898976326, -0.2240629494190216, -0.10820194333791733, 0.09987909346818924, -0.1013496071100235, 0.02835783362388611, 0.2528587877750397, -0.06944312155246735, -0.07183004170656204, 0.023082008585333824, 0.0819302424788475, 0.0695723444223404, -0.06962034851312637, 0.13945920765399933, 0.11123763024806976, -0.24406595528125763, -0.029789475724101067, -0.22912776470184326, 0.10466330498456955, 0.026690829545259476, 0.05581321194767952, 0.030828367918729782, 0.025830436497926712, 0.02255583181977272, -0.011340123601257801, 0.06775032728910446, -0.11715590953826904, 0.07594534754753113, -0.006308197975158691, -0.0009284214465878904, 0.020968755707144737, 0.15689221024513245, -0.06443887948989868, -0.07048701494932175, 0.06289470195770264, 0.19063851237297058, -0.0735047310590744, -0.017401263117790222, 0.032150279730558395, 0.07059439271688461, -0.10505253821611404, -0.21839775145053864, 0.07302705198526382, -0.03587287291884422, -0.19983458518981934, 0.04817315936088562, -0.014539380557835102, 0.08539435267448425, 0.02739058807492256, 0.003347607795149088, 0.06624280661344528, 0.08827538043260574, -0.12586817145347595, -0.0005465050344355404, -0.06126665323972702, 0.040976397693157196, 0.1078856810927391, 0.16836385428905487, 0.012725654058158398, 0.0595620721578598, -0.091275155544281, 0.034217145293951035, -0.04657742381095886, -0.0708092749118805, 0.03863679990172386, -0.17856280505657196, 0.032593801617622375, -0.003704255213961005, -0.02675822377204895, 0.14164531230926514, 0.08683508634567261, -0.023918727412819862, 0.011150016449391842, -0.09630842506885529, -0.10818011313676834, 0.0868176817893982, -0.0019381127785891294, 0.03816099464893341, 0.013883480802178383, -0.11632172018289566, -0.13214722275733948, 0.006640009116381407, -0.10724195092916489, 0.014073909260332584, -0.015860673040151596, -0.027241721749305725, -0.2226807177066803, -0.07590645551681519, -0.021995285525918007, 0.0819355845451355, -0.15479689836502075, -0.07021456956863403, 0.03772281855344772, 0.07989605516195297, 0.010158415883779526, 0.18902714550495148, 0.04430154338479042, 0.06323259323835373, -0.021539712324738503, -0.03570494055747986, -0.1826917976140976, 0.08993129432201385, -0.10861438512802124, -0.0066994610242545605, -0.11356137692928314, 0.20738758146762848, 0.22770558297634125, -0.08759643882513046, -0.011138317175209522, -0.12471133470535278, 0.05767860263586044, 0.08991259336471558, 0.13322731852531433, 0.04955065995454788, 0.2215200960636139, -0.053830891847610474, -0.00016504255472682416, 0.07554452121257782, 0.005791462026536465, -0.03607539087533951, -0.0017499765381217003, 0.008505070582032204, 0.0027193266432732344, -0.05850288271903992, 0.12590549886226654, -0.22327828407287598, 0.09907186031341553, 0.011895917356014252, -0.216516375541687, 0.031215285882353783, -0.07893261313438416, 0.06044485419988632, -0.01862451434135437, 0.17547211050987244, -0.0153840696439147, -0.13527122139930725, -0.1813722848892212, 0.07340814918279648, -0.3564576506614685, -0.16425473988056183, 0.04304486885666847, -0.09049394726753235, 0.024793129414319992, -0.04938378185033798, -0.12449127435684204, -0.007948409765958786, 0.016860339790582657, -0.004252702929079533, -0.008621524088084698, 0.03531380742788315, 0.07221032679080963, -0.19206926226615906, 0.0369514636695385, 0.04588461294770241, -0.18126672506332397, 0.06043267995119095, -0.12337397038936615, -0.036451902240514755, 0.07750041782855988, 0.0004883371293544769, 0.037772078067064285, 0.06528574228286743, -0.12008415907621384, 0.058698076754808426, -0.008846146054565907, -0.0022655015345662832, 0.03388579562306404, -0.040226709097623825, -0.0697655975818634, 0.037853848189115524, -0.16796614229679108, -0.0534391887485981, 0.07193274796009064, -0.07208003848791122, 0.17316791415214539, -0.08974345773458481, -0.052828285843133926, 0.02319551631808281, -0.11347067356109619, 0.09840789437294006, -0.11054719239473343, 0.1294768750667572, 0.13222336769104004, 0.03777482360601425, 0.04262825846672058, -0.22420136630535126, 0.17175815999507904, 0.10596811026334763, 0.03310242295265198, -0.06821910291910172 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1322114245467598850/pz_yTcye_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">東浩紀 Hiroki Azuma</div> <div style="text-align: center; font-size: 14px;">@hazuma</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from 東浩紀 Hiroki Azuma. | Data | 東浩紀 Hiroki Azuma | | --- | --- | | Tweets downloaded | 3230 | | Retweets | 1492 | | Short tweets | 1560 | | Tweets kept | 178 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/1ig7ewkg/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hazuma's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/1uix46e5) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/1uix46e5/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hazuma') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "http://www.huggingtweets.com/hazuma/1642065783369/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hazuma
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT 東浩紀 Hiroki Azuma @hazuma I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from 東浩紀 Hiroki Azuma. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hazuma's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1303502800333266945/T5d2aMh8_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">✦HotBloodedHeroine✦ @ PSO2 🤖 AI Bot </div> <div style="font-size: 15px">@hbloodedheroine bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@hbloodedheroine's tweets](https://twitter.com/hbloodedheroine). | Data | Quantity | | --- | --- | | Tweets downloaded | 3238 | | Retweets | 406 | | Short tweets | 1019 | | Tweets kept | 1813 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/4tvl495z/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hbloodedheroine's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/gx30ahu9) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/gx30ahu9/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hbloodedheroine') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hbloodedheroine/1617913229876/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hbloodedheroine
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
HotBloodedHeroine @ PSO2 AI Bot @hbloodedheroine bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @hbloodedheroine's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hbloodedheroine's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/752645987496321024/aqxY2YGQ_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">jan Misali 🤖 AI Bot </div> <div style="font-size: 15px">@hbmmaster bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@hbmmaster's tweets](https://twitter.com/hbmmaster). | Data | Quantity | | --- | --- | | Tweets downloaded | 3184 | | Retweets | 1022 | | Short tweets | 670 | | Tweets kept | 1492 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/142ozrj7/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hbmmaster's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/1lbhksi6) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/1lbhksi6/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hbmmaster') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hbmmaster/1617594144648/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hbmmaster
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
jan Misali AI Bot @hbmmaster bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @hbmmaster's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hbmmaster's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1402282381696962566/VwcMz_xV_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">Hbomberguy</div> <div style="text-align: center; font-size: 14px;">@hbomberguy</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from Hbomberguy. | Data | Hbomberguy | | --- | --- | | Tweets downloaded | 3187 | | Retweets | 1450 | | Short tweets | 298 | | Tweets kept | 1439 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/2gtfmb7p/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hbomberguy's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/3h5vtwqy) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/3h5vtwqy/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hbomberguy') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://github.com/borisdayma/huggingtweets/blob/master/img/logo.png?raw=true", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hbomberguy
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT Hbomberguy @hbomberguy I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from Hbomberguy. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hbomberguy's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1264932555335360515/Ga3y8vi1_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">ashley 🤖 AI Bot </div> <div style="font-size: 15px">@heartswellzz bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@heartswellzz's tweets](https://twitter.com/heartswellzz). | Data | Quantity | | --- | --- | | Tweets downloaded | 1190 | | Retweets | 167 | | Short tweets | 121 | | Tweets kept | 902 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/24x0r300/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @heartswellzz's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/2mz3zqs4) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/2mz3zqs4/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/heartswellzz') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/heartswellzz/1616679682815/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/heartswellzz
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
ashley AI Bot @heartswellzz bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @heartswellzz's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @heartswellzz's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1376723854031212546/NlgDr-ha_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">heather (TRUE)² 🍁 ✝ ⚜ 🤖 AI Bot </div> <div style="font-size: 15px">@heatherchungus bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@heatherchungus's tweets](https://twitter.com/heatherchungus). | Data | Quantity | | --- | --- | | Tweets downloaded | 3232 | | Retweets | 84 | | Short tweets | 1058 | | Tweets kept | 2090 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/3kha682j/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @heatherchungus's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/duib9vv9) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/duib9vv9/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/heatherchungus') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/heatherchungus/1617912956937/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/heatherchungus
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
heather (TRUE)² AI Bot @heatherchungus bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @heatherchungus's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @heatherchungus's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1391998269430116355/O5NJQwYC_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">Ashley 🌻</div> <div style="text-align: center; font-size: 14px;">@heaven_ley</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from Ashley 🌻. | Data | Ashley 🌻 | | --- | --- | | Tweets downloaded | 3084 | | Retweets | 563 | | Short tweets | 101 | | Tweets kept | 2420 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/h9ex5ztp/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @heaven_ley's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/2rr1mtsr) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/2rr1mtsr/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/heaven_ley') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/heaven_ley/1621532679555/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/heaven_ley
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT Ashley @heaven\_ley I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from Ashley . Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @heaven\_ley's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1449201367080386564/GllCx8JB_400x400.jpg&#39;)"> </div> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1461790972392656898/e1248oRI_400x400.jpg&#39;)"> </div> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1457045233783701504/fnjAg6lH_400x400.jpg&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI CYBORG 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">Sinner & Hσɳҽყ & Anthropos & VacuumF</div> <div style="text-align: center; font-size: 14px;">@hel_ql-shahdashrf_-sinnerslayerr-witheredstrings</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from Sinner & Hσɳҽყ & Anthropos & VacuumF. | Data | Sinner | Hσɳҽყ | Anthropos | VacuumF | | --- | --- | --- | --- | --- | | Tweets downloaded | 403 | 3240 | 1088 | 379 | | Retweets | 296 | 135 | 376 | 1 | | Short tweets | 3 | 734 | 77 | 12 | | Tweets kept | 104 | 2371 | 635 | 366 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/2fhsvt3r/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hel_ql-shahdashrf_-sinnerslayerr-witheredstrings's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/2kjvpfsa) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/2kjvpfsa/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hel_ql-shahdashrf_-sinnerslayerr-witheredstrings') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hel_ql-shahdashrf_-sinnerslayerr-witheredstrings/1638286821619/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hel_ql-shahdashrf_-sinnerslayerr-witheredstrings
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI CYBORG Sinner & Hσɳҽყ & Anthropos & VacuumF @hel\_ql-shahdashrf\_-sinnerslayerr-witheredstrings I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from Sinner & Hσɳҽყ & Anthropos & VacuumF. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hel\_ql-shahdashrf\_-sinnerslayerr-witheredstrings's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1297708843338792961/PDO5peCc_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Hælviðja 🤖 AI Bot </div> <div style="font-size: 15px">@helvegyr bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@helvegyr's tweets](https://twitter.com/helvegyr). | Data | Quantity | | --- | --- | | Tweets downloaded | 918 | | Retweets | 247 | | Short tweets | 128 | | Tweets kept | 543 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/2yujyvhf/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @helvegyr's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/2b3wkz7n) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/2b3wkz7n/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/helvegyr') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/helvegyr/1617747025824/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/helvegyr
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
Hælviðja AI Bot @helvegyr bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @helvegyr's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @helvegyr's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<link rel="stylesheet" href="https://unpkg.com/@tailwindcss/[email protected]/dist/typography.min.css"> <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/808229217662095360/BD1WatwO_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Henning Lobin 🤖 AI Bot </div> <div style="font-size: 15px; color: #657786">@henninglobin bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://app.wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-model-to-generate-tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@henninglobin's tweets](https://twitter.com/henninglobin). <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>928</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>147</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>15</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>766</td> </tr> </tbody> </table> [Explore the data](https://app.wandb.ai/wandb/huggingtweets/runs/admmx96c/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @henninglobin's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://app.wandb.ai/wandb/huggingtweets/runs/f3vjyvag) for full transparency and reproducibility. At the end of training, [the final model](https://app.wandb.ai/wandb/huggingtweets/runs/f3vjyvag/artifacts) is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/henninglobin'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) <section class='prose'> For more details, visit the project repository. </section> [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets) <!--- random size file -->
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/henninglobin/1603610850998/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/henninglobin
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
<link rel="stylesheet" href="URL <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('URL </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Henning Lobin AI Bot </div> <div style="font-size: 15px; color: #657786">@henninglobin bot</div> </div> I was made with huggingtweets. Create your own bot based on your favorite user with the demo! ## How does it work? The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. ## Training data The model was trained on @henninglobin's tweets. <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>928</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>147</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>15</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>766</td> </tr> </tbody> </table> Explore the data, which is tracked with W&B artifacts at every step of the pipeline. ## Training procedure The model is based on a pre-trained GPT-2 which is fine-tuned on @henninglobin's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/henninglobin'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> ![Follow](URL <section class='prose'> For more details, visit the project repository. </section> ![GitHub stars](URL
[ "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @henninglobin's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>928</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>147</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>15</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>766</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @henninglobin's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/henninglobin'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @henninglobin's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>928</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>147</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>15</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>766</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @henninglobin's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/henninglobin'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ 57, 34, 429, 76, 9, 168, 48, 58 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report." ]
[ -0.04084593802690506, 0.035596683621406555, -0.0024457171093672514, 0.04662978649139404, 0.10991521924734116, 0.022836215794086456, 0.12812861800193787, 0.0424627922475338, -0.03746044635772705, -0.03597303107380867, 0.22758877277374268, 0.1009177565574646, 0.03089720755815506, 0.17962171137332916, 0.010350672528147697, -0.2703946828842163, 0.015237200073897839, 0.0647135004401207, -0.07720091193914413, 0.15752871334552765, 0.05562684312462807, -0.049801189452409744, 0.08214939385652542, 0.032038331031799316, -0.165513277053833, -0.004831716418266296, -0.02072383277118206, -0.04504403471946716, 0.09232694655656815, 0.06956911832094193, 0.07011176645755768, 0.034282486885786057, 0.017851393669843674, -0.0714372918009758, 0.06354191154241562, 0.014452377334237099, -0.02349161170423031, 0.13615116477012634, 0.028668763116002083, -0.0002947957837022841, 0.1798527091741562, 0.11815319955348969, 0.016722125932574272, 0.016196802258491516, -0.1166125237941742, -0.0606788769364357, 0.012365915812551975, 0.04470464214682579, 0.10005760192871094, 0.058856748044490814, 0.01943058706820011, 0.13215520977973938, -0.1164829432964325, 0.08512931317090988, 0.1828341782093048, -0.24191047251224518, -0.006823094096034765, 0.061043880879879, 0.08518847078084946, 0.02852868288755417, -0.0027500083670020103, 0.050437480211257935, 0.06484624743461609, 0.021347152069211006, 0.03636380657553673, -0.0638979896903038, 0.05009674280881882, 0.011186900548636913, -0.10215270519256592, -0.07660897821187973, 0.2294245809316635, -0.0602995827794075, 0.004886541981250048, -0.028186868876218796, -0.08490151911973953, -0.06026294082403183, -0.012795685790479183, -0.05738116800785065, -0.01700775697827339, 0.034475523978471756, 0.0214629378169775, -0.10922146588563919, -0.07046429812908173, -0.1146778091788292, -0.09578189998865128, 0.17879855632781982, -0.02900231070816517, 0.08940442651510239, -0.2603394091129303, 0.2254239320755005, 0.07019765675067902, -0.11909467726945877, 0.04757627099752426, -0.11814092099666595, 0.08530338853597641, 0.02207805961370468, 0.041434839367866516, 0.07761925458908081, 0.04161522537469864, 0.11940909177064896, 0.03257475048303604, -0.00314142694696784, 0.05456724017858505, 0.07224375009536743, 0.0941813513636589, 0.1230122447013855, -0.07287998497486115, -0.07873915135860443, 0.08034131675958633, -0.04709449037909508, -0.11787727475166321, -0.06861002743244171, -0.1452382206916809, -0.004202034790068865, -0.0335184708237648, 0.07922724634408951, 0.05637102574110031, 0.09526676684617996, -0.01433930266648531, -0.05777551606297493, 0.04157217592000961, -0.06985066086053848, 0.019995175302028656, -0.011708668433129787, -0.060763102024793625, 0.13121068477630615, 0.04688004031777382, -0.014275136403739452, -0.08673419058322906, 0.07951672375202179, -0.1204570084810257, -0.07978847622871399, -0.08239417523145676, -0.05098734796047211, -0.007686138618737459, -0.11281027644872665, 0.049203939735889435, -0.11458899080753326, -0.22705501317977905, -0.01313747651875019, 0.04550096020102501, -0.016462473198771477, -0.03707117214798927, -0.040630146861076355, -0.009473399259150028, 0.04880702868103981, -0.042894408106803894, 0.039052072912454605, -0.05325083062052727, 0.050018906593322754, -0.09618895500898361, 0.051321301609277725, -0.10470817238092422, 0.041251372545957565, -0.09671807289123535, 0.07595963031053543, 0.0017866486450657248, 0.0454767569899559, 0.010063555091619492, 0.08985432982444763, -0.03214199095964432, -0.044836416840553284, -0.07869677990674973, 0.026561295613646507, 0.02284199558198452, 0.20134314894676208, -0.10196486860513687, -0.0819794163107872, 0.12614667415618896, -0.07252102345228195, -0.1288122832775116, 0.0409054271876812, -0.02831157296895981, 0.17958028614521027, 0.07370224595069885, 0.16096454858779907, 0.12039237469434738, -0.03798284754157066, 0.1263856589794159, 0.14821170270442963, -0.1269366294145584, -0.004153167363256216, 0.039416827261447906, 0.014042570255696774, -0.20559121668338776, 0.04052022844552994, -0.01946125738322735, 0.06584736704826355, -0.10201486945152283, -0.00946728140115738, 0.0031527038663625717, -0.02320384420454502, 0.0023026331327855587, -0.0472555048763752, 0.061078161001205444, 0.038737643510103226, -0.022763127461075783, 0.029682613909244537, 0.06635552644729614, -0.026160234585404396, -0.00823320634663105, -0.04484035447239876, 0.10009831935167313, -0.07260703295469284, 0.06797321885824203, -0.13160665333271027, -0.003086181590333581, -0.012450510635972023, 0.0972909927368164, 0.03811546042561531, 0.10621625185012817, 0.05470104143023491, 0.03126294165849686, 0.07701993733644485, -0.02846951223909855, 0.0746634304523468, 0.01002051867544651, -0.0850096121430397, -0.1272277683019638, 0.015217535197734833, -0.10649837553501129, -0.004191380459815264, -0.08523700386285782, -0.0015737697249278426, -0.12802091240882874, 0.05826076865196228, -0.016465239226818085, 0.0539434514939785, -0.055182818323373795, -0.04337453469634056, -0.044662054628133774, -0.022007398307323456, 0.0482511967420578, -0.033139705657958984, -0.06687536835670471, 0.16832175850868225, -0.15395553410053253, 0.2592274248600006, 0.1313537061214447, -0.0889907032251358, 0.002020547864958644, -0.07812081277370453, -0.04194976016879082, -0.012868959456682205, 0.07527336478233337, -0.03700125962495804, 0.15495356917381287, -0.03386903926730156, 0.17382068932056427, -0.099679134786129, -0.0334031768143177, 0.02144831046462059, -0.10981054604053497, 0.057656705379486084, 0.08051177859306335, 0.04427298903465271, -0.159133642911911, 0.08837400376796722, 0.19756358861923218, 0.05472150072455406, 0.20321963727474213, -0.006869805511087179, -0.06112205237150192, -0.05358194187283516, -0.0808696523308754, -0.052568696439266205, 0.056259434670209885, -0.09903126955032349, -0.004000484477728605, 0.06423190236091614, 0.08783505111932755, 0.11237549781799316, -0.10904275625944138, -0.046180129051208496, 0.05125856027007103, -0.004819708876311779, -0.051060013473033905, 0.07006146013736725, -0.0659489631652832, 0.13217470049858093, 0.014598124660551548, -0.07049204409122467, 0.0036125897895544767, -0.004913401324301958, -0.11891388893127441, 0.20653130114078522, -0.08047540485858917, -0.27306002378463745, -0.16792123019695282, -0.16288253664970398, 0.07165426760911942, 0.038431257009506226, 0.033738572150468826, -0.08776884526014328, -0.020982403308153152, 0.004409478977322578, 0.11553267389535904, -0.09698133170604706, 0.013121976517140865, 0.008159824647009373, -0.018650712445378304, -0.07579360157251358, -0.09033482521772385, -0.0241270512342453, -0.02461584471166134, 0.020020704716444016, 0.03998296707868576, -0.11154978722333908, 0.06758414953947067, 0.2167699933052063, -0.015538511797785759, 0.06870997697114944, 0.00025148785789497197, 0.26176807284355164, -0.08426473289728165, 0.040830448269844055, 0.11926601082086563, -0.08760137856006622, 0.05199241638183594, 0.07132956385612488, 0.03210015222430229, -0.014074578881263733, 0.016441889107227325, -0.11233895272016525, -0.12864868342876434, -0.1923626959323883, -0.06961654871702194, -0.028241310268640518, 0.13464264571666718, 0.031150488182902336, 0.04321796074509621, 0.10346641391515732, 0.07471037656068802, 0.06701335310935974, 0.03259968012571335, -0.0005120337591506541, 0.0647427961230278, 0.024594781920313835, -0.05812343955039978, 0.054217349737882614, -0.04845457896590233, -0.0797470211982727, 0.08279551565647125, -0.011098933406174183, 0.0927528515458107, 0.06928195804357529, 0.02340286411345005, 0.018686039373278618, 0.04218229651451111, 0.15593960881233215, 0.22442668676376343, -0.012412761338055134, -0.041085485368967056, -0.05078154057264328, -0.040494389832019806, -0.01600850187242031, 0.015044075436890125, -0.05785144492983818, -0.033252447843551636, -0.0728597640991211, -0.015066487714648247, 0.011195010505616665, 0.015441779047250748, 0.07578693330287933, -0.22024130821228027, -0.038240667432546616, 0.042616840451955795, -0.013794191181659698, -0.10639895498752594, 0.05872863903641701, 0.016779562458395958, -0.17391349375247955, -0.07854076474905014, -0.016605399549007416, 0.1603294163942337, -0.030760308727622032, 0.0619782954454422, 0.005449770484119654, 0.02271227352321148, -0.013140208087861538, 0.11191333085298538, -0.27346712350845337, 0.1954270750284195, 0.001131516881287098, -0.04876048117876053, -0.016439033672213554, -0.04243995249271393, 0.0009058643481694162, 0.14556926488876343, 0.09718295931816101, 0.0028763783629983664, 0.0669604167342186, -0.07678256928920746, -0.11943262070417404, 0.05284353718161583, 0.08068333566188812, -0.07738065719604492, 0.029960619285702705, -0.029798466712236404, 0.027152907103300095, -0.007555682212114334, -0.030231619253754616, 0.002119861776009202, -0.11661309748888016, 0.02936525270342827, -0.08075195550918579, 0.06012337654829025, 0.02433968149125576, -0.02529163844883442, -0.012048180215060711, 0.1316436529159546, -0.013300766237080097, -0.08264251798391342, -0.08976204693317413, -0.02328740619122982, 0.09523095935583115, -0.05599937587976456, 0.03358715400099754, -0.08175740391016006, -0.04073614999651909, 0.005860272329300642, -0.16970814764499664, 0.06983034312725067, -0.10846570879220963, -0.09971687942743301, -0.050264790654182434, 0.15346404910087585, 0.013677009381353855, 0.025709833949804306, 0.03220117464661598, -0.04211581498384476, -0.18150363862514496, -0.15989434719085693, -0.007562890648841858, 0.0717545747756958, -0.04433317109942436, 0.03638565540313721, 0.007171243894845247, 0.10013602674007416, 0.004198792390525341, 0.07230839878320694, 0.2026015669107437, 0.16423118114471436, -0.08760133385658264, 0.17723721265792847, 0.16266676783561707, -0.12243213504552841, -0.2722402811050415, -0.09522651135921478, -0.05925937369465828, 0.03468820080161095, 0.02297091670334339, -0.13072867691516876, 0.06184706464409828, -0.011241482570767403, -0.004976592492312193, 0.13391432166099548, -0.2790721356868744, -0.07025358080863953, 0.13864430785179138, -0.012145180255174637, 0.2560276985168457, -0.042459286749362946, -0.08155408501625061, -0.060940731316804886, -0.2339130938053131, 0.1595010906457901, -0.12908293306827545, 0.030256805941462517, -0.06380902975797653, 0.1317017376422882, 0.04475972056388855, -0.051817599684000015, 0.13714583218097687, -0.0770399421453476, 0.03692200407385826, -0.1231972947716713, -0.01437266543507576, 0.05212629213929176, -0.014681367203593254, 0.10554680228233337, -0.053141020238399506, 0.10400939732789993, -0.12106935679912567, -0.052672889083623886, -0.054288461804389954, 0.017598338425159454, -0.023758167400956154, -0.05668776109814644, -0.039483629167079926, -0.05230721831321716, 0.00942184031009674, -0.024894973263144493, -0.008981208316981792, -0.02189256064593792, 0.08200293034315109, 0.10853444039821625, 0.1416669338941574, -0.04508063197135925, -0.02666328102350235, -0.029412275180220604, -0.043095141649246216, 0.07755832374095917, -0.1675589680671692, -0.020979177206754684, 0.15767353773117065, 0.008264025673270226, 0.08081416040658951, 0.07994852215051651, -0.043529048562049866, -0.04116993397474289, 0.09435915946960449, -0.23738352954387665, -0.032961416989564896, -0.07289689034223557, -0.032304681837558746, 0.05143286660313606, 0.06389017403125763, 0.11233682930469513, -0.055076416581869125, -0.015500548295676708, 0.038369257003068924, -0.013473432511091232, -0.10457789897918701, 0.12659704685211182, 0.07594829052686691, 0.04931824654340744, -0.13000807166099548, 0.03979043290019035, -0.02080575004220009, -0.024042857810854912, -0.009190280921757221, 0.09610513597726822, -0.13868926465511322, -0.061987441033124924, 0.01100219041109085, 0.1624082624912262, -0.08940329402685165, -0.054934311658144, -0.00678250240162015, -0.07782098650932312, 0.06215988099575043, 0.06269455701112747, 0.039047662168741226, 0.10006190836429596, -0.08492296934127808, -0.004345493856817484, -0.04427671059966087, 0.02742549031972885, 0.04004936292767525, -0.01839151792228222, -0.11644710600376129, 0.050648268312215805, 0.01261399406939745, 0.21786263585090637, -0.12195943295955658, -0.07748695462942123, -0.13975368440151215, 0.03579137846827507, -0.1441981941461563, -0.02782432734966278, -0.09455464035272598, -0.0542730838060379, -0.024786408990621567, -0.02354593575000763, -0.05044161155819893, -0.03595460206270218, -0.06568260490894318, 0.04963921010494232, -0.01889806240797043, -0.04201965406537056, -0.018809955567121506, 0.04780932888388634, 0.10624072700738907, -0.0022816911805421114, 0.11582330614328384, 0.10476028919219971, -0.06149300932884216, 0.06964143365621567, -0.08975338935852051, 0.049342647194862366, 0.010800108313560486, -0.03639211133122444, 0.07890737056732178, 0.033158838748931885, 0.011678727343678474, -0.02014644630253315, -0.05248590186238289, 0.015699470415711403, 0.019494805485010147, -0.09001129865646362, 0.04338252544403076, 0.03427375108003616, -0.07128193974494934, -0.06945458799600601, -0.02831537090241909, -0.04915383830666542, 0.10966338962316513, 0.09227382391691208, 0.01580313965678215, 0.11524862796068192, -0.09982031583786011, -0.0043287696316838264, 0.0288130734115839, -0.08074736595153809, -0.01706261746585369, -0.10044533759355545, -0.01304725930094719, -0.02274717018008232, 0.2554529011249542, 0.12089171260595322, -0.025309232994914055, -0.03230812028050423, 0.07114472985267639, 0.08105676621198654, -0.0211230106651783, 0.14824873208999634, 0.03444083034992218, -0.0007331980159506202, -0.1400776505470276, 0.10673409700393677, -0.060156434774398804, -0.010151425376534462, 0.09550673514604568, -0.08319920301437378, 0.048856139183044434, 0.07468824833631516, -0.01950058713555336, 0.05372466519474983, -0.11716536432504654, -0.2690386474132538, 0.023945249617099762, 0.027653370052576065, -0.0441947840154171, 0.07253700494766235, 0.145015150308609, 0.00042942073196172714, 0.05244648456573486, 0.061493102461099625, -0.05709811672568321, -0.17804701626300812, -0.19115881621837616, -0.0384756401181221, -0.11082857847213745, -0.023826930671930313, -0.10639674216508865, 0.04148538038134575, -0.02072913944721222, 0.05925795063376427, -0.09639845043420792, 0.12447383254766464, 0.06843417137861252, -0.11577396094799042, 0.05810433253645897, -0.008805959485471249, 0.048459235578775406, -0.07387776672840118, 0.08210063725709915, -0.10721065104007721, -0.026499031111598015, -0.016933415085077286, 0.03711435943841934, -0.05858420953154564, 0.0011270071845501661, -0.10357651859521866, -0.06808403134346008, -0.056935109198093414, 0.09072309732437134, -0.024477418512105942, 0.03998230770230293, -0.014557241462171078, -0.061277762055397034, -0.025446701794862747, 0.2273169606924057, -0.018587565049529076, -0.043939489871263504, -0.0661960318684578, 0.2851298749446869, -0.06544138491153717, 0.07253559678792953, -0.032977886497974396, -0.001274158013984561, -0.07127615064382553, 0.2931469976902008, 0.36314713954925537, -0.14264726638793945, 0.011796033009886742, -0.018389053642749786, 0.03556118905544281, 0.07535336911678314, 0.18024654686450958, 0.07291083037853241, 0.3107033371925354, -0.04080776497721672, -0.01225926261395216, -0.10546047985553741, -0.03835856914520264, 0.014304363168776035, 0.02947218343615532, 0.08378855139017105, -0.05586446449160576, -0.06808875501155853, 0.1039084792137146, -0.26703301072120667, -0.02056516334414482, -0.16380304098129272, -0.061613935977220535, -0.04166705906391144, 0.0007227687747217715, 0.07237391918897629, 0.028740311041474342, 0.05115301162004471, -0.039005450904369354, -0.047156207263469696, 0.057444483041763306, -0.02154913917183876, -0.12674635648727417, 0.0002557095722295344, 0.143532857298851, -0.07906237244606018, -0.0018181405030190945, 0.0032308290246874094, 0.060348983854055405, 0.044118594378232956, 0.04119637981057167, -0.10164451599121094, 0.02608482725918293, 0.01246592216193676, -0.03363148868083954, -0.028164468705654144, 0.008156497962772846, 0.07835527509450912, -0.21697945892810822, 0.0020338469184935093, -0.14078554511070251, 0.011757226660847664, -0.07641053944826126, -0.006896127946674824, -0.08222074061632156, 0.03242125362157822, 0.004625517874956131, 0.1118803396821022, 0.11125602573156357, -0.03202005848288536, -0.0006144302315078676, -0.06265610456466675, 0.06727221608161926, -0.06884542852640152, -0.02960195019841194, -0.025150567293167114, -0.09257599711418152, -0.09335606545209885, 0.09815482050180435, -0.022339481860399246, -0.1427105814218521, 0.007601875811815262, -0.09401176869869232, -0.04369132220745087, -0.021486658602952957, 0.09382037818431854, 0.11086808145046234, 0.09180203825235367, -0.007599277421832085, 0.047748953104019165, 0.03120456263422966, 0.07436691224575043, -0.12886843085289001, -0.10148585587739944 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1326613852264554505/oUJcW0om_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Harry 🤖 AI Bot </div> <div style="font-size: 15px">@henry_krahn bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@henry_krahn's tweets](https://twitter.com/henry_krahn). | Data | Quantity | | --- | --- | | Tweets downloaded | 265 | | Retweets | 33 | | Short tweets | 17 | | Tweets kept | 215 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/24hpwp4r/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @henry_krahn's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/33v3umfr) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/33v3umfr/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/henry_krahn') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/henry_krahn/1616683594066/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/henry_krahn
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
Harry AI Bot @henry\_krahn bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @henry\_krahn's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @henry\_krahn's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1359326778456563721/_7YgZYJo_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Fraser Allison 🤖 AI Bot </div> <div style="font-size: 15px">@heresathought bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@heresathought's tweets](https://twitter.com/heresathought). | Data | Quantity | | --- | --- | | Tweets downloaded | 3214 | | Retweets | 508 | | Short tweets | 137 | | Tweets kept | 2569 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/do20a494/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @heresathought's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/ko0kukna) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/ko0kukna/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/heresathought') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/heresathought/1616728810188/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/heresathought
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
Fraser Allison AI Bot @heresathought bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @heresathought's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @heresathought's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1233052680190296064/zcbLKhOR_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">Claire</div> <div style="text-align: center; font-size: 14px;">@herialc</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from Claire. | Data | Claire | | --- | --- | | Tweets downloaded | 539 | | Retweets | 219 | | Short tweets | 27 | | Tweets kept | 293 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/1bop9va7/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @herialc's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/10twdkn3) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/10twdkn3/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/herialc') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://github.com/borisdayma/huggingtweets/blob/master/img/logo.png?raw=true", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/herialc
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT Claire @herialc I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from Claire. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @herialc's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1364393973331021830/i7JjvUhX_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">ash 🫀</div> <div style="text-align: center; font-size: 14px;">@hey_ash21</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from ash 🫀. | Data | ash 🫀 | | --- | --- | | Tweets downloaded | 3242 | | Retweets | 193 | | Short tweets | 132 | | Tweets kept | 2917 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/2tujmcza/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hey_ash21's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/3pwdhn6q) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/3pwdhn6q/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hey_ash21') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "http://www.huggingtweets.com/hey_ash21/1640924344980/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hey_ash21
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT ash @hey\_ash21 I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from ash . Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hey\_ash21's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1416877970132672512/942NnDJA_400x400.png&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">Arav</div> <div style="text-align: center; font-size: 14px;">@heyarav</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from Arav. | Data | Arav | | --- | --- | | Tweets downloaded | 3246 | | Retweets | 411 | | Short tweets | 786 | | Tweets kept | 2049 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/3n441q7z/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @heyarav's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/2s8u4vm6) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/2s8u4vm6/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/heyarav') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://github.com/borisdayma/huggingtweets/blob/master/img/logo.png?raw=true", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/heyarav
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT Arav @heyarav I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from Arav. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @heyarav's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1365367887003721736/UxsAH5mJ_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Emily A. Heydon 🤖 AI Bot </div> <div style="font-size: 15px">@heydonemily bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@heydonemily's tweets](https://twitter.com/heydonemily). | Data | Quantity | | --- | --- | | Tweets downloaded | 3212 | | Retweets | 1146 | | Short tweets | 91 | | Tweets kept | 1975 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/xiwslr2e/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @heydonemily's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/1uwkh4ab) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/1uwkh4ab/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/heydonemily') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/heydonemily/1616700113796/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/heydonemily
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
Emily A. Heydon AI Bot @heydonemily bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @heydonemily's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @heydonemily's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1344095133348876294/ehT8yba2_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">i'm alice 🤖 AI Bot </div> <div style="font-size: 15px">@heyimheroic bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://app.wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-model-to-generate-tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@heyimheroic's tweets](https://twitter.com/heyimheroic). | Data | Quantity | | --- | --- | | Tweets downloaded | 3205 | | Retweets | 250 | | Short tweets | 317 | | Tweets kept | 2638 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/1oztcf0g/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @heyimheroic's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/3t922fvw) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/3t922fvw/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/heyimheroic') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/heyimheroic/1614216737501/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/heyimheroic
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
i'm alice AI Bot @heyimheroic bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @heyimheroic's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @heyimheroic's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1383312391962718211/ppzzt2V__400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">HIDEKI NAGANUMA|CEO OF FUNKY FRESH BEATS 🤖 AI Bot </div> <div style="font-size: 15px">@hideki_naganuma bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@hideki_naganuma's tweets](https://twitter.com/hideki_naganuma). | Data | Quantity | | --- | --- | | Tweets downloaded | 3227 | | Retweets | 1186 | | Short tweets | 208 | | Tweets kept | 1833 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/1766c7eg/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hideki_naganuma's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/13aynk8e) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/13aynk8e/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hideki_naganuma') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hideki_naganuma/1619655487401/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hideki_naganuma
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
HIDEKI NAGANUMA|CEO OF FUNKY FRESH BEATS AI Bot @hideki\_naganuma bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @hideki\_naganuma's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hideki\_naganuma's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/914211724412166144/Bf2Yij9b_400x400.jpg&#39;)"> </div> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1409559937445990403/9bkJBvX9_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI CYBORG 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">HIDEO_KOJIMA & jamar "mad dog of ny" majima 🇵🇸</div> <div style="text-align: center; font-size: 14px;">@hideo_kojima_en-rxmaybike</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from HIDEO_KOJIMA & jamar "mad dog of ny" majima 🇵🇸. | Data | HIDEO_KOJIMA | jamar "mad dog of ny" majima 🇵🇸 | | --- | --- | --- | | Tweets downloaded | 3228 | 3166 | | Retweets | 2656 | 1404 | | Short tweets | 29 | 432 | | Tweets kept | 543 | 1330 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/3nd0jitx/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hideo_kojima_en-rxmaybike's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/3digtvss) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/3digtvss/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hideo_kojima_en-rxmaybike') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hideo_kojima_en-rxmaybike/1630345229826/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hideo_kojima_en-rxmaybike
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI CYBORG HIDEO\_KOJIMA & jamar "mad dog of ny" majima 🇵🇸 @hideo\_kojima\_en-rxmaybike I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from HIDEO\_KOJIMA & jamar "mad dog of ny" majima 🇵🇸. Data: Tweets downloaded, HIDEO\_KOJIMA: 3228, jamar "mad dog of ny" majima 🇵🇸: 3166 Data: Retweets, HIDEO\_KOJIMA: 2656, jamar "mad dog of ny" majima 🇵🇸: 1404 Data: Short tweets, HIDEO\_KOJIMA: 29, jamar "mad dog of ny" majima 🇵🇸: 432 Data: Tweets kept, HIDEO\_KOJIMA: 543, jamar "mad dog of ny" majima 🇵🇸: 1330 Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hideo\_kojima\_en-rxmaybike's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/561876312/mv_scaled1_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">michael vassar 🤖 AI Bot </div> <div style="font-size: 15px">@hifrommichaelv bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@hifrommichaelv's tweets](https://twitter.com/hifrommichaelv). | Data | Quantity | | --- | --- | | Tweets downloaded | 3214 | | Retweets | 1354 | | Short tweets | 75 | | Tweets kept | 1785 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/m2fhvkor/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hifrommichaelv's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/28nb63ty) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/28nb63ty/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hifrommichaelv') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hifrommichaelv/1617763230584/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hifrommichaelv
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
michael vassar AI Bot @hifrommichaelv bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @hifrommichaelv's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hifrommichaelv's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1270094301104680960/HEi6H4Pw_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Hanne Oberman 🤖 AI Bot </div> <div style="font-size: 15px">@hioberman bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@hioberman's tweets](https://twitter.com/hioberman). | Data | Quantity | | --- | --- | | Tweets downloaded | 981 | | Retweets | 429 | | Short tweets | 94 | | Tweets kept | 458 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/dpu5ftug/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hioberman's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/2ilrmnch) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/2ilrmnch/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hioberman') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hioberman/1616690765391/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hioberman
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
Hanne Oberman AI Bot @hioberman bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @hioberman's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hioberman's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/646595746905620480/oeKI14gB_400x400.png&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">ひろゆき, Hiroyuki Nishimura</div> <div style="text-align: center; font-size: 14px;">@hirox246</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from ひろゆき, Hiroyuki Nishimura. | Data | ひろゆき, Hiroyuki Nishimura | | --- | --- | | Tweets downloaded | 3246 | | Retweets | 288 | | Short tweets | 2002 | | Tweets kept | 956 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/1fs862rv/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hirox246's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/ktc28kc0) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/ktc28kc0/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hirox246') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "http://www.huggingtweets.com/hirox246/1648473171015/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hirox246
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT ひろゆき, Hiroyuki Nishimura @hirox246 I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from ひろゆき, Hiroyuki Nishimura. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hirox246's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<link rel="stylesheet" href="https://unpkg.com/@tailwindcss/[email protected]/dist/typography.min.css"> <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1323296791060729856/knWLBrkl_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">HISTORY 🤖 AI Bot </div> <div style="font-size: 15px; color: #657786">@history bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://app.wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-model-to-generate-tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@history's tweets](https://twitter.com/history). <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>3204</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>202</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>83</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>2919</td> </tr> </tbody> </table> [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/2p707drp/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @history's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/dvbo5tvs) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/dvbo5tvs/artifacts) is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/history'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) <section class='prose'> For more details, visit the project repository. </section> [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets) <!--- random size file -->
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/history/1605859215676/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/history
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
<link rel="stylesheet" href="URL <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('URL </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">HISTORY AI Bot </div> <div style="font-size: 15px; color: #657786">@history bot</div> </div> I was made with huggingtweets. Create your own bot based on your favorite user with the demo! ## How does it work? The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. ## Training data The model was trained on @history's tweets. <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>3204</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>202</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>83</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>2919</td> </tr> </tbody> </table> Explore the data, which is tracked with W&B artifacts at every step of the pipeline. ## Training procedure The model is based on a pre-trained GPT-2 which is fine-tuned on @history's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/history'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> ![Follow](URL <section class='prose'> For more details, visit the project repository. </section> ![GitHub stars](URL
[ "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @history's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>3204</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>202</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>83</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>2919</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @history's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/history'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @history's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>3204</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>202</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>83</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>2919</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @history's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/history'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ 57, 34, 428, 74, 9, 166, 48, 58 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report." ]
[ -0.04084593802690506, 0.035596683621406555, -0.0024457171093672514, 0.04662978649139404, 0.10991521924734116, 0.022836215794086456, 0.12812861800193787, 0.0424627922475338, -0.03746044635772705, -0.03597303107380867, 0.22758877277374268, 0.1009177565574646, 0.03089720755815506, 0.17962171137332916, 0.010350672528147697, -0.2703946828842163, 0.015237200073897839, 0.0647135004401207, -0.07720091193914413, 0.15752871334552765, 0.05562684312462807, -0.049801189452409744, 0.08214939385652542, 0.032038331031799316, -0.165513277053833, -0.004831716418266296, -0.02072383277118206, -0.04504403471946716, 0.09232694655656815, 0.06956911832094193, 0.07011176645755768, 0.034282486885786057, 0.017851393669843674, -0.0714372918009758, 0.06354191154241562, 0.014452377334237099, -0.02349161170423031, 0.13615116477012634, 0.028668763116002083, -0.0002947957837022841, 0.1798527091741562, 0.11815319955348969, 0.016722125932574272, 0.016196802258491516, -0.1166125237941742, -0.0606788769364357, 0.012365915812551975, 0.04470464214682579, 0.10005760192871094, 0.058856748044490814, 0.01943058706820011, 0.13215520977973938, -0.1164829432964325, 0.08512931317090988, 0.1828341782093048, -0.24191047251224518, -0.006823094096034765, 0.061043880879879, 0.08518847078084946, 0.02852868288755417, -0.0027500083670020103, 0.050437480211257935, 0.06484624743461609, 0.021347152069211006, 0.03636380657553673, -0.0638979896903038, 0.05009674280881882, 0.011186900548636913, -0.10215270519256592, -0.07660897821187973, 0.2294245809316635, -0.0602995827794075, 0.004886541981250048, -0.028186868876218796, -0.08490151911973953, -0.06026294082403183, -0.012795685790479183, -0.05738116800785065, -0.01700775697827339, 0.034475523978471756, 0.0214629378169775, -0.10922146588563919, -0.07046429812908173, -0.1146778091788292, -0.09578189998865128, 0.17879855632781982, -0.02900231070816517, 0.08940442651510239, -0.2603394091129303, 0.2254239320755005, 0.07019765675067902, -0.11909467726945877, 0.04757627099752426, -0.11814092099666595, 0.08530338853597641, 0.02207805961370468, 0.041434839367866516, 0.07761925458908081, 0.04161522537469864, 0.11940909177064896, 0.03257475048303604, -0.00314142694696784, 0.05456724017858505, 0.07224375009536743, 0.0941813513636589, 0.1230122447013855, -0.07287998497486115, -0.07873915135860443, 0.08034131675958633, -0.04709449037909508, -0.11787727475166321, -0.06861002743244171, -0.1452382206916809, -0.004202034790068865, -0.0335184708237648, 0.07922724634408951, 0.05637102574110031, 0.09526676684617996, -0.01433930266648531, -0.05777551606297493, 0.04157217592000961, -0.06985066086053848, 0.019995175302028656, -0.011708668433129787, -0.060763102024793625, 0.13121068477630615, 0.04688004031777382, -0.014275136403739452, -0.08673419058322906, 0.07951672375202179, -0.1204570084810257, -0.07978847622871399, -0.08239417523145676, -0.05098734796047211, -0.007686138618737459, -0.11281027644872665, 0.049203939735889435, -0.11458899080753326, -0.22705501317977905, -0.01313747651875019, 0.04550096020102501, -0.016462473198771477, -0.03707117214798927, -0.040630146861076355, -0.009473399259150028, 0.04880702868103981, -0.042894408106803894, 0.039052072912454605, -0.05325083062052727, 0.050018906593322754, -0.09618895500898361, 0.051321301609277725, -0.10470817238092422, 0.041251372545957565, -0.09671807289123535, 0.07595963031053543, 0.0017866486450657248, 0.0454767569899559, 0.010063555091619492, 0.08985432982444763, -0.03214199095964432, -0.044836416840553284, -0.07869677990674973, 0.026561295613646507, 0.02284199558198452, 0.20134314894676208, -0.10196486860513687, -0.0819794163107872, 0.12614667415618896, -0.07252102345228195, -0.1288122832775116, 0.0409054271876812, -0.02831157296895981, 0.17958028614521027, 0.07370224595069885, 0.16096454858779907, 0.12039237469434738, -0.03798284754157066, 0.1263856589794159, 0.14821170270442963, -0.1269366294145584, -0.004153167363256216, 0.039416827261447906, 0.014042570255696774, -0.20559121668338776, 0.04052022844552994, -0.01946125738322735, 0.06584736704826355, -0.10201486945152283, -0.00946728140115738, 0.0031527038663625717, -0.02320384420454502, 0.0023026331327855587, -0.0472555048763752, 0.061078161001205444, 0.038737643510103226, -0.022763127461075783, 0.029682613909244537, 0.06635552644729614, -0.026160234585404396, -0.00823320634663105, -0.04484035447239876, 0.10009831935167313, -0.07260703295469284, 0.06797321885824203, -0.13160665333271027, -0.003086181590333581, -0.012450510635972023, 0.0972909927368164, 0.03811546042561531, 0.10621625185012817, 0.05470104143023491, 0.03126294165849686, 0.07701993733644485, -0.02846951223909855, 0.0746634304523468, 0.01002051867544651, -0.0850096121430397, -0.1272277683019638, 0.015217535197734833, -0.10649837553501129, -0.004191380459815264, -0.08523700386285782, -0.0015737697249278426, -0.12802091240882874, 0.05826076865196228, -0.016465239226818085, 0.0539434514939785, -0.055182818323373795, -0.04337453469634056, -0.044662054628133774, -0.022007398307323456, 0.0482511967420578, -0.033139705657958984, -0.06687536835670471, 0.16832175850868225, -0.15395553410053253, 0.2592274248600006, 0.1313537061214447, -0.0889907032251358, 0.002020547864958644, -0.07812081277370453, -0.04194976016879082, -0.012868959456682205, 0.07527336478233337, -0.03700125962495804, 0.15495356917381287, -0.03386903926730156, 0.17382068932056427, -0.099679134786129, -0.0334031768143177, 0.02144831046462059, -0.10981054604053497, 0.057656705379486084, 0.08051177859306335, 0.04427298903465271, -0.159133642911911, 0.08837400376796722, 0.19756358861923218, 0.05472150072455406, 0.20321963727474213, -0.006869805511087179, -0.06112205237150192, -0.05358194187283516, -0.0808696523308754, -0.052568696439266205, 0.056259434670209885, -0.09903126955032349, -0.004000484477728605, 0.06423190236091614, 0.08783505111932755, 0.11237549781799316, -0.10904275625944138, -0.046180129051208496, 0.05125856027007103, -0.004819708876311779, -0.051060013473033905, 0.07006146013736725, -0.0659489631652832, 0.13217470049858093, 0.014598124660551548, -0.07049204409122467, 0.0036125897895544767, -0.004913401324301958, -0.11891388893127441, 0.20653130114078522, -0.08047540485858917, -0.27306002378463745, -0.16792123019695282, -0.16288253664970398, 0.07165426760911942, 0.038431257009506226, 0.033738572150468826, -0.08776884526014328, -0.020982403308153152, 0.004409478977322578, 0.11553267389535904, -0.09698133170604706, 0.013121976517140865, 0.008159824647009373, -0.018650712445378304, -0.07579360157251358, -0.09033482521772385, -0.0241270512342453, -0.02461584471166134, 0.020020704716444016, 0.03998296707868576, -0.11154978722333908, 0.06758414953947067, 0.2167699933052063, -0.015538511797785759, 0.06870997697114944, 0.00025148785789497197, 0.26176807284355164, -0.08426473289728165, 0.040830448269844055, 0.11926601082086563, -0.08760137856006622, 0.05199241638183594, 0.07132956385612488, 0.03210015222430229, -0.014074578881263733, 0.016441889107227325, -0.11233895272016525, -0.12864868342876434, -0.1923626959323883, -0.06961654871702194, -0.028241310268640518, 0.13464264571666718, 0.031150488182902336, 0.04321796074509621, 0.10346641391515732, 0.07471037656068802, 0.06701335310935974, 0.03259968012571335, -0.0005120337591506541, 0.0647427961230278, 0.024594781920313835, -0.05812343955039978, 0.054217349737882614, -0.04845457896590233, -0.0797470211982727, 0.08279551565647125, -0.011098933406174183, 0.0927528515458107, 0.06928195804357529, 0.02340286411345005, 0.018686039373278618, 0.04218229651451111, 0.15593960881233215, 0.22442668676376343, -0.012412761338055134, -0.041085485368967056, -0.05078154057264328, -0.040494389832019806, -0.01600850187242031, 0.015044075436890125, -0.05785144492983818, -0.033252447843551636, -0.0728597640991211, -0.015066487714648247, 0.011195010505616665, 0.015441779047250748, 0.07578693330287933, -0.22024130821228027, -0.038240667432546616, 0.042616840451955795, -0.013794191181659698, -0.10639895498752594, 0.05872863903641701, 0.016779562458395958, -0.17391349375247955, -0.07854076474905014, -0.016605399549007416, 0.1603294163942337, -0.030760308727622032, 0.0619782954454422, 0.005449770484119654, 0.02271227352321148, -0.013140208087861538, 0.11191333085298538, -0.27346712350845337, 0.1954270750284195, 0.001131516881287098, -0.04876048117876053, -0.016439033672213554, -0.04243995249271393, 0.0009058643481694162, 0.14556926488876343, 0.09718295931816101, 0.0028763783629983664, 0.0669604167342186, -0.07678256928920746, -0.11943262070417404, 0.05284353718161583, 0.08068333566188812, -0.07738065719604492, 0.029960619285702705, -0.029798466712236404, 0.027152907103300095, -0.007555682212114334, -0.030231619253754616, 0.002119861776009202, -0.11661309748888016, 0.02936525270342827, -0.08075195550918579, 0.06012337654829025, 0.02433968149125576, -0.02529163844883442, -0.012048180215060711, 0.1316436529159546, -0.013300766237080097, -0.08264251798391342, -0.08976204693317413, -0.02328740619122982, 0.09523095935583115, -0.05599937587976456, 0.03358715400099754, -0.08175740391016006, -0.04073614999651909, 0.005860272329300642, -0.16970814764499664, 0.06983034312725067, -0.10846570879220963, -0.09971687942743301, -0.050264790654182434, 0.15346404910087585, 0.013677009381353855, 0.025709833949804306, 0.03220117464661598, -0.04211581498384476, -0.18150363862514496, -0.15989434719085693, -0.007562890648841858, 0.0717545747756958, -0.04433317109942436, 0.03638565540313721, 0.007171243894845247, 0.10013602674007416, 0.004198792390525341, 0.07230839878320694, 0.2026015669107437, 0.16423118114471436, -0.08760133385658264, 0.17723721265792847, 0.16266676783561707, -0.12243213504552841, -0.2722402811050415, -0.09522651135921478, -0.05925937369465828, 0.03468820080161095, 0.02297091670334339, -0.13072867691516876, 0.06184706464409828, -0.011241482570767403, -0.004976592492312193, 0.13391432166099548, -0.2790721356868744, -0.07025358080863953, 0.13864430785179138, -0.012145180255174637, 0.2560276985168457, -0.042459286749362946, -0.08155408501625061, -0.060940731316804886, -0.2339130938053131, 0.1595010906457901, -0.12908293306827545, 0.030256805941462517, -0.06380902975797653, 0.1317017376422882, 0.04475972056388855, -0.051817599684000015, 0.13714583218097687, -0.0770399421453476, 0.03692200407385826, -0.1231972947716713, -0.01437266543507576, 0.05212629213929176, -0.014681367203593254, 0.10554680228233337, -0.053141020238399506, 0.10400939732789993, -0.12106935679912567, -0.052672889083623886, -0.054288461804389954, 0.017598338425159454, -0.023758167400956154, -0.05668776109814644, -0.039483629167079926, -0.05230721831321716, 0.00942184031009674, -0.024894973263144493, -0.008981208316981792, -0.02189256064593792, 0.08200293034315109, 0.10853444039821625, 0.1416669338941574, -0.04508063197135925, -0.02666328102350235, -0.029412275180220604, -0.043095141649246216, 0.07755832374095917, -0.1675589680671692, -0.020979177206754684, 0.15767353773117065, 0.008264025673270226, 0.08081416040658951, 0.07994852215051651, -0.043529048562049866, -0.04116993397474289, 0.09435915946960449, -0.23738352954387665, -0.032961416989564896, -0.07289689034223557, -0.032304681837558746, 0.05143286660313606, 0.06389017403125763, 0.11233682930469513, -0.055076416581869125, -0.015500548295676708, 0.038369257003068924, -0.013473432511091232, -0.10457789897918701, 0.12659704685211182, 0.07594829052686691, 0.04931824654340744, -0.13000807166099548, 0.03979043290019035, -0.02080575004220009, -0.024042857810854912, -0.009190280921757221, 0.09610513597726822, -0.13868926465511322, -0.061987441033124924, 0.01100219041109085, 0.1624082624912262, -0.08940329402685165, -0.054934311658144, -0.00678250240162015, -0.07782098650932312, 0.06215988099575043, 0.06269455701112747, 0.039047662168741226, 0.10006190836429596, -0.08492296934127808, -0.004345493856817484, -0.04427671059966087, 0.02742549031972885, 0.04004936292767525, -0.01839151792228222, -0.11644710600376129, 0.050648268312215805, 0.01261399406939745, 0.21786263585090637, -0.12195943295955658, -0.07748695462942123, -0.13975368440151215, 0.03579137846827507, -0.1441981941461563, -0.02782432734966278, -0.09455464035272598, -0.0542730838060379, -0.024786408990621567, -0.02354593575000763, -0.05044161155819893, -0.03595460206270218, -0.06568260490894318, 0.04963921010494232, -0.01889806240797043, -0.04201965406537056, -0.018809955567121506, 0.04780932888388634, 0.10624072700738907, -0.0022816911805421114, 0.11582330614328384, 0.10476028919219971, -0.06149300932884216, 0.06964143365621567, -0.08975338935852051, 0.049342647194862366, 0.010800108313560486, -0.03639211133122444, 0.07890737056732178, 0.033158838748931885, 0.011678727343678474, -0.02014644630253315, -0.05248590186238289, 0.015699470415711403, 0.019494805485010147, -0.09001129865646362, 0.04338252544403076, 0.03427375108003616, -0.07128193974494934, -0.06945458799600601, -0.02831537090241909, -0.04915383830666542, 0.10966338962316513, 0.09227382391691208, 0.01580313965678215, 0.11524862796068192, -0.09982031583786011, -0.0043287696316838264, 0.0288130734115839, -0.08074736595153809, -0.01706261746585369, -0.10044533759355545, -0.01304725930094719, -0.02274717018008232, 0.2554529011249542, 0.12089171260595322, -0.025309232994914055, -0.03230812028050423, 0.07114472985267639, 0.08105676621198654, -0.0211230106651783, 0.14824873208999634, 0.03444083034992218, -0.0007331980159506202, -0.1400776505470276, 0.10673409700393677, -0.060156434774398804, -0.010151425376534462, 0.09550673514604568, -0.08319920301437378, 0.048856139183044434, 0.07468824833631516, -0.01950058713555336, 0.05372466519474983, -0.11716536432504654, -0.2690386474132538, 0.023945249617099762, 0.027653370052576065, -0.0441947840154171, 0.07253700494766235, 0.145015150308609, 0.00042942073196172714, 0.05244648456573486, 0.061493102461099625, -0.05709811672568321, -0.17804701626300812, -0.19115881621837616, -0.0384756401181221, -0.11082857847213745, -0.023826930671930313, -0.10639674216508865, 0.04148538038134575, -0.02072913944721222, 0.05925795063376427, -0.09639845043420792, 0.12447383254766464, 0.06843417137861252, -0.11577396094799042, 0.05810433253645897, -0.008805959485471249, 0.048459235578775406, -0.07387776672840118, 0.08210063725709915, -0.10721065104007721, -0.026499031111598015, -0.016933415085077286, 0.03711435943841934, -0.05858420953154564, 0.0011270071845501661, -0.10357651859521866, -0.06808403134346008, -0.056935109198093414, 0.09072309732437134, -0.024477418512105942, 0.03998230770230293, -0.014557241462171078, -0.061277762055397034, -0.025446701794862747, 0.2273169606924057, -0.018587565049529076, -0.043939489871263504, -0.0661960318684578, 0.2851298749446869, -0.06544138491153717, 0.07253559678792953, -0.032977886497974396, -0.001274158013984561, -0.07127615064382553, 0.2931469976902008, 0.36314713954925537, -0.14264726638793945, 0.011796033009886742, -0.018389053642749786, 0.03556118905544281, 0.07535336911678314, 0.18024654686450958, 0.07291083037853241, 0.3107033371925354, -0.04080776497721672, -0.01225926261395216, -0.10546047985553741, -0.03835856914520264, 0.014304363168776035, 0.02947218343615532, 0.08378855139017105, -0.05586446449160576, -0.06808875501155853, 0.1039084792137146, -0.26703301072120667, -0.02056516334414482, -0.16380304098129272, -0.061613935977220535, -0.04166705906391144, 0.0007227687747217715, 0.07237391918897629, 0.028740311041474342, 0.05115301162004471, -0.039005450904369354, -0.047156207263469696, 0.057444483041763306, -0.02154913917183876, -0.12674635648727417, 0.0002557095722295344, 0.143532857298851, -0.07906237244606018, -0.0018181405030190945, 0.0032308290246874094, 0.060348983854055405, 0.044118594378232956, 0.04119637981057167, -0.10164451599121094, 0.02608482725918293, 0.01246592216193676, -0.03363148868083954, -0.028164468705654144, 0.008156497962772846, 0.07835527509450912, -0.21697945892810822, 0.0020338469184935093, -0.14078554511070251, 0.011757226660847664, -0.07641053944826126, -0.006896127946674824, -0.08222074061632156, 0.03242125362157822, 0.004625517874956131, 0.1118803396821022, 0.11125602573156357, -0.03202005848288536, -0.0006144302315078676, -0.06265610456466675, 0.06727221608161926, -0.06884542852640152, -0.02960195019841194, -0.025150567293167114, -0.09257599711418152, -0.09335606545209885, 0.09815482050180435, -0.022339481860399246, -0.1427105814218521, 0.007601875811815262, -0.09401176869869232, -0.04369132220745087, -0.021486658602952957, 0.09382037818431854, 0.11086808145046234, 0.09180203825235367, -0.007599277421832085, 0.047748953104019165, 0.03120456263422966, 0.07436691224575043, -0.12886843085289001, -0.10148585587739944 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1431060400171270149/X2agCkD0_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">(心) !!!Ma-tin Korii!!! Uwa~😃!!!</div> <div style="text-align: center; font-size: 14px;">@histronicmonstr</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from (心) !!!Ma-tin Korii!!! Uwa~😃!!!. | Data | (心) !!!Ma-tin Korii!!! Uwa~😃!!! | | --- | --- | | Tweets downloaded | 3203 | | Retweets | 97 | | Short tweets | 488 | | Tweets kept | 2618 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/1sdp3pm6/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @histronicmonstr's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/2ms6e48p) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/2ms6e48p/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/histronicmonstr') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "http://www.huggingtweets.com/histronicmonstr/1642568219493/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/histronicmonstr
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT (心) !!!Ma-tin Korii!!! Uwa~!!! @histronicmonstr I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from (心) !!!Ma-tin Korii!!! Uwa~!!!. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @histronicmonstr's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1268450577341657088/f3pXCs4x_400x400.png&#39;)"> </div> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1272832254625054720/wG_4whEd_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI CYBORG 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">IO Interactive & HITMAN 3</div> <div style="text-align: center; font-size: 14px;">@hitman-iointeractive</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from IO Interactive & HITMAN 3. | Data | IO Interactive | HITMAN 3 | | --- | --- | --- | | Tweets downloaded | 3249 | 3240 | | Retweets | 96 | 305 | | Short tweets | 232 | 136 | | Tweets kept | 2921 | 2799 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/truv7g0r/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hitman-iointeractive's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/2zg9zf52) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/2zg9zf52/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hitman-iointeractive') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hitman-iointeractive/1625121312417/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hitman-iointeractive
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI CYBORG IO Interactive & HITMAN 3 @hitman-iointeractive I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from IO Interactive & HITMAN 3. Data: Tweets downloaded, IO Interactive: 3249, HITMAN 3: 3240 Data: Retweets, IO Interactive: 96, HITMAN 3: 305 Data: Short tweets, IO Interactive: 232, HITMAN 3: 136 Data: Tweets kept, IO Interactive: 2921, HITMAN 3: 2799 Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hitman-iointeractive's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1291727686100856835/ysb2E82s_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">Hong Kong Baptist University</div> <div style="text-align: center; font-size: 14px;">@hkbaptistu</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from Hong Kong Baptist University. | Data | Hong Kong Baptist University | | --- | --- | | Tweets downloaded | 1160 | | Retweets | 197 | | Short tweets | 18 | | Tweets kept | 945 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/4cn0io1a/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hkbaptistu's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/2jh09nx1) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/2jh09nx1/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hkbaptistu') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hkbaptistu/1635142126298/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hkbaptistu
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT Hong Kong Baptist University @hkbaptistu I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from Hong Kong Baptist University. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hkbaptistu's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1347573675621449728/oPWI_p4T_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Hannah McGregor 🤖 AI Bot </div> <div style="font-size: 15px">@hkpmcgregor bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@hkpmcgregor's tweets](https://twitter.com/hkpmcgregor). | Data | Quantity | | --- | --- | | Tweets downloaded | 3217 | | Retweets | 1100 | | Short tweets | 209 | | Tweets kept | 1908 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/1y9wddzb/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hkpmcgregor's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/1hvz5ytm) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/1hvz5ytm/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hkpmcgregor') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hkpmcgregor/1616779321544/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hkpmcgregor
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
Hannah McGregor AI Bot @hkpmcgregor bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @hkpmcgregor's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hkpmcgregor's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1302727397343744000/YV7WHWZj_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">eric 🤖 AI Bot </div> <div style="font-size: 15px">@hmtodayiwill bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://app.wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-model-to-generate-tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@hmtodayiwill's tweets](https://twitter.com/hmtodayiwill). | Data | Quantity | | --- | --- | | Tweets downloaded | 1431 | | Retweets | 257 | | Short tweets | 367 | | Tweets kept | 807 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/149i7nkl/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hmtodayiwill's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/2ypieu4o) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/2ypieu4o/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hmtodayiwill') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hmtodayiwill/1614138459981/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hmtodayiwill
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
eric AI Bot @hmtodayiwill bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @hmtodayiwill's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hmtodayiwill's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1408277423498698752/aUTHbyW2_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">Moe Chi Minh</div> <div style="text-align: center; font-size: 14px;">@hochimeme1</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from Moe Chi Minh. | Data | Moe Chi Minh | | --- | --- | | Tweets downloaded | 3242 | | Retweets | 55 | | Short tweets | 484 | | Tweets kept | 2703 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/21ljhxlm/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hochimeme1's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/2vctf4ad) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/2vctf4ad/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hochimeme1') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hochimeme1/1625861211819/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hochimeme1
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT Moe Chi Minh @hochimeme1 I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from Moe Chi Minh. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hochimeme1's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1378566172946395136/MdKVnvRJ_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">ridderhoff 🤖 AI Bot </div> <div style="font-size: 15px">@hoffridder bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@hoffridder's tweets](https://twitter.com/hoffridder). | Data | Quantity | | --- | --- | | Tweets downloaded | 3250 | | Retweets | 16 | | Short tweets | 443 | | Tweets kept | 2791 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/1piyzy7v/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hoffridder's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/365i3db0) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/365i3db0/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hoffridder') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hoffridder/1617780877643/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hoffridder
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
ridderhoff AI Bot @hoffridder bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @hoffridder's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hoffridder's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<link rel="stylesheet" href="https://unpkg.com/@tailwindcss/[email protected]/dist/typography.min.css"> <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1048600400843218944/fmCS2j9__400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">grace 🤖 AI Bot </div> <div style="font-size: 15px; color: #657786">@hollagrace_ bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://app.wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-model-to-generate-tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@hollagrace_'s tweets](https://twitter.com/hollagrace_). <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>3047</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>358</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>147</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>2542</td> </tr> </tbody> </table> [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/3c7c1ng9/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hollagrace_'s tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/1bmkelco) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/1bmkelco/artifacts) is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/hollagrace_'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) <section class='prose'> For more details, visit the project repository. </section> [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hollagrace_/1608309713968/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hollagrace_
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
<link rel="stylesheet" href="URL <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('URL </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">grace AI Bot </div> <div style="font-size: 15px; color: #657786">@hollagrace_ bot</div> </div> I was made with huggingtweets. Create your own bot based on your favorite user with the demo! ## How does it work? The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. ## Training data The model was trained on @hollagrace_'s tweets. <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>3047</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>358</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>147</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>2542</td> </tr> </tbody> </table> Explore the data, which is tracked with W&B artifacts at every step of the pipeline. ## Training procedure The model is based on a pre-trained GPT-2 which is fine-tuned on @hollagrace_'s tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/hollagrace_'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> ![Follow](URL <section class='prose'> For more details, visit the project repository. </section> ![GitHub stars](URL
[ "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @hollagrace_'s tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>3047</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>358</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>147</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>2542</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @hollagrace_'s tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/hollagrace_'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @hollagrace_'s tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>3047</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>358</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>147</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>2542</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @hollagrace_'s tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/hollagrace_'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ 57, 34, 430, 76, 9, 168, 48, 58 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report." ]
[ -0.04084593802690506, 0.035596683621406555, -0.0024457171093672514, 0.04662978649139404, 0.10991521924734116, 0.022836215794086456, 0.12812861800193787, 0.0424627922475338, -0.03746044635772705, -0.03597303107380867, 0.22758877277374268, 0.1009177565574646, 0.03089720755815506, 0.17962171137332916, 0.010350672528147697, -0.2703946828842163, 0.015237200073897839, 0.0647135004401207, -0.07720091193914413, 0.15752871334552765, 0.05562684312462807, -0.049801189452409744, 0.08214939385652542, 0.032038331031799316, -0.165513277053833, -0.004831716418266296, -0.02072383277118206, -0.04504403471946716, 0.09232694655656815, 0.06956911832094193, 0.07011176645755768, 0.034282486885786057, 0.017851393669843674, -0.0714372918009758, 0.06354191154241562, 0.014452377334237099, -0.02349161170423031, 0.13615116477012634, 0.028668763116002083, -0.0002947957837022841, 0.1798527091741562, 0.11815319955348969, 0.016722125932574272, 0.016196802258491516, -0.1166125237941742, -0.0606788769364357, 0.012365915812551975, 0.04470464214682579, 0.10005760192871094, 0.058856748044490814, 0.01943058706820011, 0.13215520977973938, -0.1164829432964325, 0.08512931317090988, 0.1828341782093048, -0.24191047251224518, -0.006823094096034765, 0.061043880879879, 0.08518847078084946, 0.02852868288755417, -0.0027500083670020103, 0.050437480211257935, 0.06484624743461609, 0.021347152069211006, 0.03636380657553673, -0.0638979896903038, 0.05009674280881882, 0.011186900548636913, -0.10215270519256592, -0.07660897821187973, 0.2294245809316635, -0.0602995827794075, 0.004886541981250048, -0.028186868876218796, -0.08490151911973953, -0.06026294082403183, -0.012795685790479183, -0.05738116800785065, -0.01700775697827339, 0.034475523978471756, 0.0214629378169775, -0.10922146588563919, -0.07046429812908173, -0.1146778091788292, -0.09578189998865128, 0.17879855632781982, -0.02900231070816517, 0.08940442651510239, -0.2603394091129303, 0.2254239320755005, 0.07019765675067902, -0.11909467726945877, 0.04757627099752426, -0.11814092099666595, 0.08530338853597641, 0.02207805961370468, 0.041434839367866516, 0.07761925458908081, 0.04161522537469864, 0.11940909177064896, 0.03257475048303604, -0.00314142694696784, 0.05456724017858505, 0.07224375009536743, 0.0941813513636589, 0.1230122447013855, -0.07287998497486115, -0.07873915135860443, 0.08034131675958633, -0.04709449037909508, -0.11787727475166321, -0.06861002743244171, -0.1452382206916809, -0.004202034790068865, -0.0335184708237648, 0.07922724634408951, 0.05637102574110031, 0.09526676684617996, -0.01433930266648531, -0.05777551606297493, 0.04157217592000961, -0.06985066086053848, 0.019995175302028656, -0.011708668433129787, -0.060763102024793625, 0.13121068477630615, 0.04688004031777382, -0.014275136403739452, -0.08673419058322906, 0.07951672375202179, -0.1204570084810257, -0.07978847622871399, -0.08239417523145676, -0.05098734796047211, -0.007686138618737459, -0.11281027644872665, 0.049203939735889435, -0.11458899080753326, -0.22705501317977905, -0.01313747651875019, 0.04550096020102501, -0.016462473198771477, -0.03707117214798927, -0.040630146861076355, -0.009473399259150028, 0.04880702868103981, -0.042894408106803894, 0.039052072912454605, -0.05325083062052727, 0.050018906593322754, -0.09618895500898361, 0.051321301609277725, -0.10470817238092422, 0.041251372545957565, -0.09671807289123535, 0.07595963031053543, 0.0017866486450657248, 0.0454767569899559, 0.010063555091619492, 0.08985432982444763, -0.03214199095964432, -0.044836416840553284, -0.07869677990674973, 0.026561295613646507, 0.02284199558198452, 0.20134314894676208, -0.10196486860513687, -0.0819794163107872, 0.12614667415618896, -0.07252102345228195, -0.1288122832775116, 0.0409054271876812, -0.02831157296895981, 0.17958028614521027, 0.07370224595069885, 0.16096454858779907, 0.12039237469434738, -0.03798284754157066, 0.1263856589794159, 0.14821170270442963, -0.1269366294145584, -0.004153167363256216, 0.039416827261447906, 0.014042570255696774, -0.20559121668338776, 0.04052022844552994, -0.01946125738322735, 0.06584736704826355, -0.10201486945152283, -0.00946728140115738, 0.0031527038663625717, -0.02320384420454502, 0.0023026331327855587, -0.0472555048763752, 0.061078161001205444, 0.038737643510103226, -0.022763127461075783, 0.029682613909244537, 0.06635552644729614, -0.026160234585404396, -0.00823320634663105, -0.04484035447239876, 0.10009831935167313, -0.07260703295469284, 0.06797321885824203, -0.13160665333271027, -0.003086181590333581, -0.012450510635972023, 0.0972909927368164, 0.03811546042561531, 0.10621625185012817, 0.05470104143023491, 0.03126294165849686, 0.07701993733644485, -0.02846951223909855, 0.0746634304523468, 0.01002051867544651, -0.0850096121430397, -0.1272277683019638, 0.015217535197734833, -0.10649837553501129, -0.004191380459815264, -0.08523700386285782, -0.0015737697249278426, -0.12802091240882874, 0.05826076865196228, -0.016465239226818085, 0.0539434514939785, -0.055182818323373795, -0.04337453469634056, -0.044662054628133774, -0.022007398307323456, 0.0482511967420578, -0.033139705657958984, -0.06687536835670471, 0.16832175850868225, -0.15395553410053253, 0.2592274248600006, 0.1313537061214447, -0.0889907032251358, 0.002020547864958644, -0.07812081277370453, -0.04194976016879082, -0.012868959456682205, 0.07527336478233337, -0.03700125962495804, 0.15495356917381287, -0.03386903926730156, 0.17382068932056427, -0.099679134786129, -0.0334031768143177, 0.02144831046462059, -0.10981054604053497, 0.057656705379486084, 0.08051177859306335, 0.04427298903465271, -0.159133642911911, 0.08837400376796722, 0.19756358861923218, 0.05472150072455406, 0.20321963727474213, -0.006869805511087179, -0.06112205237150192, -0.05358194187283516, -0.0808696523308754, -0.052568696439266205, 0.056259434670209885, -0.09903126955032349, -0.004000484477728605, 0.06423190236091614, 0.08783505111932755, 0.11237549781799316, -0.10904275625944138, -0.046180129051208496, 0.05125856027007103, -0.004819708876311779, -0.051060013473033905, 0.07006146013736725, -0.0659489631652832, 0.13217470049858093, 0.014598124660551548, -0.07049204409122467, 0.0036125897895544767, -0.004913401324301958, -0.11891388893127441, 0.20653130114078522, -0.08047540485858917, -0.27306002378463745, -0.16792123019695282, -0.16288253664970398, 0.07165426760911942, 0.038431257009506226, 0.033738572150468826, -0.08776884526014328, -0.020982403308153152, 0.004409478977322578, 0.11553267389535904, -0.09698133170604706, 0.013121976517140865, 0.008159824647009373, -0.018650712445378304, -0.07579360157251358, -0.09033482521772385, -0.0241270512342453, -0.02461584471166134, 0.020020704716444016, 0.03998296707868576, -0.11154978722333908, 0.06758414953947067, 0.2167699933052063, -0.015538511797785759, 0.06870997697114944, 0.00025148785789497197, 0.26176807284355164, -0.08426473289728165, 0.040830448269844055, 0.11926601082086563, -0.08760137856006622, 0.05199241638183594, 0.07132956385612488, 0.03210015222430229, -0.014074578881263733, 0.016441889107227325, -0.11233895272016525, -0.12864868342876434, -0.1923626959323883, -0.06961654871702194, -0.028241310268640518, 0.13464264571666718, 0.031150488182902336, 0.04321796074509621, 0.10346641391515732, 0.07471037656068802, 0.06701335310935974, 0.03259968012571335, -0.0005120337591506541, 0.0647427961230278, 0.024594781920313835, -0.05812343955039978, 0.054217349737882614, -0.04845457896590233, -0.0797470211982727, 0.08279551565647125, -0.011098933406174183, 0.0927528515458107, 0.06928195804357529, 0.02340286411345005, 0.018686039373278618, 0.04218229651451111, 0.15593960881233215, 0.22442668676376343, -0.012412761338055134, -0.041085485368967056, -0.05078154057264328, -0.040494389832019806, -0.01600850187242031, 0.015044075436890125, -0.05785144492983818, -0.033252447843551636, -0.0728597640991211, -0.015066487714648247, 0.011195010505616665, 0.015441779047250748, 0.07578693330287933, -0.22024130821228027, -0.038240667432546616, 0.042616840451955795, -0.013794191181659698, -0.10639895498752594, 0.05872863903641701, 0.016779562458395958, -0.17391349375247955, -0.07854076474905014, -0.016605399549007416, 0.1603294163942337, -0.030760308727622032, 0.0619782954454422, 0.005449770484119654, 0.02271227352321148, -0.013140208087861538, 0.11191333085298538, -0.27346712350845337, 0.1954270750284195, 0.001131516881287098, -0.04876048117876053, -0.016439033672213554, -0.04243995249271393, 0.0009058643481694162, 0.14556926488876343, 0.09718295931816101, 0.0028763783629983664, 0.0669604167342186, -0.07678256928920746, -0.11943262070417404, 0.05284353718161583, 0.08068333566188812, -0.07738065719604492, 0.029960619285702705, -0.029798466712236404, 0.027152907103300095, -0.007555682212114334, -0.030231619253754616, 0.002119861776009202, -0.11661309748888016, 0.02936525270342827, -0.08075195550918579, 0.06012337654829025, 0.02433968149125576, -0.02529163844883442, -0.012048180215060711, 0.1316436529159546, -0.013300766237080097, -0.08264251798391342, -0.08976204693317413, -0.02328740619122982, 0.09523095935583115, -0.05599937587976456, 0.03358715400099754, -0.08175740391016006, -0.04073614999651909, 0.005860272329300642, -0.16970814764499664, 0.06983034312725067, -0.10846570879220963, -0.09971687942743301, -0.050264790654182434, 0.15346404910087585, 0.013677009381353855, 0.025709833949804306, 0.03220117464661598, -0.04211581498384476, -0.18150363862514496, -0.15989434719085693, -0.007562890648841858, 0.0717545747756958, -0.04433317109942436, 0.03638565540313721, 0.007171243894845247, 0.10013602674007416, 0.004198792390525341, 0.07230839878320694, 0.2026015669107437, 0.16423118114471436, -0.08760133385658264, 0.17723721265792847, 0.16266676783561707, -0.12243213504552841, -0.2722402811050415, -0.09522651135921478, -0.05925937369465828, 0.03468820080161095, 0.02297091670334339, -0.13072867691516876, 0.06184706464409828, -0.011241482570767403, -0.004976592492312193, 0.13391432166099548, -0.2790721356868744, -0.07025358080863953, 0.13864430785179138, -0.012145180255174637, 0.2560276985168457, -0.042459286749362946, -0.08155408501625061, -0.060940731316804886, -0.2339130938053131, 0.1595010906457901, -0.12908293306827545, 0.030256805941462517, -0.06380902975797653, 0.1317017376422882, 0.04475972056388855, -0.051817599684000015, 0.13714583218097687, -0.0770399421453476, 0.03692200407385826, -0.1231972947716713, -0.01437266543507576, 0.05212629213929176, -0.014681367203593254, 0.10554680228233337, -0.053141020238399506, 0.10400939732789993, -0.12106935679912567, -0.052672889083623886, -0.054288461804389954, 0.017598338425159454, -0.023758167400956154, -0.05668776109814644, -0.039483629167079926, -0.05230721831321716, 0.00942184031009674, -0.024894973263144493, -0.008981208316981792, -0.02189256064593792, 0.08200293034315109, 0.10853444039821625, 0.1416669338941574, -0.04508063197135925, -0.02666328102350235, -0.029412275180220604, -0.043095141649246216, 0.07755832374095917, -0.1675589680671692, -0.020979177206754684, 0.15767353773117065, 0.008264025673270226, 0.08081416040658951, 0.07994852215051651, -0.043529048562049866, -0.04116993397474289, 0.09435915946960449, -0.23738352954387665, -0.032961416989564896, -0.07289689034223557, -0.032304681837558746, 0.05143286660313606, 0.06389017403125763, 0.11233682930469513, -0.055076416581869125, -0.015500548295676708, 0.038369257003068924, -0.013473432511091232, -0.10457789897918701, 0.12659704685211182, 0.07594829052686691, 0.04931824654340744, -0.13000807166099548, 0.03979043290019035, -0.02080575004220009, -0.024042857810854912, -0.009190280921757221, 0.09610513597726822, -0.13868926465511322, -0.061987441033124924, 0.01100219041109085, 0.1624082624912262, -0.08940329402685165, -0.054934311658144, -0.00678250240162015, -0.07782098650932312, 0.06215988099575043, 0.06269455701112747, 0.039047662168741226, 0.10006190836429596, -0.08492296934127808, -0.004345493856817484, -0.04427671059966087, 0.02742549031972885, 0.04004936292767525, -0.01839151792228222, -0.11644710600376129, 0.050648268312215805, 0.01261399406939745, 0.21786263585090637, -0.12195943295955658, -0.07748695462942123, -0.13975368440151215, 0.03579137846827507, -0.1441981941461563, -0.02782432734966278, -0.09455464035272598, -0.0542730838060379, -0.024786408990621567, -0.02354593575000763, -0.05044161155819893, -0.03595460206270218, -0.06568260490894318, 0.04963921010494232, -0.01889806240797043, -0.04201965406537056, -0.018809955567121506, 0.04780932888388634, 0.10624072700738907, -0.0022816911805421114, 0.11582330614328384, 0.10476028919219971, -0.06149300932884216, 0.06964143365621567, -0.08975338935852051, 0.049342647194862366, 0.010800108313560486, -0.03639211133122444, 0.07890737056732178, 0.033158838748931885, 0.011678727343678474, -0.02014644630253315, -0.05248590186238289, 0.015699470415711403, 0.019494805485010147, -0.09001129865646362, 0.04338252544403076, 0.03427375108003616, -0.07128193974494934, -0.06945458799600601, -0.02831537090241909, -0.04915383830666542, 0.10966338962316513, 0.09227382391691208, 0.01580313965678215, 0.11524862796068192, -0.09982031583786011, -0.0043287696316838264, 0.0288130734115839, -0.08074736595153809, -0.01706261746585369, -0.10044533759355545, -0.01304725930094719, -0.02274717018008232, 0.2554529011249542, 0.12089171260595322, -0.025309232994914055, -0.03230812028050423, 0.07114472985267639, 0.08105676621198654, -0.0211230106651783, 0.14824873208999634, 0.03444083034992218, -0.0007331980159506202, -0.1400776505470276, 0.10673409700393677, -0.060156434774398804, -0.010151425376534462, 0.09550673514604568, -0.08319920301437378, 0.048856139183044434, 0.07468824833631516, -0.01950058713555336, 0.05372466519474983, -0.11716536432504654, -0.2690386474132538, 0.023945249617099762, 0.027653370052576065, -0.0441947840154171, 0.07253700494766235, 0.145015150308609, 0.00042942073196172714, 0.05244648456573486, 0.061493102461099625, -0.05709811672568321, -0.17804701626300812, -0.19115881621837616, -0.0384756401181221, -0.11082857847213745, -0.023826930671930313, -0.10639674216508865, 0.04148538038134575, -0.02072913944721222, 0.05925795063376427, -0.09639845043420792, 0.12447383254766464, 0.06843417137861252, -0.11577396094799042, 0.05810433253645897, -0.008805959485471249, 0.048459235578775406, -0.07387776672840118, 0.08210063725709915, -0.10721065104007721, -0.026499031111598015, -0.016933415085077286, 0.03711435943841934, -0.05858420953154564, 0.0011270071845501661, -0.10357651859521866, -0.06808403134346008, -0.056935109198093414, 0.09072309732437134, -0.024477418512105942, 0.03998230770230293, -0.014557241462171078, -0.061277762055397034, -0.025446701794862747, 0.2273169606924057, -0.018587565049529076, -0.043939489871263504, -0.0661960318684578, 0.2851298749446869, -0.06544138491153717, 0.07253559678792953, -0.032977886497974396, -0.001274158013984561, -0.07127615064382553, 0.2931469976902008, 0.36314713954925537, -0.14264726638793945, 0.011796033009886742, -0.018389053642749786, 0.03556118905544281, 0.07535336911678314, 0.18024654686450958, 0.07291083037853241, 0.3107033371925354, -0.04080776497721672, -0.01225926261395216, -0.10546047985553741, -0.03835856914520264, 0.014304363168776035, 0.02947218343615532, 0.08378855139017105, -0.05586446449160576, -0.06808875501155853, 0.1039084792137146, -0.26703301072120667, -0.02056516334414482, -0.16380304098129272, -0.061613935977220535, -0.04166705906391144, 0.0007227687747217715, 0.07237391918897629, 0.028740311041474342, 0.05115301162004471, -0.039005450904369354, -0.047156207263469696, 0.057444483041763306, -0.02154913917183876, -0.12674635648727417, 0.0002557095722295344, 0.143532857298851, -0.07906237244606018, -0.0018181405030190945, 0.0032308290246874094, 0.060348983854055405, 0.044118594378232956, 0.04119637981057167, -0.10164451599121094, 0.02608482725918293, 0.01246592216193676, -0.03363148868083954, -0.028164468705654144, 0.008156497962772846, 0.07835527509450912, -0.21697945892810822, 0.0020338469184935093, -0.14078554511070251, 0.011757226660847664, -0.07641053944826126, -0.006896127946674824, -0.08222074061632156, 0.03242125362157822, 0.004625517874956131, 0.1118803396821022, 0.11125602573156357, -0.03202005848288536, -0.0006144302315078676, -0.06265610456466675, 0.06727221608161926, -0.06884542852640152, -0.02960195019841194, -0.025150567293167114, -0.09257599711418152, -0.09335606545209885, 0.09815482050180435, -0.022339481860399246, -0.1427105814218521, 0.007601875811815262, -0.09401176869869232, -0.04369132220745087, -0.021486658602952957, 0.09382037818431854, 0.11086808145046234, 0.09180203825235367, -0.007599277421832085, 0.047748953104019165, 0.03120456263422966, 0.07436691224575043, -0.12886843085289001, -0.10148585587739944 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1342621593470709760/MIC3BVyY_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Sezen Spessa 🤖 AI Bot </div> <div style="font-size: 15px">@hollidayspessa bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@hollidayspessa's tweets](https://twitter.com/hollidayspessa). | Data | Quantity | | --- | --- | | Tweets downloaded | 3217 | | Retweets | 1140 | | Short tweets | 359 | | Tweets kept | 1718 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/16l4tber/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hollidayspessa's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/29lkodgj) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/29lkodgj/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hollidayspessa') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hollidayspessa/1617877088770/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hollidayspessa
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
Sezen Spessa AI Bot @hollidayspessa bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @hollidayspessa's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hollidayspessa's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1384242089097981952/vhV-3M06_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">martian</div> <div style="text-align: center; font-size: 14px;">@holocenite</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from martian. | Data | martian | | --- | --- | | Tweets downloaded | 3236 | | Retweets | 270 | | Short tweets | 250 | | Tweets kept | 2716 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/37xmwiih/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @holocenite's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/1zuygzmm) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/1zuygzmm/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/holocenite') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/holocenite/1629695532486/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/holocenite
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT martian @holocenite I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from martian. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @holocenite's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1374800966726324228/RMC8cB-D_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">sn8rl sn8rl gr8wl gr8wl grrrrrrrr 8ark grrrrrrrr 🤖 AI Bot </div> <div style="font-size: 15px">@homehousesys bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://app.wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-model-to-generate-tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@homehousesys's tweets](https://twitter.com/homehousesys). | Data | Quantity | | --- | --- | | Tweets downloaded | 3244 | | Retweets | 32 | | Short tweets | 634 | | Tweets kept | 2578 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/3ep0ywdr/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @homehousesys's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/14mt5icw) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/14mt5icw/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/homehousesys') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/homehousesys/1616643362209/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/homehousesys
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
sn8rl sn8rl gr8wl gr8wl grrrrrrrr 8ark grrrrrrrr AI Bot @homehousesys bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @homehousesys's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @homehousesys's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1385156301194366977/bNgzDBDI_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">Honey Singh</div> <div style="text-align: center; font-size: 14px;">@honeytech</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from Honey Singh. | Data | Honey Singh | | --- | --- | | Tweets downloaded | 3247 | | Retweets | 473 | | Short tweets | 422 | | Tweets kept | 2352 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/i4rpk84l/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @honeytech's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/1r4kueus) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/1r4kueus/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/honeytech') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/honeytech/1628523497653/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/honeytech
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT Honey Singh @honeytech I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from Honey Singh. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @honeytech's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1374823579129417735/LbS7YP1t_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">RealTalkDoe 🤖 AI Bot </div> <div style="font-size: 15px">@horniestdoe bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@horniestdoe's tweets](https://twitter.com/horniestdoe). | Data | Quantity | | --- | --- | | Tweets downloaded | 801 | | Retweets | 265 | | Short tweets | 82 | | Tweets kept | 454 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/2eqcovty/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @horniestdoe's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/1667e2ri) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/1667e2ri/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/horniestdoe') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/horniestdoe/1616726630751/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/horniestdoe
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
RealTalkDoe AI Bot @horniestdoe bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @horniestdoe's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @horniestdoe's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1417892518981738502/Qb2SoLGO_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">horsey</div> <div style="text-align: center; font-size: 14px;">@horse1350</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from horsey. | Data | horsey | | --- | --- | | Tweets downloaded | 1783 | | Retweets | 26 | | Short tweets | 352 | | Tweets kept | 1405 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/2gpy0wuu/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @horse1350's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/fgwh8u1y) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/fgwh8u1y/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/horse1350') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/horse1350/1627251450034/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/horse1350
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT horsey @horse1350 I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from horsey. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @horse1350's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<link rel="stylesheet" href="https://unpkg.com/@tailwindcss/[email protected]/dist/typography.min.css"> <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('http://pbs.twimg.com/profile_images/465259768542539776/EMUR-g7P_400x400.jpeg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Hoshi Risu 🤖 AI Bot </div> <div style="font-size: 15px; color: #657786">@hoshirisu bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://app.wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-model-to-generate-tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@hoshirisu's tweets](https://twitter.com/hoshirisu). <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>837</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>38</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>112</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>687</td> </tr> </tbody> </table> [Explore the data](https://app.wandb.ai/wandb/huggingtweets/runs/y5x4tdgg/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hoshirisu's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://app.wandb.ai/wandb/huggingtweets/runs/17kog9ej) for full transparency and reproducibility. At the end of training, [the final model](https://app.wandb.ai/wandb/huggingtweets/runs/17kog9ej/artifacts) is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/hoshirisu'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) <section class='prose'> For more details, visit the project repository. </section> [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://github.com/borisdayma/huggingtweets/blob/master/img/logo.png?raw=true", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hoshirisu
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
<link rel="stylesheet" href="URL <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('URL </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Hoshi Risu AI Bot </div> <div style="font-size: 15px; color: #657786">@hoshirisu bot</div> </div> I was made with huggingtweets. Create your own bot based on your favorite user with the demo! ## How does it work? The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. ## Training data The model was trained on @hoshirisu's tweets. <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>837</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>38</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>112</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>687</td> </tr> </tbody> </table> Explore the data, which is tracked with W&B artifacts at every step of the pipeline. ## Training procedure The model is based on a pre-trained GPT-2 which is fine-tuned on @hoshirisu's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/hoshirisu'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> ![Follow](URL <section class='prose'> For more details, visit the project repository. </section> ![GitHub stars](URL
[ "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @hoshirisu's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>837</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>38</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>112</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>687</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @hoshirisu's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/hoshirisu'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @hoshirisu's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>837</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>38</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>112</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>687</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @hoshirisu's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/hoshirisu'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ 57, 34, 427, 75, 9, 167, 48, 58 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report." ]
[ -0.04084593802690506, 0.035596683621406555, -0.0024457171093672514, 0.04662978649139404, 0.10991521924734116, 0.022836215794086456, 0.12812861800193787, 0.0424627922475338, -0.03746044635772705, -0.03597303107380867, 0.22758877277374268, 0.1009177565574646, 0.03089720755815506, 0.17962171137332916, 0.010350672528147697, -0.2703946828842163, 0.015237200073897839, 0.0647135004401207, -0.07720091193914413, 0.15752871334552765, 0.05562684312462807, -0.049801189452409744, 0.08214939385652542, 0.032038331031799316, -0.165513277053833, -0.004831716418266296, -0.02072383277118206, -0.04504403471946716, 0.09232694655656815, 0.06956911832094193, 0.07011176645755768, 0.034282486885786057, 0.017851393669843674, -0.0714372918009758, 0.06354191154241562, 0.014452377334237099, -0.02349161170423031, 0.13615116477012634, 0.028668763116002083, -0.0002947957837022841, 0.1798527091741562, 0.11815319955348969, 0.016722125932574272, 0.016196802258491516, -0.1166125237941742, -0.0606788769364357, 0.012365915812551975, 0.04470464214682579, 0.10005760192871094, 0.058856748044490814, 0.01943058706820011, 0.13215520977973938, -0.1164829432964325, 0.08512931317090988, 0.1828341782093048, -0.24191047251224518, -0.006823094096034765, 0.061043880879879, 0.08518847078084946, 0.02852868288755417, -0.0027500083670020103, 0.050437480211257935, 0.06484624743461609, 0.021347152069211006, 0.03636380657553673, -0.0638979896903038, 0.05009674280881882, 0.011186900548636913, -0.10215270519256592, -0.07660897821187973, 0.2294245809316635, -0.0602995827794075, 0.004886541981250048, -0.028186868876218796, -0.08490151911973953, -0.06026294082403183, -0.012795685790479183, -0.05738116800785065, -0.01700775697827339, 0.034475523978471756, 0.0214629378169775, -0.10922146588563919, -0.07046429812908173, -0.1146778091788292, -0.09578189998865128, 0.17879855632781982, -0.02900231070816517, 0.08940442651510239, -0.2603394091129303, 0.2254239320755005, 0.07019765675067902, -0.11909467726945877, 0.04757627099752426, -0.11814092099666595, 0.08530338853597641, 0.02207805961370468, 0.041434839367866516, 0.07761925458908081, 0.04161522537469864, 0.11940909177064896, 0.03257475048303604, -0.00314142694696784, 0.05456724017858505, 0.07224375009536743, 0.0941813513636589, 0.1230122447013855, -0.07287998497486115, -0.07873915135860443, 0.08034131675958633, -0.04709449037909508, -0.11787727475166321, -0.06861002743244171, -0.1452382206916809, -0.004202034790068865, -0.0335184708237648, 0.07922724634408951, 0.05637102574110031, 0.09526676684617996, -0.01433930266648531, -0.05777551606297493, 0.04157217592000961, -0.06985066086053848, 0.019995175302028656, -0.011708668433129787, -0.060763102024793625, 0.13121068477630615, 0.04688004031777382, -0.014275136403739452, -0.08673419058322906, 0.07951672375202179, -0.1204570084810257, -0.07978847622871399, -0.08239417523145676, -0.05098734796047211, -0.007686138618737459, -0.11281027644872665, 0.049203939735889435, -0.11458899080753326, -0.22705501317977905, -0.01313747651875019, 0.04550096020102501, -0.016462473198771477, -0.03707117214798927, -0.040630146861076355, -0.009473399259150028, 0.04880702868103981, -0.042894408106803894, 0.039052072912454605, -0.05325083062052727, 0.050018906593322754, -0.09618895500898361, 0.051321301609277725, -0.10470817238092422, 0.041251372545957565, -0.09671807289123535, 0.07595963031053543, 0.0017866486450657248, 0.0454767569899559, 0.010063555091619492, 0.08985432982444763, -0.03214199095964432, -0.044836416840553284, -0.07869677990674973, 0.026561295613646507, 0.02284199558198452, 0.20134314894676208, -0.10196486860513687, -0.0819794163107872, 0.12614667415618896, -0.07252102345228195, -0.1288122832775116, 0.0409054271876812, -0.02831157296895981, 0.17958028614521027, 0.07370224595069885, 0.16096454858779907, 0.12039237469434738, -0.03798284754157066, 0.1263856589794159, 0.14821170270442963, -0.1269366294145584, -0.004153167363256216, 0.039416827261447906, 0.014042570255696774, -0.20559121668338776, 0.04052022844552994, -0.01946125738322735, 0.06584736704826355, -0.10201486945152283, -0.00946728140115738, 0.0031527038663625717, -0.02320384420454502, 0.0023026331327855587, -0.0472555048763752, 0.061078161001205444, 0.038737643510103226, -0.022763127461075783, 0.029682613909244537, 0.06635552644729614, -0.026160234585404396, -0.00823320634663105, -0.04484035447239876, 0.10009831935167313, -0.07260703295469284, 0.06797321885824203, -0.13160665333271027, -0.003086181590333581, -0.012450510635972023, 0.0972909927368164, 0.03811546042561531, 0.10621625185012817, 0.05470104143023491, 0.03126294165849686, 0.07701993733644485, -0.02846951223909855, 0.0746634304523468, 0.01002051867544651, -0.0850096121430397, -0.1272277683019638, 0.015217535197734833, -0.10649837553501129, -0.004191380459815264, -0.08523700386285782, -0.0015737697249278426, -0.12802091240882874, 0.05826076865196228, -0.016465239226818085, 0.0539434514939785, -0.055182818323373795, -0.04337453469634056, -0.044662054628133774, -0.022007398307323456, 0.0482511967420578, -0.033139705657958984, -0.06687536835670471, 0.16832175850868225, -0.15395553410053253, 0.2592274248600006, 0.1313537061214447, -0.0889907032251358, 0.002020547864958644, -0.07812081277370453, -0.04194976016879082, -0.012868959456682205, 0.07527336478233337, -0.03700125962495804, 0.15495356917381287, -0.03386903926730156, 0.17382068932056427, -0.099679134786129, -0.0334031768143177, 0.02144831046462059, -0.10981054604053497, 0.057656705379486084, 0.08051177859306335, 0.04427298903465271, -0.159133642911911, 0.08837400376796722, 0.19756358861923218, 0.05472150072455406, 0.20321963727474213, -0.006869805511087179, -0.06112205237150192, -0.05358194187283516, -0.0808696523308754, -0.052568696439266205, 0.056259434670209885, -0.09903126955032349, -0.004000484477728605, 0.06423190236091614, 0.08783505111932755, 0.11237549781799316, -0.10904275625944138, -0.046180129051208496, 0.05125856027007103, -0.004819708876311779, -0.051060013473033905, 0.07006146013736725, -0.0659489631652832, 0.13217470049858093, 0.014598124660551548, -0.07049204409122467, 0.0036125897895544767, -0.004913401324301958, -0.11891388893127441, 0.20653130114078522, -0.08047540485858917, -0.27306002378463745, -0.16792123019695282, -0.16288253664970398, 0.07165426760911942, 0.038431257009506226, 0.033738572150468826, -0.08776884526014328, -0.020982403308153152, 0.004409478977322578, 0.11553267389535904, -0.09698133170604706, 0.013121976517140865, 0.008159824647009373, -0.018650712445378304, -0.07579360157251358, -0.09033482521772385, -0.0241270512342453, -0.02461584471166134, 0.020020704716444016, 0.03998296707868576, -0.11154978722333908, 0.06758414953947067, 0.2167699933052063, -0.015538511797785759, 0.06870997697114944, 0.00025148785789497197, 0.26176807284355164, -0.08426473289728165, 0.040830448269844055, 0.11926601082086563, -0.08760137856006622, 0.05199241638183594, 0.07132956385612488, 0.03210015222430229, -0.014074578881263733, 0.016441889107227325, -0.11233895272016525, -0.12864868342876434, -0.1923626959323883, -0.06961654871702194, -0.028241310268640518, 0.13464264571666718, 0.031150488182902336, 0.04321796074509621, 0.10346641391515732, 0.07471037656068802, 0.06701335310935974, 0.03259968012571335, -0.0005120337591506541, 0.0647427961230278, 0.024594781920313835, -0.05812343955039978, 0.054217349737882614, -0.04845457896590233, -0.0797470211982727, 0.08279551565647125, -0.011098933406174183, 0.0927528515458107, 0.06928195804357529, 0.02340286411345005, 0.018686039373278618, 0.04218229651451111, 0.15593960881233215, 0.22442668676376343, -0.012412761338055134, -0.041085485368967056, -0.05078154057264328, -0.040494389832019806, -0.01600850187242031, 0.015044075436890125, -0.05785144492983818, -0.033252447843551636, -0.0728597640991211, -0.015066487714648247, 0.011195010505616665, 0.015441779047250748, 0.07578693330287933, -0.22024130821228027, -0.038240667432546616, 0.042616840451955795, -0.013794191181659698, -0.10639895498752594, 0.05872863903641701, 0.016779562458395958, -0.17391349375247955, -0.07854076474905014, -0.016605399549007416, 0.1603294163942337, -0.030760308727622032, 0.0619782954454422, 0.005449770484119654, 0.02271227352321148, -0.013140208087861538, 0.11191333085298538, -0.27346712350845337, 0.1954270750284195, 0.001131516881287098, -0.04876048117876053, -0.016439033672213554, -0.04243995249271393, 0.0009058643481694162, 0.14556926488876343, 0.09718295931816101, 0.0028763783629983664, 0.0669604167342186, -0.07678256928920746, -0.11943262070417404, 0.05284353718161583, 0.08068333566188812, -0.07738065719604492, 0.029960619285702705, -0.029798466712236404, 0.027152907103300095, -0.007555682212114334, -0.030231619253754616, 0.002119861776009202, -0.11661309748888016, 0.02936525270342827, -0.08075195550918579, 0.06012337654829025, 0.02433968149125576, -0.02529163844883442, -0.012048180215060711, 0.1316436529159546, -0.013300766237080097, -0.08264251798391342, -0.08976204693317413, -0.02328740619122982, 0.09523095935583115, -0.05599937587976456, 0.03358715400099754, -0.08175740391016006, -0.04073614999651909, 0.005860272329300642, -0.16970814764499664, 0.06983034312725067, -0.10846570879220963, -0.09971687942743301, -0.050264790654182434, 0.15346404910087585, 0.013677009381353855, 0.025709833949804306, 0.03220117464661598, -0.04211581498384476, -0.18150363862514496, -0.15989434719085693, -0.007562890648841858, 0.0717545747756958, -0.04433317109942436, 0.03638565540313721, 0.007171243894845247, 0.10013602674007416, 0.004198792390525341, 0.07230839878320694, 0.2026015669107437, 0.16423118114471436, -0.08760133385658264, 0.17723721265792847, 0.16266676783561707, -0.12243213504552841, -0.2722402811050415, -0.09522651135921478, -0.05925937369465828, 0.03468820080161095, 0.02297091670334339, -0.13072867691516876, 0.06184706464409828, -0.011241482570767403, -0.004976592492312193, 0.13391432166099548, -0.2790721356868744, -0.07025358080863953, 0.13864430785179138, -0.012145180255174637, 0.2560276985168457, -0.042459286749362946, -0.08155408501625061, -0.060940731316804886, -0.2339130938053131, 0.1595010906457901, -0.12908293306827545, 0.030256805941462517, -0.06380902975797653, 0.1317017376422882, 0.04475972056388855, -0.051817599684000015, 0.13714583218097687, -0.0770399421453476, 0.03692200407385826, -0.1231972947716713, -0.01437266543507576, 0.05212629213929176, -0.014681367203593254, 0.10554680228233337, -0.053141020238399506, 0.10400939732789993, -0.12106935679912567, -0.052672889083623886, -0.054288461804389954, 0.017598338425159454, -0.023758167400956154, -0.05668776109814644, -0.039483629167079926, -0.05230721831321716, 0.00942184031009674, -0.024894973263144493, -0.008981208316981792, -0.02189256064593792, 0.08200293034315109, 0.10853444039821625, 0.1416669338941574, -0.04508063197135925, -0.02666328102350235, -0.029412275180220604, -0.043095141649246216, 0.07755832374095917, -0.1675589680671692, -0.020979177206754684, 0.15767353773117065, 0.008264025673270226, 0.08081416040658951, 0.07994852215051651, -0.043529048562049866, -0.04116993397474289, 0.09435915946960449, -0.23738352954387665, -0.032961416989564896, -0.07289689034223557, -0.032304681837558746, 0.05143286660313606, 0.06389017403125763, 0.11233682930469513, -0.055076416581869125, -0.015500548295676708, 0.038369257003068924, -0.013473432511091232, -0.10457789897918701, 0.12659704685211182, 0.07594829052686691, 0.04931824654340744, -0.13000807166099548, 0.03979043290019035, -0.02080575004220009, -0.024042857810854912, -0.009190280921757221, 0.09610513597726822, -0.13868926465511322, -0.061987441033124924, 0.01100219041109085, 0.1624082624912262, -0.08940329402685165, -0.054934311658144, -0.00678250240162015, -0.07782098650932312, 0.06215988099575043, 0.06269455701112747, 0.039047662168741226, 0.10006190836429596, -0.08492296934127808, -0.004345493856817484, -0.04427671059966087, 0.02742549031972885, 0.04004936292767525, -0.01839151792228222, -0.11644710600376129, 0.050648268312215805, 0.01261399406939745, 0.21786263585090637, -0.12195943295955658, -0.07748695462942123, -0.13975368440151215, 0.03579137846827507, -0.1441981941461563, -0.02782432734966278, -0.09455464035272598, -0.0542730838060379, -0.024786408990621567, -0.02354593575000763, -0.05044161155819893, -0.03595460206270218, -0.06568260490894318, 0.04963921010494232, -0.01889806240797043, -0.04201965406537056, -0.018809955567121506, 0.04780932888388634, 0.10624072700738907, -0.0022816911805421114, 0.11582330614328384, 0.10476028919219971, -0.06149300932884216, 0.06964143365621567, -0.08975338935852051, 0.049342647194862366, 0.010800108313560486, -0.03639211133122444, 0.07890737056732178, 0.033158838748931885, 0.011678727343678474, -0.02014644630253315, -0.05248590186238289, 0.015699470415711403, 0.019494805485010147, -0.09001129865646362, 0.04338252544403076, 0.03427375108003616, -0.07128193974494934, -0.06945458799600601, -0.02831537090241909, -0.04915383830666542, 0.10966338962316513, 0.09227382391691208, 0.01580313965678215, 0.11524862796068192, -0.09982031583786011, -0.0043287696316838264, 0.0288130734115839, -0.08074736595153809, -0.01706261746585369, -0.10044533759355545, -0.01304725930094719, -0.02274717018008232, 0.2554529011249542, 0.12089171260595322, -0.025309232994914055, -0.03230812028050423, 0.07114472985267639, 0.08105676621198654, -0.0211230106651783, 0.14824873208999634, 0.03444083034992218, -0.0007331980159506202, -0.1400776505470276, 0.10673409700393677, -0.060156434774398804, -0.010151425376534462, 0.09550673514604568, -0.08319920301437378, 0.048856139183044434, 0.07468824833631516, -0.01950058713555336, 0.05372466519474983, -0.11716536432504654, -0.2690386474132538, 0.023945249617099762, 0.027653370052576065, -0.0441947840154171, 0.07253700494766235, 0.145015150308609, 0.00042942073196172714, 0.05244648456573486, 0.061493102461099625, -0.05709811672568321, -0.17804701626300812, -0.19115881621837616, -0.0384756401181221, -0.11082857847213745, -0.023826930671930313, -0.10639674216508865, 0.04148538038134575, -0.02072913944721222, 0.05925795063376427, -0.09639845043420792, 0.12447383254766464, 0.06843417137861252, -0.11577396094799042, 0.05810433253645897, -0.008805959485471249, 0.048459235578775406, -0.07387776672840118, 0.08210063725709915, -0.10721065104007721, -0.026499031111598015, -0.016933415085077286, 0.03711435943841934, -0.05858420953154564, 0.0011270071845501661, -0.10357651859521866, -0.06808403134346008, -0.056935109198093414, 0.09072309732437134, -0.024477418512105942, 0.03998230770230293, -0.014557241462171078, -0.061277762055397034, -0.025446701794862747, 0.2273169606924057, -0.018587565049529076, -0.043939489871263504, -0.0661960318684578, 0.2851298749446869, -0.06544138491153717, 0.07253559678792953, -0.032977886497974396, -0.001274158013984561, -0.07127615064382553, 0.2931469976902008, 0.36314713954925537, -0.14264726638793945, 0.011796033009886742, -0.018389053642749786, 0.03556118905544281, 0.07535336911678314, 0.18024654686450958, 0.07291083037853241, 0.3107033371925354, -0.04080776497721672, -0.01225926261395216, -0.10546047985553741, -0.03835856914520264, 0.014304363168776035, 0.02947218343615532, 0.08378855139017105, -0.05586446449160576, -0.06808875501155853, 0.1039084792137146, -0.26703301072120667, -0.02056516334414482, -0.16380304098129272, -0.061613935977220535, -0.04166705906391144, 0.0007227687747217715, 0.07237391918897629, 0.028740311041474342, 0.05115301162004471, -0.039005450904369354, -0.047156207263469696, 0.057444483041763306, -0.02154913917183876, -0.12674635648727417, 0.0002557095722295344, 0.143532857298851, -0.07906237244606018, -0.0018181405030190945, 0.0032308290246874094, 0.060348983854055405, 0.044118594378232956, 0.04119637981057167, -0.10164451599121094, 0.02608482725918293, 0.01246592216193676, -0.03363148868083954, -0.028164468705654144, 0.008156497962772846, 0.07835527509450912, -0.21697945892810822, 0.0020338469184935093, -0.14078554511070251, 0.011757226660847664, -0.07641053944826126, -0.006896127946674824, -0.08222074061632156, 0.03242125362157822, 0.004625517874956131, 0.1118803396821022, 0.11125602573156357, -0.03202005848288536, -0.0006144302315078676, -0.06265610456466675, 0.06727221608161926, -0.06884542852640152, -0.02960195019841194, -0.025150567293167114, -0.09257599711418152, -0.09335606545209885, 0.09815482050180435, -0.022339481860399246, -0.1427105814218521, 0.007601875811815262, -0.09401176869869232, -0.04369132220745087, -0.021486658602952957, 0.09382037818431854, 0.11086808145046234, 0.09180203825235367, -0.007599277421832085, 0.047748953104019165, 0.03120456263422966, 0.07436691224575043, -0.12886843085289001, -0.10148585587739944 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1322637724470358022/ccOsLDPE_400x400.jpg&#39;)"> </div> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1473236995497500675/FtwXDZld_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI CYBORG 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">checking my mcdouble for nanochips & HUSSY2K.</div> <div style="text-align: center; font-size: 14px;">@hostagekiller-suicidepussy</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from checking my mcdouble for nanochips & HUSSY2K.. | Data | checking my mcdouble for nanochips | HUSSY2K. | | --- | --- | --- | | Tweets downloaded | 3226 | 3193 | | Retweets | 107 | 847 | | Short tweets | 1124 | 389 | | Tweets kept | 1995 | 1957 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/1k8e9itd/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hostagekiller-suicidepussy's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/dor6qtfm) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/dor6qtfm/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hostagekiller-suicidepussy') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "http://www.huggingtweets.com/hostagekiller-suicidepussy/1643315062963/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hostagekiller-suicidepussy
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI CYBORG checking my mcdouble for nanochips & HUSSY2K. @hostagekiller-suicidepussy I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from checking my mcdouble for nanochips & HUSSY2K.. Data: Tweets downloaded, checking my mcdouble for nanochips: 3226, HUSSY2K.: 3193 Data: Retweets, checking my mcdouble for nanochips: 107, HUSSY2K.: 847 Data: Short tweets, checking my mcdouble for nanochips: 1124, HUSSY2K.: 389 Data: Tweets kept, checking my mcdouble for nanochips: 1995, HUSSY2K.: 1957 Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hostagekiller-suicidepussy's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1473236995497500675/FtwXDZld_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">HUSSY2K.</div> <div style="text-align: center; font-size: 14px;">@hostagekiller</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from HUSSY2K.. | Data | HUSSY2K. | | --- | --- | | Tweets downloaded | 3186 | | Retweets | 819 | | Short tweets | 395 | | Tweets kept | 1972 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/u2hpg02v/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hostagekiller's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/3tx11pqs) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/3tx11pqs/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hostagekiller') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "http://www.huggingtweets.com/hostagekiller/1641809138009/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hostagekiller
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT HUSSY2K. @hostagekiller I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from HUSSY2K.. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hostagekiller's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1354914190532734976/Ggf6iWRU_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">hotwifekatrina</div> <div style="text-align: center; font-size: 14px;">@hotwifekatrina</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from hotwifekatrina. | Data | hotwifekatrina | | --- | --- | | Tweets downloaded | 287 | | Retweets | 48 | | Short tweets | 56 | | Tweets kept | 183 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/1g7ptepk/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hotwifekatrina's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/23zr3ecx) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/23zr3ecx/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hotwifekatrina') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hotwifekatrina/1629228959695/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hotwifekatrina
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT hotwifekatrina @hotwifekatrina I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from hotwifekatrina. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hotwifekatrina's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1118856595964776448/nywdsbgX_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">Vegas QOS Hotwife ❤</div> <div style="text-align: center; font-size: 14px;">@hotwifeofohiolv</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from Vegas QOS Hotwife ❤. | Data | Vegas QOS Hotwife ❤ | | --- | --- | | Tweets downloaded | 3039 | | Retweets | 1671 | | Short tweets | 557 | | Tweets kept | 811 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/2lckgzdc/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hotwifeofohiolv's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/3fvzdk4w) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/3fvzdk4w/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hotwifeofohiolv') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://github.com/borisdayma/huggingtweets/blob/master/img/logo.png?raw=true", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hotwifeofohiolv
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT Vegas QOS Hotwife @hotwifeofohiolv I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from Vegas QOS Hotwife . Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hotwifeofohiolv's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1364729653802405890/echyRi6H_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Kirisame 🤖 AI Bot </div> <div style="font-size: 15px">@hourousha0153 bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@hourousha0153's tweets](https://twitter.com/hourousha0153). | Data | Quantity | | --- | --- | | Tweets downloaded | 890 | | Retweets | 170 | | Short tweets | 81 | | Tweets kept | 639 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/iceps8s5/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hourousha0153's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/17k39m43) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/17k39m43/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hourousha0153') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hourousha0153/1617910460279/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hourousha0153
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
Kirisame AI Bot @hourousha0153 bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @hourousha0153's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hourousha0153's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1379216330897960962/5J3athoG_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">kefu 🤖 AI Bot </div> <div style="font-size: 15px">@hugebraingenius bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@hugebraingenius's tweets](https://twitter.com/hugebraingenius). | Data | Quantity | | --- | --- | | Tweets downloaded | 3234 | | Retweets | 302 | | Short tweets | 632 | | Tweets kept | 2300 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/2z5ko2pc/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hugebraingenius's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/30pn15mh) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/30pn15mh/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hugebraingenius') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hugebraingenius/1617764388784/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hugebraingenius
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
kefu AI Bot @hugebraingenius bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @hugebraingenius's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hugebraingenius's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1207495020472946688/JpslG4UC_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">Huma Imtiaz</div> <div style="text-align: center; font-size: 14px;">@humaimtiaz</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from Huma Imtiaz. | Data | Huma Imtiaz | | --- | --- | | Tweets downloaded | 3240 | | Retweets | 1693 | | Short tweets | 132 | | Tweets kept | 1415 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/2j0qtwr6/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @humaimtiaz's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/36ubm36c) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/36ubm36c/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/humaimtiaz') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/humaimtiaz/1620515052161/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/humaimtiaz
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT Huma Imtiaz @humaimtiaz I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from Huma Imtiaz. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @humaimtiaz's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1380079614823817216/q_HrSVt9_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Russ is Rejecting the Fae's 💮ffer 🤖 AI Bot </div> <div style="font-size: 15px">@humanisque bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@humanisque's tweets](https://twitter.com/humanisque). | Data | Quantity | | --- | --- | | Tweets downloaded | 242 | | Retweets | 2 | | Short tweets | 6 | | Tweets kept | 234 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/197xo6fl/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @humanisque's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/clqbbcsq) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/clqbbcsq/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/humanisque') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/humanisque/1618428842746/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/humanisque
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
Russ is Rejecting the Fae's ffer AI Bot @humanisque bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @humanisque's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @humanisque's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1203475963499208706/kzGQ2awX_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">sneaky Pete 🤖 AI Bot </div> <div style="font-size: 15px">@humantestkit bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://app.wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-model-to-generate-tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@humantestkit's tweets](https://twitter.com/humantestkit). | Data | Quantity | | --- | --- | | Tweets downloaded | 3204 | | Retweets | 239 | | Short tweets | 506 | | Tweets kept | 2459 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/3mm8bbeg/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @humantestkit's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/2t4jqmz8) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/2t4jqmz8/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/humantestkit') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://github.com/borisdayma/huggingtweets/blob/master/img/logo.png?raw=true", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/humantestkit
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
sneaky Pete AI Bot @humantestkit bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @humantestkit's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @humantestkit's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1357037242615758851/F5EjIdMo_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">luka 🤖 AI Bot </div> <div style="font-size: 15px">@hunny6ee bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://app.wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-model-to-generate-tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@hunny6ee's tweets](https://twitter.com/hunny6ee). | Data | Quantity | | --- | --- | | Tweets downloaded | 2972 | | Retweets | 1793 | | Short tweets | 220 | | Tweets kept | 959 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/3jkrci9f/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hunny6ee's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/23lopask) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/23lopask/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hunny6ee') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hunny6ee/1614119084449/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hunny6ee
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
luka AI Bot @hunny6ee bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @hunny6ee's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hunny6ee's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1187512590882234368/l8HygRq2_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Harriet Hunt🛰 🤖 AI Bot </div> <div style="font-size: 15px">@hunt_harriet bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@hunt_harriet's tweets](https://twitter.com/hunt_harriet). | Data | Quantity | | --- | --- | | Tweets downloaded | 323 | | Retweets | 88 | | Short tweets | 34 | | Tweets kept | 201 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/3uci64x8/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hunt_harriet's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/8nvimjk4) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/8nvimjk4/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hunt_harriet') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hunt_harriet/1617775620856/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hunt_harriet
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
Harriet Hunt AI Bot @hunt\_harriet bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @hunt\_harriet's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hunt\_harriet's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/787524910771937280/BdktBoUY_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">Nita Strauss</div> <div style="text-align: center; font-size: 14px;">@hurricanenita</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from Nita Strauss. | Data | Nita Strauss | | --- | --- | | Tweets downloaded | 3227 | | Retweets | 533 | | Short tweets | 340 | | Tweets kept | 2354 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/24f5ya67/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hurricanenita's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/16bfnlvq) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/16bfnlvq/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hurricanenita') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://github.com/borisdayma/huggingtweets/blob/master/img/logo.png?raw=true", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hurricanenita
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT Nita Strauss @hurricanenita I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from Nita Strauss. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hurricanenita's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1410198055534710787/MWQhi2jp_400x400.jpg&#39;)"> </div> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1404094020150693888/LQnyM5vj_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI CYBORG 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">Nocodepiper & HUSTLE & CONQUER</div> <div style="text-align: center; font-size: 14px;">@hustlenconquer-nocodepiper</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from Nocodepiper & HUSTLE & CONQUER. | Data | Nocodepiper | HUSTLE & CONQUER | | --- | --- | --- | | Tweets downloaded | 1652 | 2721 | | Retweets | 281 | 19 | | Short tweets | 259 | 240 | | Tweets kept | 1112 | 2462 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/vdyvbiis/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hustlenconquer-nocodepiper's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/sltkk6jw) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/sltkk6jw/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hustlenconquer-nocodepiper') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hustlenconquer-nocodepiper/1625647094650/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hustlenconquer-nocodepiper
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI CYBORG Nocodepiper & HUSTLE & CONQUER @hustlenconquer-nocodepiper I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from Nocodepiper & HUSTLE & CONQUER. Data: Tweets downloaded, Nocodepiper: 1652, HUSTLE & CONQUER: 2721 Data: Retweets, Nocodepiper: 281, HUSTLE & CONQUER: 19 Data: Short tweets, Nocodepiper: 259, HUSTLE & CONQUER: 240 Data: Tweets kept, Nocodepiper: 1112, HUSTLE & CONQUER: 2462 Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hustlenconquer-nocodepiper's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<link rel="stylesheet" href="https://unpkg.com/@tailwindcss/[email protected]/dist/typography.min.css"> <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/504912656256352256/swrUCKHO_400x400.jpeg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Hu Xijin 胡锡进 🤖 AI Bot </div> <div style="font-size: 15px; color: #657786">@huxijin_gt bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://app.wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-model-to-generate-tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@huxijin_gt's tweets](https://twitter.com/huxijin_gt). <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>2167</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>14</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>4</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>2149</td> </tr> </tbody> </table> [Explore the data](https://app.wandb.ai/wandb/huggingtweets/runs/3s1czwb3/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @huxijin_gt's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://app.wandb.ai/wandb/huggingtweets/runs/3h7d51hp) for full transparency and reproducibility. At the end of training, [the final model](https://app.wandb.ai/wandb/huggingtweets/runs/3h7d51hp/artifacts) is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/huxijin_gt'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) <section class='prose'> For more details, visit the project repository. </section> [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets) <!--- random size file -->
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/huxijin_gt/1603826688877/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/huxijin_gt
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
<link rel="stylesheet" href="URL <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('URL </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Hu Xijin 胡锡进 AI Bot </div> <div style="font-size: 15px; color: #657786">@huxijin_gt bot</div> </div> I was made with huggingtweets. Create your own bot based on your favorite user with the demo! ## How does it work? The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. ## Training data The model was trained on @huxijin_gt's tweets. <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>2167</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>14</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>4</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>2149</td> </tr> </tbody> </table> Explore the data, which is tracked with W&B artifacts at every step of the pipeline. ## Training procedure The model is based on a pre-trained GPT-2 which is fine-tuned on @huxijin_gt's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/huxijin_gt'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> ![Follow](URL <section class='prose'> For more details, visit the project repository. </section> ![GitHub stars](URL
[ "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @huxijin_gt's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>2167</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>14</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>4</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>2149</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @huxijin_gt's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/huxijin_gt'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @huxijin_gt's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>2167</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>14</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>4</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>2149</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @huxijin_gt's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/huxijin_gt'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ 57, 34, 431, 77, 9, 169, 48, 58 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report." ]
[ -0.04084593802690506, 0.035596683621406555, -0.0024457171093672514, 0.04662978649139404, 0.10991521924734116, 0.022836215794086456, 0.12812861800193787, 0.0424627922475338, -0.03746044635772705, -0.03597303107380867, 0.22758877277374268, 0.1009177565574646, 0.03089720755815506, 0.17962171137332916, 0.010350672528147697, -0.2703946828842163, 0.015237200073897839, 0.0647135004401207, -0.07720091193914413, 0.15752871334552765, 0.05562684312462807, -0.049801189452409744, 0.08214939385652542, 0.032038331031799316, -0.165513277053833, -0.004831716418266296, -0.02072383277118206, -0.04504403471946716, 0.09232694655656815, 0.06956911832094193, 0.07011176645755768, 0.034282486885786057, 0.017851393669843674, -0.0714372918009758, 0.06354191154241562, 0.014452377334237099, -0.02349161170423031, 0.13615116477012634, 0.028668763116002083, -0.0002947957837022841, 0.1798527091741562, 0.11815319955348969, 0.016722125932574272, 0.016196802258491516, -0.1166125237941742, -0.0606788769364357, 0.012365915812551975, 0.04470464214682579, 0.10005760192871094, 0.058856748044490814, 0.01943058706820011, 0.13215520977973938, -0.1164829432964325, 0.08512931317090988, 0.1828341782093048, -0.24191047251224518, -0.006823094096034765, 0.061043880879879, 0.08518847078084946, 0.02852868288755417, -0.0027500083670020103, 0.050437480211257935, 0.06484624743461609, 0.021347152069211006, 0.03636380657553673, -0.0638979896903038, 0.05009674280881882, 0.011186900548636913, -0.10215270519256592, -0.07660897821187973, 0.2294245809316635, -0.0602995827794075, 0.004886541981250048, -0.028186868876218796, -0.08490151911973953, -0.06026294082403183, -0.012795685790479183, -0.05738116800785065, -0.01700775697827339, 0.034475523978471756, 0.0214629378169775, -0.10922146588563919, -0.07046429812908173, -0.1146778091788292, -0.09578189998865128, 0.17879855632781982, -0.02900231070816517, 0.08940442651510239, -0.2603394091129303, 0.2254239320755005, 0.07019765675067902, -0.11909467726945877, 0.04757627099752426, -0.11814092099666595, 0.08530338853597641, 0.02207805961370468, 0.041434839367866516, 0.07761925458908081, 0.04161522537469864, 0.11940909177064896, 0.03257475048303604, -0.00314142694696784, 0.05456724017858505, 0.07224375009536743, 0.0941813513636589, 0.1230122447013855, -0.07287998497486115, -0.07873915135860443, 0.08034131675958633, -0.04709449037909508, -0.11787727475166321, -0.06861002743244171, -0.1452382206916809, -0.004202034790068865, -0.0335184708237648, 0.07922724634408951, 0.05637102574110031, 0.09526676684617996, -0.01433930266648531, -0.05777551606297493, 0.04157217592000961, -0.06985066086053848, 0.019995175302028656, -0.011708668433129787, -0.060763102024793625, 0.13121068477630615, 0.04688004031777382, -0.014275136403739452, -0.08673419058322906, 0.07951672375202179, -0.1204570084810257, -0.07978847622871399, -0.08239417523145676, -0.05098734796047211, -0.007686138618737459, -0.11281027644872665, 0.049203939735889435, -0.11458899080753326, -0.22705501317977905, -0.01313747651875019, 0.04550096020102501, -0.016462473198771477, -0.03707117214798927, -0.040630146861076355, -0.009473399259150028, 0.04880702868103981, -0.042894408106803894, 0.039052072912454605, -0.05325083062052727, 0.050018906593322754, -0.09618895500898361, 0.051321301609277725, -0.10470817238092422, 0.041251372545957565, -0.09671807289123535, 0.07595963031053543, 0.0017866486450657248, 0.0454767569899559, 0.010063555091619492, 0.08985432982444763, -0.03214199095964432, -0.044836416840553284, -0.07869677990674973, 0.026561295613646507, 0.02284199558198452, 0.20134314894676208, -0.10196486860513687, -0.0819794163107872, 0.12614667415618896, -0.07252102345228195, -0.1288122832775116, 0.0409054271876812, -0.02831157296895981, 0.17958028614521027, 0.07370224595069885, 0.16096454858779907, 0.12039237469434738, -0.03798284754157066, 0.1263856589794159, 0.14821170270442963, -0.1269366294145584, -0.004153167363256216, 0.039416827261447906, 0.014042570255696774, -0.20559121668338776, 0.04052022844552994, -0.01946125738322735, 0.06584736704826355, -0.10201486945152283, -0.00946728140115738, 0.0031527038663625717, -0.02320384420454502, 0.0023026331327855587, -0.0472555048763752, 0.061078161001205444, 0.038737643510103226, -0.022763127461075783, 0.029682613909244537, 0.06635552644729614, -0.026160234585404396, -0.00823320634663105, -0.04484035447239876, 0.10009831935167313, -0.07260703295469284, 0.06797321885824203, -0.13160665333271027, -0.003086181590333581, -0.012450510635972023, 0.0972909927368164, 0.03811546042561531, 0.10621625185012817, 0.05470104143023491, 0.03126294165849686, 0.07701993733644485, -0.02846951223909855, 0.0746634304523468, 0.01002051867544651, -0.0850096121430397, -0.1272277683019638, 0.015217535197734833, -0.10649837553501129, -0.004191380459815264, -0.08523700386285782, -0.0015737697249278426, -0.12802091240882874, 0.05826076865196228, -0.016465239226818085, 0.0539434514939785, -0.055182818323373795, -0.04337453469634056, -0.044662054628133774, -0.022007398307323456, 0.0482511967420578, -0.033139705657958984, -0.06687536835670471, 0.16832175850868225, -0.15395553410053253, 0.2592274248600006, 0.1313537061214447, -0.0889907032251358, 0.002020547864958644, -0.07812081277370453, -0.04194976016879082, -0.012868959456682205, 0.07527336478233337, -0.03700125962495804, 0.15495356917381287, -0.03386903926730156, 0.17382068932056427, -0.099679134786129, -0.0334031768143177, 0.02144831046462059, -0.10981054604053497, 0.057656705379486084, 0.08051177859306335, 0.04427298903465271, -0.159133642911911, 0.08837400376796722, 0.19756358861923218, 0.05472150072455406, 0.20321963727474213, -0.006869805511087179, -0.06112205237150192, -0.05358194187283516, -0.0808696523308754, -0.052568696439266205, 0.056259434670209885, -0.09903126955032349, -0.004000484477728605, 0.06423190236091614, 0.08783505111932755, 0.11237549781799316, -0.10904275625944138, -0.046180129051208496, 0.05125856027007103, -0.004819708876311779, -0.051060013473033905, 0.07006146013736725, -0.0659489631652832, 0.13217470049858093, 0.014598124660551548, -0.07049204409122467, 0.0036125897895544767, -0.004913401324301958, -0.11891388893127441, 0.20653130114078522, -0.08047540485858917, -0.27306002378463745, -0.16792123019695282, -0.16288253664970398, 0.07165426760911942, 0.038431257009506226, 0.033738572150468826, -0.08776884526014328, -0.020982403308153152, 0.004409478977322578, 0.11553267389535904, -0.09698133170604706, 0.013121976517140865, 0.008159824647009373, -0.018650712445378304, -0.07579360157251358, -0.09033482521772385, -0.0241270512342453, -0.02461584471166134, 0.020020704716444016, 0.03998296707868576, -0.11154978722333908, 0.06758414953947067, 0.2167699933052063, -0.015538511797785759, 0.06870997697114944, 0.00025148785789497197, 0.26176807284355164, -0.08426473289728165, 0.040830448269844055, 0.11926601082086563, -0.08760137856006622, 0.05199241638183594, 0.07132956385612488, 0.03210015222430229, -0.014074578881263733, 0.016441889107227325, -0.11233895272016525, -0.12864868342876434, -0.1923626959323883, -0.06961654871702194, -0.028241310268640518, 0.13464264571666718, 0.031150488182902336, 0.04321796074509621, 0.10346641391515732, 0.07471037656068802, 0.06701335310935974, 0.03259968012571335, -0.0005120337591506541, 0.0647427961230278, 0.024594781920313835, -0.05812343955039978, 0.054217349737882614, -0.04845457896590233, -0.0797470211982727, 0.08279551565647125, -0.011098933406174183, 0.0927528515458107, 0.06928195804357529, 0.02340286411345005, 0.018686039373278618, 0.04218229651451111, 0.15593960881233215, 0.22442668676376343, -0.012412761338055134, -0.041085485368967056, -0.05078154057264328, -0.040494389832019806, -0.01600850187242031, 0.015044075436890125, -0.05785144492983818, -0.033252447843551636, -0.0728597640991211, -0.015066487714648247, 0.011195010505616665, 0.015441779047250748, 0.07578693330287933, -0.22024130821228027, -0.038240667432546616, 0.042616840451955795, -0.013794191181659698, -0.10639895498752594, 0.05872863903641701, 0.016779562458395958, -0.17391349375247955, -0.07854076474905014, -0.016605399549007416, 0.1603294163942337, -0.030760308727622032, 0.0619782954454422, 0.005449770484119654, 0.02271227352321148, -0.013140208087861538, 0.11191333085298538, -0.27346712350845337, 0.1954270750284195, 0.001131516881287098, -0.04876048117876053, -0.016439033672213554, -0.04243995249271393, 0.0009058643481694162, 0.14556926488876343, 0.09718295931816101, 0.0028763783629983664, 0.0669604167342186, -0.07678256928920746, -0.11943262070417404, 0.05284353718161583, 0.08068333566188812, -0.07738065719604492, 0.029960619285702705, -0.029798466712236404, 0.027152907103300095, -0.007555682212114334, -0.030231619253754616, 0.002119861776009202, -0.11661309748888016, 0.02936525270342827, -0.08075195550918579, 0.06012337654829025, 0.02433968149125576, -0.02529163844883442, -0.012048180215060711, 0.1316436529159546, -0.013300766237080097, -0.08264251798391342, -0.08976204693317413, -0.02328740619122982, 0.09523095935583115, -0.05599937587976456, 0.03358715400099754, -0.08175740391016006, -0.04073614999651909, 0.005860272329300642, -0.16970814764499664, 0.06983034312725067, -0.10846570879220963, -0.09971687942743301, -0.050264790654182434, 0.15346404910087585, 0.013677009381353855, 0.025709833949804306, 0.03220117464661598, -0.04211581498384476, -0.18150363862514496, -0.15989434719085693, -0.007562890648841858, 0.0717545747756958, -0.04433317109942436, 0.03638565540313721, 0.007171243894845247, 0.10013602674007416, 0.004198792390525341, 0.07230839878320694, 0.2026015669107437, 0.16423118114471436, -0.08760133385658264, 0.17723721265792847, 0.16266676783561707, -0.12243213504552841, -0.2722402811050415, -0.09522651135921478, -0.05925937369465828, 0.03468820080161095, 0.02297091670334339, -0.13072867691516876, 0.06184706464409828, -0.011241482570767403, -0.004976592492312193, 0.13391432166099548, -0.2790721356868744, -0.07025358080863953, 0.13864430785179138, -0.012145180255174637, 0.2560276985168457, -0.042459286749362946, -0.08155408501625061, -0.060940731316804886, -0.2339130938053131, 0.1595010906457901, -0.12908293306827545, 0.030256805941462517, -0.06380902975797653, 0.1317017376422882, 0.04475972056388855, -0.051817599684000015, 0.13714583218097687, -0.0770399421453476, 0.03692200407385826, -0.1231972947716713, -0.01437266543507576, 0.05212629213929176, -0.014681367203593254, 0.10554680228233337, -0.053141020238399506, 0.10400939732789993, -0.12106935679912567, -0.052672889083623886, -0.054288461804389954, 0.017598338425159454, -0.023758167400956154, -0.05668776109814644, -0.039483629167079926, -0.05230721831321716, 0.00942184031009674, -0.024894973263144493, -0.008981208316981792, -0.02189256064593792, 0.08200293034315109, 0.10853444039821625, 0.1416669338941574, -0.04508063197135925, -0.02666328102350235, -0.029412275180220604, -0.043095141649246216, 0.07755832374095917, -0.1675589680671692, -0.020979177206754684, 0.15767353773117065, 0.008264025673270226, 0.08081416040658951, 0.07994852215051651, -0.043529048562049866, -0.04116993397474289, 0.09435915946960449, -0.23738352954387665, -0.032961416989564896, -0.07289689034223557, -0.032304681837558746, 0.05143286660313606, 0.06389017403125763, 0.11233682930469513, -0.055076416581869125, -0.015500548295676708, 0.038369257003068924, -0.013473432511091232, -0.10457789897918701, 0.12659704685211182, 0.07594829052686691, 0.04931824654340744, -0.13000807166099548, 0.03979043290019035, -0.02080575004220009, -0.024042857810854912, -0.009190280921757221, 0.09610513597726822, -0.13868926465511322, -0.061987441033124924, 0.01100219041109085, 0.1624082624912262, -0.08940329402685165, -0.054934311658144, -0.00678250240162015, -0.07782098650932312, 0.06215988099575043, 0.06269455701112747, 0.039047662168741226, 0.10006190836429596, -0.08492296934127808, -0.004345493856817484, -0.04427671059966087, 0.02742549031972885, 0.04004936292767525, -0.01839151792228222, -0.11644710600376129, 0.050648268312215805, 0.01261399406939745, 0.21786263585090637, -0.12195943295955658, -0.07748695462942123, -0.13975368440151215, 0.03579137846827507, -0.1441981941461563, -0.02782432734966278, -0.09455464035272598, -0.0542730838060379, -0.024786408990621567, -0.02354593575000763, -0.05044161155819893, -0.03595460206270218, -0.06568260490894318, 0.04963921010494232, -0.01889806240797043, -0.04201965406537056, -0.018809955567121506, 0.04780932888388634, 0.10624072700738907, -0.0022816911805421114, 0.11582330614328384, 0.10476028919219971, -0.06149300932884216, 0.06964143365621567, -0.08975338935852051, 0.049342647194862366, 0.010800108313560486, -0.03639211133122444, 0.07890737056732178, 0.033158838748931885, 0.011678727343678474, -0.02014644630253315, -0.05248590186238289, 0.015699470415711403, 0.019494805485010147, -0.09001129865646362, 0.04338252544403076, 0.03427375108003616, -0.07128193974494934, -0.06945458799600601, -0.02831537090241909, -0.04915383830666542, 0.10966338962316513, 0.09227382391691208, 0.01580313965678215, 0.11524862796068192, -0.09982031583786011, -0.0043287696316838264, 0.0288130734115839, -0.08074736595153809, -0.01706261746585369, -0.10044533759355545, -0.01304725930094719, -0.02274717018008232, 0.2554529011249542, 0.12089171260595322, -0.025309232994914055, -0.03230812028050423, 0.07114472985267639, 0.08105676621198654, -0.0211230106651783, 0.14824873208999634, 0.03444083034992218, -0.0007331980159506202, -0.1400776505470276, 0.10673409700393677, -0.060156434774398804, -0.010151425376534462, 0.09550673514604568, -0.08319920301437378, 0.048856139183044434, 0.07468824833631516, -0.01950058713555336, 0.05372466519474983, -0.11716536432504654, -0.2690386474132538, 0.023945249617099762, 0.027653370052576065, -0.0441947840154171, 0.07253700494766235, 0.145015150308609, 0.00042942073196172714, 0.05244648456573486, 0.061493102461099625, -0.05709811672568321, -0.17804701626300812, -0.19115881621837616, -0.0384756401181221, -0.11082857847213745, -0.023826930671930313, -0.10639674216508865, 0.04148538038134575, -0.02072913944721222, 0.05925795063376427, -0.09639845043420792, 0.12447383254766464, 0.06843417137861252, -0.11577396094799042, 0.05810433253645897, -0.008805959485471249, 0.048459235578775406, -0.07387776672840118, 0.08210063725709915, -0.10721065104007721, -0.026499031111598015, -0.016933415085077286, 0.03711435943841934, -0.05858420953154564, 0.0011270071845501661, -0.10357651859521866, -0.06808403134346008, -0.056935109198093414, 0.09072309732437134, -0.024477418512105942, 0.03998230770230293, -0.014557241462171078, -0.061277762055397034, -0.025446701794862747, 0.2273169606924057, -0.018587565049529076, -0.043939489871263504, -0.0661960318684578, 0.2851298749446869, -0.06544138491153717, 0.07253559678792953, -0.032977886497974396, -0.001274158013984561, -0.07127615064382553, 0.2931469976902008, 0.36314713954925537, -0.14264726638793945, 0.011796033009886742, -0.018389053642749786, 0.03556118905544281, 0.07535336911678314, 0.18024654686450958, 0.07291083037853241, 0.3107033371925354, -0.04080776497721672, -0.01225926261395216, -0.10546047985553741, -0.03835856914520264, 0.014304363168776035, 0.02947218343615532, 0.08378855139017105, -0.05586446449160576, -0.06808875501155853, 0.1039084792137146, -0.26703301072120667, -0.02056516334414482, -0.16380304098129272, -0.061613935977220535, -0.04166705906391144, 0.0007227687747217715, 0.07237391918897629, 0.028740311041474342, 0.05115301162004471, -0.039005450904369354, -0.047156207263469696, 0.057444483041763306, -0.02154913917183876, -0.12674635648727417, 0.0002557095722295344, 0.143532857298851, -0.07906237244606018, -0.0018181405030190945, 0.0032308290246874094, 0.060348983854055405, 0.044118594378232956, 0.04119637981057167, -0.10164451599121094, 0.02608482725918293, 0.01246592216193676, -0.03363148868083954, -0.028164468705654144, 0.008156497962772846, 0.07835527509450912, -0.21697945892810822, 0.0020338469184935093, -0.14078554511070251, 0.011757226660847664, -0.07641053944826126, -0.006896127946674824, -0.08222074061632156, 0.03242125362157822, 0.004625517874956131, 0.1118803396821022, 0.11125602573156357, -0.03202005848288536, -0.0006144302315078676, -0.06265610456466675, 0.06727221608161926, -0.06884542852640152, -0.02960195019841194, -0.025150567293167114, -0.09257599711418152, -0.09335606545209885, 0.09815482050180435, -0.022339481860399246, -0.1427105814218521, 0.007601875811815262, -0.09401176869869232, -0.04369132220745087, -0.021486658602952957, 0.09382037818431854, 0.11086808145046234, 0.09180203825235367, -0.007599277421832085, 0.047748953104019165, 0.03120456263422966, 0.07436691224575043, -0.12886843085289001, -0.10148585587739944 ]
null
null
transformers
<link rel="stylesheet" href="https://unpkg.com/@tailwindcss/[email protected]/dist/typography.min.css"> <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1315573755066961920/I3tZCUi1_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Hogeschool van Amsterdam (HvA) 🤖 AI Bot </div> <div style="font-size: 15px; color: #657786">@hva bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://app.wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-model-to-generate-tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@hva's tweets](https://twitter.com/hva). <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>3241</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>840</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>94</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>2307</td> </tr> </tbody> </table> [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/2esbwpsa/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hva's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/xbh9gr6f) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/xbh9gr6f/artifacts) is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/hva'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) <section class='prose'> For more details, visit the project repository. </section> [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets) <!--- random size file -->
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hva/1606144762147/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hva
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
<link rel="stylesheet" href="URL <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('URL </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Hogeschool van Amsterdam (HvA) AI Bot </div> <div style="font-size: 15px; color: #657786">@hva bot</div> </div> I was made with huggingtweets. Create your own bot based on your favorite user with the demo! ## How does it work? The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. ## Training data The model was trained on @hva's tweets. <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>3241</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>840</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>94</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>2307</td> </tr> </tbody> </table> Explore the data, which is tracked with W&B artifacts at every step of the pipeline. ## Training procedure The model is based on a pre-trained GPT-2 which is fine-tuned on @hva's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/hva'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> ![Follow](URL <section class='prose'> For more details, visit the project repository. </section> ![GitHub stars](URL
[ "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @hva's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>3241</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>840</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>94</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>2307</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @hva's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/hva'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @hva's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>3241</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>840</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>94</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>2307</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @hva's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/hva'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ 57, 34, 428, 73, 9, 165, 48, 58 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report." ]
[ -0.04084593802690506, 0.035596683621406555, -0.0024457171093672514, 0.04662978649139404, 0.10991521924734116, 0.022836215794086456, 0.12812861800193787, 0.0424627922475338, -0.03746044635772705, -0.03597303107380867, 0.22758877277374268, 0.1009177565574646, 0.03089720755815506, 0.17962171137332916, 0.010350672528147697, -0.2703946828842163, 0.015237200073897839, 0.0647135004401207, -0.07720091193914413, 0.15752871334552765, 0.05562684312462807, -0.049801189452409744, 0.08214939385652542, 0.032038331031799316, -0.165513277053833, -0.004831716418266296, -0.02072383277118206, -0.04504403471946716, 0.09232694655656815, 0.06956911832094193, 0.07011176645755768, 0.034282486885786057, 0.017851393669843674, -0.0714372918009758, 0.06354191154241562, 0.014452377334237099, -0.02349161170423031, 0.13615116477012634, 0.028668763116002083, -0.0002947957837022841, 0.1798527091741562, 0.11815319955348969, 0.016722125932574272, 0.016196802258491516, -0.1166125237941742, -0.0606788769364357, 0.012365915812551975, 0.04470464214682579, 0.10005760192871094, 0.058856748044490814, 0.01943058706820011, 0.13215520977973938, -0.1164829432964325, 0.08512931317090988, 0.1828341782093048, -0.24191047251224518, -0.006823094096034765, 0.061043880879879, 0.08518847078084946, 0.02852868288755417, -0.0027500083670020103, 0.050437480211257935, 0.06484624743461609, 0.021347152069211006, 0.03636380657553673, -0.0638979896903038, 0.05009674280881882, 0.011186900548636913, -0.10215270519256592, -0.07660897821187973, 0.2294245809316635, -0.0602995827794075, 0.004886541981250048, -0.028186868876218796, -0.08490151911973953, -0.06026294082403183, -0.012795685790479183, -0.05738116800785065, -0.01700775697827339, 0.034475523978471756, 0.0214629378169775, -0.10922146588563919, -0.07046429812908173, -0.1146778091788292, -0.09578189998865128, 0.17879855632781982, -0.02900231070816517, 0.08940442651510239, -0.2603394091129303, 0.2254239320755005, 0.07019765675067902, -0.11909467726945877, 0.04757627099752426, -0.11814092099666595, 0.08530338853597641, 0.02207805961370468, 0.041434839367866516, 0.07761925458908081, 0.04161522537469864, 0.11940909177064896, 0.03257475048303604, -0.00314142694696784, 0.05456724017858505, 0.07224375009536743, 0.0941813513636589, 0.1230122447013855, -0.07287998497486115, -0.07873915135860443, 0.08034131675958633, -0.04709449037909508, -0.11787727475166321, -0.06861002743244171, -0.1452382206916809, -0.004202034790068865, -0.0335184708237648, 0.07922724634408951, 0.05637102574110031, 0.09526676684617996, -0.01433930266648531, -0.05777551606297493, 0.04157217592000961, -0.06985066086053848, 0.019995175302028656, -0.011708668433129787, -0.060763102024793625, 0.13121068477630615, 0.04688004031777382, -0.014275136403739452, -0.08673419058322906, 0.07951672375202179, -0.1204570084810257, -0.07978847622871399, -0.08239417523145676, -0.05098734796047211, -0.007686138618737459, -0.11281027644872665, 0.049203939735889435, -0.11458899080753326, -0.22705501317977905, -0.01313747651875019, 0.04550096020102501, -0.016462473198771477, -0.03707117214798927, -0.040630146861076355, -0.009473399259150028, 0.04880702868103981, -0.042894408106803894, 0.039052072912454605, -0.05325083062052727, 0.050018906593322754, -0.09618895500898361, 0.051321301609277725, -0.10470817238092422, 0.041251372545957565, -0.09671807289123535, 0.07595963031053543, 0.0017866486450657248, 0.0454767569899559, 0.010063555091619492, 0.08985432982444763, -0.03214199095964432, -0.044836416840553284, -0.07869677990674973, 0.026561295613646507, 0.02284199558198452, 0.20134314894676208, -0.10196486860513687, -0.0819794163107872, 0.12614667415618896, -0.07252102345228195, -0.1288122832775116, 0.0409054271876812, -0.02831157296895981, 0.17958028614521027, 0.07370224595069885, 0.16096454858779907, 0.12039237469434738, -0.03798284754157066, 0.1263856589794159, 0.14821170270442963, -0.1269366294145584, -0.004153167363256216, 0.039416827261447906, 0.014042570255696774, -0.20559121668338776, 0.04052022844552994, -0.01946125738322735, 0.06584736704826355, -0.10201486945152283, -0.00946728140115738, 0.0031527038663625717, -0.02320384420454502, 0.0023026331327855587, -0.0472555048763752, 0.061078161001205444, 0.038737643510103226, -0.022763127461075783, 0.029682613909244537, 0.06635552644729614, -0.026160234585404396, -0.00823320634663105, -0.04484035447239876, 0.10009831935167313, -0.07260703295469284, 0.06797321885824203, -0.13160665333271027, -0.003086181590333581, -0.012450510635972023, 0.0972909927368164, 0.03811546042561531, 0.10621625185012817, 0.05470104143023491, 0.03126294165849686, 0.07701993733644485, -0.02846951223909855, 0.0746634304523468, 0.01002051867544651, -0.0850096121430397, -0.1272277683019638, 0.015217535197734833, -0.10649837553501129, -0.004191380459815264, -0.08523700386285782, -0.0015737697249278426, -0.12802091240882874, 0.05826076865196228, -0.016465239226818085, 0.0539434514939785, -0.055182818323373795, -0.04337453469634056, -0.044662054628133774, -0.022007398307323456, 0.0482511967420578, -0.033139705657958984, -0.06687536835670471, 0.16832175850868225, -0.15395553410053253, 0.2592274248600006, 0.1313537061214447, -0.0889907032251358, 0.002020547864958644, -0.07812081277370453, -0.04194976016879082, -0.012868959456682205, 0.07527336478233337, -0.03700125962495804, 0.15495356917381287, -0.03386903926730156, 0.17382068932056427, -0.099679134786129, -0.0334031768143177, 0.02144831046462059, -0.10981054604053497, 0.057656705379486084, 0.08051177859306335, 0.04427298903465271, -0.159133642911911, 0.08837400376796722, 0.19756358861923218, 0.05472150072455406, 0.20321963727474213, -0.006869805511087179, -0.06112205237150192, -0.05358194187283516, -0.0808696523308754, -0.052568696439266205, 0.056259434670209885, -0.09903126955032349, -0.004000484477728605, 0.06423190236091614, 0.08783505111932755, 0.11237549781799316, -0.10904275625944138, -0.046180129051208496, 0.05125856027007103, -0.004819708876311779, -0.051060013473033905, 0.07006146013736725, -0.0659489631652832, 0.13217470049858093, 0.014598124660551548, -0.07049204409122467, 0.0036125897895544767, -0.004913401324301958, -0.11891388893127441, 0.20653130114078522, -0.08047540485858917, -0.27306002378463745, -0.16792123019695282, -0.16288253664970398, 0.07165426760911942, 0.038431257009506226, 0.033738572150468826, -0.08776884526014328, -0.020982403308153152, 0.004409478977322578, 0.11553267389535904, -0.09698133170604706, 0.013121976517140865, 0.008159824647009373, -0.018650712445378304, -0.07579360157251358, -0.09033482521772385, -0.0241270512342453, -0.02461584471166134, 0.020020704716444016, 0.03998296707868576, -0.11154978722333908, 0.06758414953947067, 0.2167699933052063, -0.015538511797785759, 0.06870997697114944, 0.00025148785789497197, 0.26176807284355164, -0.08426473289728165, 0.040830448269844055, 0.11926601082086563, -0.08760137856006622, 0.05199241638183594, 0.07132956385612488, 0.03210015222430229, -0.014074578881263733, 0.016441889107227325, -0.11233895272016525, -0.12864868342876434, -0.1923626959323883, -0.06961654871702194, -0.028241310268640518, 0.13464264571666718, 0.031150488182902336, 0.04321796074509621, 0.10346641391515732, 0.07471037656068802, 0.06701335310935974, 0.03259968012571335, -0.0005120337591506541, 0.0647427961230278, 0.024594781920313835, -0.05812343955039978, 0.054217349737882614, -0.04845457896590233, -0.0797470211982727, 0.08279551565647125, -0.011098933406174183, 0.0927528515458107, 0.06928195804357529, 0.02340286411345005, 0.018686039373278618, 0.04218229651451111, 0.15593960881233215, 0.22442668676376343, -0.012412761338055134, -0.041085485368967056, -0.05078154057264328, -0.040494389832019806, -0.01600850187242031, 0.015044075436890125, -0.05785144492983818, -0.033252447843551636, -0.0728597640991211, -0.015066487714648247, 0.011195010505616665, 0.015441779047250748, 0.07578693330287933, -0.22024130821228027, -0.038240667432546616, 0.042616840451955795, -0.013794191181659698, -0.10639895498752594, 0.05872863903641701, 0.016779562458395958, -0.17391349375247955, -0.07854076474905014, -0.016605399549007416, 0.1603294163942337, -0.030760308727622032, 0.0619782954454422, 0.005449770484119654, 0.02271227352321148, -0.013140208087861538, 0.11191333085298538, -0.27346712350845337, 0.1954270750284195, 0.001131516881287098, -0.04876048117876053, -0.016439033672213554, -0.04243995249271393, 0.0009058643481694162, 0.14556926488876343, 0.09718295931816101, 0.0028763783629983664, 0.0669604167342186, -0.07678256928920746, -0.11943262070417404, 0.05284353718161583, 0.08068333566188812, -0.07738065719604492, 0.029960619285702705, -0.029798466712236404, 0.027152907103300095, -0.007555682212114334, -0.030231619253754616, 0.002119861776009202, -0.11661309748888016, 0.02936525270342827, -0.08075195550918579, 0.06012337654829025, 0.02433968149125576, -0.02529163844883442, -0.012048180215060711, 0.1316436529159546, -0.013300766237080097, -0.08264251798391342, -0.08976204693317413, -0.02328740619122982, 0.09523095935583115, -0.05599937587976456, 0.03358715400099754, -0.08175740391016006, -0.04073614999651909, 0.005860272329300642, -0.16970814764499664, 0.06983034312725067, -0.10846570879220963, -0.09971687942743301, -0.050264790654182434, 0.15346404910087585, 0.013677009381353855, 0.025709833949804306, 0.03220117464661598, -0.04211581498384476, -0.18150363862514496, -0.15989434719085693, -0.007562890648841858, 0.0717545747756958, -0.04433317109942436, 0.03638565540313721, 0.007171243894845247, 0.10013602674007416, 0.004198792390525341, 0.07230839878320694, 0.2026015669107437, 0.16423118114471436, -0.08760133385658264, 0.17723721265792847, 0.16266676783561707, -0.12243213504552841, -0.2722402811050415, -0.09522651135921478, -0.05925937369465828, 0.03468820080161095, 0.02297091670334339, -0.13072867691516876, 0.06184706464409828, -0.011241482570767403, -0.004976592492312193, 0.13391432166099548, -0.2790721356868744, -0.07025358080863953, 0.13864430785179138, -0.012145180255174637, 0.2560276985168457, -0.042459286749362946, -0.08155408501625061, -0.060940731316804886, -0.2339130938053131, 0.1595010906457901, -0.12908293306827545, 0.030256805941462517, -0.06380902975797653, 0.1317017376422882, 0.04475972056388855, -0.051817599684000015, 0.13714583218097687, -0.0770399421453476, 0.03692200407385826, -0.1231972947716713, -0.01437266543507576, 0.05212629213929176, -0.014681367203593254, 0.10554680228233337, -0.053141020238399506, 0.10400939732789993, -0.12106935679912567, -0.052672889083623886, -0.054288461804389954, 0.017598338425159454, -0.023758167400956154, -0.05668776109814644, -0.039483629167079926, -0.05230721831321716, 0.00942184031009674, -0.024894973263144493, -0.008981208316981792, -0.02189256064593792, 0.08200293034315109, 0.10853444039821625, 0.1416669338941574, -0.04508063197135925, -0.02666328102350235, -0.029412275180220604, -0.043095141649246216, 0.07755832374095917, -0.1675589680671692, -0.020979177206754684, 0.15767353773117065, 0.008264025673270226, 0.08081416040658951, 0.07994852215051651, -0.043529048562049866, -0.04116993397474289, 0.09435915946960449, -0.23738352954387665, -0.032961416989564896, -0.07289689034223557, -0.032304681837558746, 0.05143286660313606, 0.06389017403125763, 0.11233682930469513, -0.055076416581869125, -0.015500548295676708, 0.038369257003068924, -0.013473432511091232, -0.10457789897918701, 0.12659704685211182, 0.07594829052686691, 0.04931824654340744, -0.13000807166099548, 0.03979043290019035, -0.02080575004220009, -0.024042857810854912, -0.009190280921757221, 0.09610513597726822, -0.13868926465511322, -0.061987441033124924, 0.01100219041109085, 0.1624082624912262, -0.08940329402685165, -0.054934311658144, -0.00678250240162015, -0.07782098650932312, 0.06215988099575043, 0.06269455701112747, 0.039047662168741226, 0.10006190836429596, -0.08492296934127808, -0.004345493856817484, -0.04427671059966087, 0.02742549031972885, 0.04004936292767525, -0.01839151792228222, -0.11644710600376129, 0.050648268312215805, 0.01261399406939745, 0.21786263585090637, -0.12195943295955658, -0.07748695462942123, -0.13975368440151215, 0.03579137846827507, -0.1441981941461563, -0.02782432734966278, -0.09455464035272598, -0.0542730838060379, -0.024786408990621567, -0.02354593575000763, -0.05044161155819893, -0.03595460206270218, -0.06568260490894318, 0.04963921010494232, -0.01889806240797043, -0.04201965406537056, -0.018809955567121506, 0.04780932888388634, 0.10624072700738907, -0.0022816911805421114, 0.11582330614328384, 0.10476028919219971, -0.06149300932884216, 0.06964143365621567, -0.08975338935852051, 0.049342647194862366, 0.010800108313560486, -0.03639211133122444, 0.07890737056732178, 0.033158838748931885, 0.011678727343678474, -0.02014644630253315, -0.05248590186238289, 0.015699470415711403, 0.019494805485010147, -0.09001129865646362, 0.04338252544403076, 0.03427375108003616, -0.07128193974494934, -0.06945458799600601, -0.02831537090241909, -0.04915383830666542, 0.10966338962316513, 0.09227382391691208, 0.01580313965678215, 0.11524862796068192, -0.09982031583786011, -0.0043287696316838264, 0.0288130734115839, -0.08074736595153809, -0.01706261746585369, -0.10044533759355545, -0.01304725930094719, -0.02274717018008232, 0.2554529011249542, 0.12089171260595322, -0.025309232994914055, -0.03230812028050423, 0.07114472985267639, 0.08105676621198654, -0.0211230106651783, 0.14824873208999634, 0.03444083034992218, -0.0007331980159506202, -0.1400776505470276, 0.10673409700393677, -0.060156434774398804, -0.010151425376534462, 0.09550673514604568, -0.08319920301437378, 0.048856139183044434, 0.07468824833631516, -0.01950058713555336, 0.05372466519474983, -0.11716536432504654, -0.2690386474132538, 0.023945249617099762, 0.027653370052576065, -0.0441947840154171, 0.07253700494766235, 0.145015150308609, 0.00042942073196172714, 0.05244648456573486, 0.061493102461099625, -0.05709811672568321, -0.17804701626300812, -0.19115881621837616, -0.0384756401181221, -0.11082857847213745, -0.023826930671930313, -0.10639674216508865, 0.04148538038134575, -0.02072913944721222, 0.05925795063376427, -0.09639845043420792, 0.12447383254766464, 0.06843417137861252, -0.11577396094799042, 0.05810433253645897, -0.008805959485471249, 0.048459235578775406, -0.07387776672840118, 0.08210063725709915, -0.10721065104007721, -0.026499031111598015, -0.016933415085077286, 0.03711435943841934, -0.05858420953154564, 0.0011270071845501661, -0.10357651859521866, -0.06808403134346008, -0.056935109198093414, 0.09072309732437134, -0.024477418512105942, 0.03998230770230293, -0.014557241462171078, -0.061277762055397034, -0.025446701794862747, 0.2273169606924057, -0.018587565049529076, -0.043939489871263504, -0.0661960318684578, 0.2851298749446869, -0.06544138491153717, 0.07253559678792953, -0.032977886497974396, -0.001274158013984561, -0.07127615064382553, 0.2931469976902008, 0.36314713954925537, -0.14264726638793945, 0.011796033009886742, -0.018389053642749786, 0.03556118905544281, 0.07535336911678314, 0.18024654686450958, 0.07291083037853241, 0.3107033371925354, -0.04080776497721672, -0.01225926261395216, -0.10546047985553741, -0.03835856914520264, 0.014304363168776035, 0.02947218343615532, 0.08378855139017105, -0.05586446449160576, -0.06808875501155853, 0.1039084792137146, -0.26703301072120667, -0.02056516334414482, -0.16380304098129272, -0.061613935977220535, -0.04166705906391144, 0.0007227687747217715, 0.07237391918897629, 0.028740311041474342, 0.05115301162004471, -0.039005450904369354, -0.047156207263469696, 0.057444483041763306, -0.02154913917183876, -0.12674635648727417, 0.0002557095722295344, 0.143532857298851, -0.07906237244606018, -0.0018181405030190945, 0.0032308290246874094, 0.060348983854055405, 0.044118594378232956, 0.04119637981057167, -0.10164451599121094, 0.02608482725918293, 0.01246592216193676, -0.03363148868083954, -0.028164468705654144, 0.008156497962772846, 0.07835527509450912, -0.21697945892810822, 0.0020338469184935093, -0.14078554511070251, 0.011757226660847664, -0.07641053944826126, -0.006896127946674824, -0.08222074061632156, 0.03242125362157822, 0.004625517874956131, 0.1118803396821022, 0.11125602573156357, -0.03202005848288536, -0.0006144302315078676, -0.06265610456466675, 0.06727221608161926, -0.06884542852640152, -0.02960195019841194, -0.025150567293167114, -0.09257599711418152, -0.09335606545209885, 0.09815482050180435, -0.022339481860399246, -0.1427105814218521, 0.007601875811815262, -0.09401176869869232, -0.04369132220745087, -0.021486658602952957, 0.09382037818431854, 0.11086808145046234, 0.09180203825235367, -0.007599277421832085, 0.047748953104019165, 0.03120456263422966, 0.07436691224575043, -0.12886843085289001, -0.10148585587739944 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1373354229457358852/X7iF3Jlj_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">heavens 🤖 AI Bot </div> <div style="font-size: 15px">@hvvvvns bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@hvvvvns's tweets](https://twitter.com/hvvvvns). | Data | Quantity | | --- | --- | | Tweets downloaded | 2113 | | Retweets | 256 | | Short tweets | 246 | | Tweets kept | 1611 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/36ntic3w/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hvvvvns's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/22lkz20i) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/22lkz20i/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hvvvvns') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hvvvvns/1616688397614/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hvvvvns
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
heavens AI Bot @hvvvvns bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @hvvvvns's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hvvvvns's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1275064805/wrist3_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">what is proctoring if not surveillance persevering 🤖 AI Bot </div> <div style="font-size: 15px">@hypervisible bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@hypervisible's tweets](https://twitter.com/hypervisible). | Data | Quantity | | --- | --- | | Tweets downloaded | 3232 | | Retweets | 1259 | | Short tweets | 756 | | Tweets kept | 1217 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/2ig2xg6o/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hypervisible's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/1t0vlj1u) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/1t0vlj1u/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hypervisible') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hypervisible/1617240985210/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hypervisible
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
what is proctoring if not surveillance persevering AI Bot @hypervisible bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @hypervisible's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hypervisible's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1290728570541625344/3WjJbLDD_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">ᴊᴀᴋᴇ 🤖 AI Bot </div> <div style="font-size: 15px">@hypogolic bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@hypogolic's tweets](https://twitter.com/hypogolic). | Data | Quantity | | --- | --- | | Tweets downloaded | 3240 | | Retweets | 843 | | Short tweets | 232 | | Tweets kept | 2165 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/n67xr7jp/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @hypogolic's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/uzjvv38k) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/uzjvv38k/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/hypogolic') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/hypogolic/1618114859275/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/hypogolic
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
ᴊᴀᴋᴇ AI Bot @hypogolic bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @hypogolic's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @hypogolic's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1161880961904103427/JVRYr0AS_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Kirook 🤖 AI Bot </div> <div style="font-size: 15px">@i_am_kirook bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://app.wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-model-to-generate-tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@i_am_kirook's tweets](https://twitter.com/i_am_kirook). | Data | Quantity | | --- | --- | | Tweets downloaded | 3036 | | Retweets | 2210 | | Short tweets | 98 | | Tweets kept | 728 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/eha93a65/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @i_am_kirook's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/1oalyp1r) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/1oalyp1r/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/i_am_kirook') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/i_am_kirook/1614143839460/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/i_am_kirook
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
Kirook AI Bot @i\_am\_kirook bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @i\_am\_kirook's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @i\_am\_kirook's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1404915017703575558/05H2noyT_400x400.png&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">🍮CC🍮</div> <div style="text-align: center; font-size: 14px;">@i_apx_86</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from 🍮CC🍮. | Data | 🍮CC🍮 | | --- | --- | | Tweets downloaded | 701 | | Retweets | 391 | | Short tweets | 22 | | Tweets kept | 288 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/2xwg9l0v/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @i_apx_86's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/11srzptq) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/11srzptq/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/i_apx_86') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/i_apx_86/1625887532973/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/i_apx_86
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT CC @i\_apx\_86 I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from CC. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @i\_apx\_86's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1365378781330903044/IM1reWEI_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">ben 🇺🇳🇮🇹🇺🇲 🤖 AI Bot </div> <div style="font-size: 15px">@i_like_flags bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@i_like_flags's tweets](https://twitter.com/i_like_flags). | Data | Quantity | | --- | --- | | Tweets downloaded | 360 | | Retweets | 7 | | Short tweets | 53 | | Tweets kept | 300 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/1j4eszm8/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @i_like_flags's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/24d5pyin) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/24d5pyin/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/i_like_flags') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/i_like_flags/1616728238672/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/i_like_flags
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
ben 🇺🇳🇮🇹🇺🇲 AI Bot @i\_like\_flags bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @i\_like\_flags's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @i\_like\_flags's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1268449773406822400/hVJx4jei_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Fabio Tollon 🤖 AI Bot </div> <div style="font-size: 15px">@i_run_i_think bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@i_run_i_think's tweets](https://twitter.com/i_run_i_think). | Data | Quantity | | --- | --- | | Tweets downloaded | 185 | | Retweets | 35 | | Short tweets | 14 | | Tweets kept | 136 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/1b5v8pky/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @i_run_i_think's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/1v3tivge) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/1v3tivge/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/i_run_i_think') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/i_run_i_think/1616778591703/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/i_run_i_think
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
Fabio Tollon AI Bot @i\_run\_i\_think bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @i\_run\_i\_think's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @i\_run\_i\_think's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1371138320026177536/FzLPlrhM_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">Aaron</div> <div style="text-align: center; font-size: 14px;">@iamaaronwill</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from Aaron. | Data | Aaron | | --- | --- | | Tweets downloaded | 3245 | | Retweets | 102 | | Short tweets | 1332 | | Tweets kept | 1811 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/necnw243/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @iamaaronwill's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/2500hrd9) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/2500hrd9/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/iamaaronwill') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/iamaaronwill/1622081352140/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/iamaaronwill
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT Aaron @iamaaronwill I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from Aaron. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @iamaaronwill's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1357775700497948679/acPCcD9Q_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">alkhemik 🤖 AI Bot </div> <div style="font-size: 15px">@iamalkhemik bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://app.wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-model-to-generate-tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@iamalkhemik's tweets](https://twitter.com/iamalkhemik). | Data | Quantity | | --- | --- | | Tweets downloaded | 3197 | | Retweets | 1001 | | Short tweets | 671 | | Tweets kept | 1525 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/8ifxsghs/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @iamalkhemik's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/2duh440l) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/2duh440l/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/iamalkhemik') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/iamalkhemik/1614122211615/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/iamalkhemik
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
alkhemik AI Bot @iamalkhemik bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @iamalkhemik's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @iamalkhemik's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1541590121102905345/jxbNo0z0_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">Cardi B</div> <div style="text-align: center; font-size: 14px;">@iamcardib</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from Cardi B. | Data | Cardi B | | --- | --- | | Tweets downloaded | 3073 | | Retweets | 1500 | | Short tweets | 348 | | Tweets kept | 1225 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/r25kkt8t/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @iamcardib's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/ay08pnd6) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/ay08pnd6/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/iamcardib') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "http://www.huggingtweets.com/iamcardib/1663110443917/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/iamcardib
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT Cardi B @iamcardib I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from Cardi B. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @iamcardib's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1178631635606151168/yIlrcg4o_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">I Am Devloper</div> <div style="text-align: center; font-size: 14px;">@iamdevloper</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from I Am Devloper. | Data | I Am Devloper | | --- | --- | | Tweets downloaded | 3244 | | Retweets | 190 | | Short tweets | 233 | | Tweets kept | 2821 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/2k1120ro/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @iamdevloper's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/2wr63mia) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/2wr63mia/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/iamdevloper') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/iamdevloper/1634677176847/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/iamdevloper
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT I Am Devloper @iamdevloper I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from I Am Devloper. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @iamdevloper's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1343196052518809601/qsUS49cF_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Cakemari 🤖 AI Bot </div> <div style="font-size: 15px">@iamhajimari bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@iamhajimari's tweets](https://twitter.com/iamhajimari). | Data | Quantity | | --- | --- | | Tweets downloaded | 2998 | | Retweets | 2288 | | Short tweets | 150 | | Tweets kept | 560 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/mxyxqgz3/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @iamhajimari's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/291hg7nk) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/291hg7nk/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/iamhajimari') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/iamhajimari/1617794068954/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/iamhajimari
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
Cakemari AI Bot @iamhajimari bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @iamhajimari's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @iamhajimari's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<link rel="stylesheet" href="https://unpkg.com/@tailwindcss/[email protected]/dist/typography.min.css"> <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1318511011117199362/htNsviXp_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Shah Rukh Khan 🤖 AI Bot </div> <div style="font-size: 15px; color: #657786">@iamsrk bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://app.wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-model-to-generate-tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@iamsrk's tweets](https://twitter.com/iamsrk). <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>3215</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>62</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>275</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>2878</td> </tr> </tbody> </table> [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/2x5ax455/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @iamsrk's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/ky58mqoc) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/ky58mqoc/artifacts) is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/iamsrk'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) <section class='prose'> For more details, visit the project repository. </section> [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://github.com/borisdayma/huggingtweets/blob/master/img/logo.png?raw=true", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/iamsrk
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
<link rel="stylesheet" href="URL <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('URL </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Shah Rukh Khan AI Bot </div> <div style="font-size: 15px; color: #657786">@iamsrk bot</div> </div> I was made with huggingtweets. Create your own bot based on your favorite user with the demo! ## How does it work? The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. ## Training data The model was trained on @iamsrk's tweets. <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>3215</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>62</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>275</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>2878</td> </tr> </tbody> </table> Explore the data, which is tracked with W&B artifacts at every step of the pipeline. ## Training procedure The model is based on a pre-trained GPT-2 which is fine-tuned on @iamsrk's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/iamsrk'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> ![Follow](URL <section class='prose'> For more details, visit the project repository. </section> ![GitHub stars](URL
[ "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @iamsrk's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>3215</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>62</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>275</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>2878</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @iamsrk's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/iamsrk'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @iamsrk's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>3215</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>62</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>275</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>2878</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @iamsrk's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/iamsrk'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ 57, 34, 429, 74, 9, 166, 48, 58 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report." ]
[ -0.04084593802690506, 0.035596683621406555, -0.0024457171093672514, 0.04662978649139404, 0.10991521924734116, 0.022836215794086456, 0.12812861800193787, 0.0424627922475338, -0.03746044635772705, -0.03597303107380867, 0.22758877277374268, 0.1009177565574646, 0.03089720755815506, 0.17962171137332916, 0.010350672528147697, -0.2703946828842163, 0.015237200073897839, 0.0647135004401207, -0.07720091193914413, 0.15752871334552765, 0.05562684312462807, -0.049801189452409744, 0.08214939385652542, 0.032038331031799316, -0.165513277053833, -0.004831716418266296, -0.02072383277118206, -0.04504403471946716, 0.09232694655656815, 0.06956911832094193, 0.07011176645755768, 0.034282486885786057, 0.017851393669843674, -0.0714372918009758, 0.06354191154241562, 0.014452377334237099, -0.02349161170423031, 0.13615116477012634, 0.028668763116002083, -0.0002947957837022841, 0.1798527091741562, 0.11815319955348969, 0.016722125932574272, 0.016196802258491516, -0.1166125237941742, -0.0606788769364357, 0.012365915812551975, 0.04470464214682579, 0.10005760192871094, 0.058856748044490814, 0.01943058706820011, 0.13215520977973938, -0.1164829432964325, 0.08512931317090988, 0.1828341782093048, -0.24191047251224518, -0.006823094096034765, 0.061043880879879, 0.08518847078084946, 0.02852868288755417, -0.0027500083670020103, 0.050437480211257935, 0.06484624743461609, 0.021347152069211006, 0.03636380657553673, -0.0638979896903038, 0.05009674280881882, 0.011186900548636913, -0.10215270519256592, -0.07660897821187973, 0.2294245809316635, -0.0602995827794075, 0.004886541981250048, -0.028186868876218796, -0.08490151911973953, -0.06026294082403183, -0.012795685790479183, -0.05738116800785065, -0.01700775697827339, 0.034475523978471756, 0.0214629378169775, -0.10922146588563919, -0.07046429812908173, -0.1146778091788292, -0.09578189998865128, 0.17879855632781982, -0.02900231070816517, 0.08940442651510239, -0.2603394091129303, 0.2254239320755005, 0.07019765675067902, -0.11909467726945877, 0.04757627099752426, -0.11814092099666595, 0.08530338853597641, 0.02207805961370468, 0.041434839367866516, 0.07761925458908081, 0.04161522537469864, 0.11940909177064896, 0.03257475048303604, -0.00314142694696784, 0.05456724017858505, 0.07224375009536743, 0.0941813513636589, 0.1230122447013855, -0.07287998497486115, -0.07873915135860443, 0.08034131675958633, -0.04709449037909508, -0.11787727475166321, -0.06861002743244171, -0.1452382206916809, -0.004202034790068865, -0.0335184708237648, 0.07922724634408951, 0.05637102574110031, 0.09526676684617996, -0.01433930266648531, -0.05777551606297493, 0.04157217592000961, -0.06985066086053848, 0.019995175302028656, -0.011708668433129787, -0.060763102024793625, 0.13121068477630615, 0.04688004031777382, -0.014275136403739452, -0.08673419058322906, 0.07951672375202179, -0.1204570084810257, -0.07978847622871399, -0.08239417523145676, -0.05098734796047211, -0.007686138618737459, -0.11281027644872665, 0.049203939735889435, -0.11458899080753326, -0.22705501317977905, -0.01313747651875019, 0.04550096020102501, -0.016462473198771477, -0.03707117214798927, -0.040630146861076355, -0.009473399259150028, 0.04880702868103981, -0.042894408106803894, 0.039052072912454605, -0.05325083062052727, 0.050018906593322754, -0.09618895500898361, 0.051321301609277725, -0.10470817238092422, 0.041251372545957565, -0.09671807289123535, 0.07595963031053543, 0.0017866486450657248, 0.0454767569899559, 0.010063555091619492, 0.08985432982444763, -0.03214199095964432, -0.044836416840553284, -0.07869677990674973, 0.026561295613646507, 0.02284199558198452, 0.20134314894676208, -0.10196486860513687, -0.0819794163107872, 0.12614667415618896, -0.07252102345228195, -0.1288122832775116, 0.0409054271876812, -0.02831157296895981, 0.17958028614521027, 0.07370224595069885, 0.16096454858779907, 0.12039237469434738, -0.03798284754157066, 0.1263856589794159, 0.14821170270442963, -0.1269366294145584, -0.004153167363256216, 0.039416827261447906, 0.014042570255696774, -0.20559121668338776, 0.04052022844552994, -0.01946125738322735, 0.06584736704826355, -0.10201486945152283, -0.00946728140115738, 0.0031527038663625717, -0.02320384420454502, 0.0023026331327855587, -0.0472555048763752, 0.061078161001205444, 0.038737643510103226, -0.022763127461075783, 0.029682613909244537, 0.06635552644729614, -0.026160234585404396, -0.00823320634663105, -0.04484035447239876, 0.10009831935167313, -0.07260703295469284, 0.06797321885824203, -0.13160665333271027, -0.003086181590333581, -0.012450510635972023, 0.0972909927368164, 0.03811546042561531, 0.10621625185012817, 0.05470104143023491, 0.03126294165849686, 0.07701993733644485, -0.02846951223909855, 0.0746634304523468, 0.01002051867544651, -0.0850096121430397, -0.1272277683019638, 0.015217535197734833, -0.10649837553501129, -0.004191380459815264, -0.08523700386285782, -0.0015737697249278426, -0.12802091240882874, 0.05826076865196228, -0.016465239226818085, 0.0539434514939785, -0.055182818323373795, -0.04337453469634056, -0.044662054628133774, -0.022007398307323456, 0.0482511967420578, -0.033139705657958984, -0.06687536835670471, 0.16832175850868225, -0.15395553410053253, 0.2592274248600006, 0.1313537061214447, -0.0889907032251358, 0.002020547864958644, -0.07812081277370453, -0.04194976016879082, -0.012868959456682205, 0.07527336478233337, -0.03700125962495804, 0.15495356917381287, -0.03386903926730156, 0.17382068932056427, -0.099679134786129, -0.0334031768143177, 0.02144831046462059, -0.10981054604053497, 0.057656705379486084, 0.08051177859306335, 0.04427298903465271, -0.159133642911911, 0.08837400376796722, 0.19756358861923218, 0.05472150072455406, 0.20321963727474213, -0.006869805511087179, -0.06112205237150192, -0.05358194187283516, -0.0808696523308754, -0.052568696439266205, 0.056259434670209885, -0.09903126955032349, -0.004000484477728605, 0.06423190236091614, 0.08783505111932755, 0.11237549781799316, -0.10904275625944138, -0.046180129051208496, 0.05125856027007103, -0.004819708876311779, -0.051060013473033905, 0.07006146013736725, -0.0659489631652832, 0.13217470049858093, 0.014598124660551548, -0.07049204409122467, 0.0036125897895544767, -0.004913401324301958, -0.11891388893127441, 0.20653130114078522, -0.08047540485858917, -0.27306002378463745, -0.16792123019695282, -0.16288253664970398, 0.07165426760911942, 0.038431257009506226, 0.033738572150468826, -0.08776884526014328, -0.020982403308153152, 0.004409478977322578, 0.11553267389535904, -0.09698133170604706, 0.013121976517140865, 0.008159824647009373, -0.018650712445378304, -0.07579360157251358, -0.09033482521772385, -0.0241270512342453, -0.02461584471166134, 0.020020704716444016, 0.03998296707868576, -0.11154978722333908, 0.06758414953947067, 0.2167699933052063, -0.015538511797785759, 0.06870997697114944, 0.00025148785789497197, 0.26176807284355164, -0.08426473289728165, 0.040830448269844055, 0.11926601082086563, -0.08760137856006622, 0.05199241638183594, 0.07132956385612488, 0.03210015222430229, -0.014074578881263733, 0.016441889107227325, -0.11233895272016525, -0.12864868342876434, -0.1923626959323883, -0.06961654871702194, -0.028241310268640518, 0.13464264571666718, 0.031150488182902336, 0.04321796074509621, 0.10346641391515732, 0.07471037656068802, 0.06701335310935974, 0.03259968012571335, -0.0005120337591506541, 0.0647427961230278, 0.024594781920313835, -0.05812343955039978, 0.054217349737882614, -0.04845457896590233, -0.0797470211982727, 0.08279551565647125, -0.011098933406174183, 0.0927528515458107, 0.06928195804357529, 0.02340286411345005, 0.018686039373278618, 0.04218229651451111, 0.15593960881233215, 0.22442668676376343, -0.012412761338055134, -0.041085485368967056, -0.05078154057264328, -0.040494389832019806, -0.01600850187242031, 0.015044075436890125, -0.05785144492983818, -0.033252447843551636, -0.0728597640991211, -0.015066487714648247, 0.011195010505616665, 0.015441779047250748, 0.07578693330287933, -0.22024130821228027, -0.038240667432546616, 0.042616840451955795, -0.013794191181659698, -0.10639895498752594, 0.05872863903641701, 0.016779562458395958, -0.17391349375247955, -0.07854076474905014, -0.016605399549007416, 0.1603294163942337, -0.030760308727622032, 0.0619782954454422, 0.005449770484119654, 0.02271227352321148, -0.013140208087861538, 0.11191333085298538, -0.27346712350845337, 0.1954270750284195, 0.001131516881287098, -0.04876048117876053, -0.016439033672213554, -0.04243995249271393, 0.0009058643481694162, 0.14556926488876343, 0.09718295931816101, 0.0028763783629983664, 0.0669604167342186, -0.07678256928920746, -0.11943262070417404, 0.05284353718161583, 0.08068333566188812, -0.07738065719604492, 0.029960619285702705, -0.029798466712236404, 0.027152907103300095, -0.007555682212114334, -0.030231619253754616, 0.002119861776009202, -0.11661309748888016, 0.02936525270342827, -0.08075195550918579, 0.06012337654829025, 0.02433968149125576, -0.02529163844883442, -0.012048180215060711, 0.1316436529159546, -0.013300766237080097, -0.08264251798391342, -0.08976204693317413, -0.02328740619122982, 0.09523095935583115, -0.05599937587976456, 0.03358715400099754, -0.08175740391016006, -0.04073614999651909, 0.005860272329300642, -0.16970814764499664, 0.06983034312725067, -0.10846570879220963, -0.09971687942743301, -0.050264790654182434, 0.15346404910087585, 0.013677009381353855, 0.025709833949804306, 0.03220117464661598, -0.04211581498384476, -0.18150363862514496, -0.15989434719085693, -0.007562890648841858, 0.0717545747756958, -0.04433317109942436, 0.03638565540313721, 0.007171243894845247, 0.10013602674007416, 0.004198792390525341, 0.07230839878320694, 0.2026015669107437, 0.16423118114471436, -0.08760133385658264, 0.17723721265792847, 0.16266676783561707, -0.12243213504552841, -0.2722402811050415, -0.09522651135921478, -0.05925937369465828, 0.03468820080161095, 0.02297091670334339, -0.13072867691516876, 0.06184706464409828, -0.011241482570767403, -0.004976592492312193, 0.13391432166099548, -0.2790721356868744, -0.07025358080863953, 0.13864430785179138, -0.012145180255174637, 0.2560276985168457, -0.042459286749362946, -0.08155408501625061, -0.060940731316804886, -0.2339130938053131, 0.1595010906457901, -0.12908293306827545, 0.030256805941462517, -0.06380902975797653, 0.1317017376422882, 0.04475972056388855, -0.051817599684000015, 0.13714583218097687, -0.0770399421453476, 0.03692200407385826, -0.1231972947716713, -0.01437266543507576, 0.05212629213929176, -0.014681367203593254, 0.10554680228233337, -0.053141020238399506, 0.10400939732789993, -0.12106935679912567, -0.052672889083623886, -0.054288461804389954, 0.017598338425159454, -0.023758167400956154, -0.05668776109814644, -0.039483629167079926, -0.05230721831321716, 0.00942184031009674, -0.024894973263144493, -0.008981208316981792, -0.02189256064593792, 0.08200293034315109, 0.10853444039821625, 0.1416669338941574, -0.04508063197135925, -0.02666328102350235, -0.029412275180220604, -0.043095141649246216, 0.07755832374095917, -0.1675589680671692, -0.020979177206754684, 0.15767353773117065, 0.008264025673270226, 0.08081416040658951, 0.07994852215051651, -0.043529048562049866, -0.04116993397474289, 0.09435915946960449, -0.23738352954387665, -0.032961416989564896, -0.07289689034223557, -0.032304681837558746, 0.05143286660313606, 0.06389017403125763, 0.11233682930469513, -0.055076416581869125, -0.015500548295676708, 0.038369257003068924, -0.013473432511091232, -0.10457789897918701, 0.12659704685211182, 0.07594829052686691, 0.04931824654340744, -0.13000807166099548, 0.03979043290019035, -0.02080575004220009, -0.024042857810854912, -0.009190280921757221, 0.09610513597726822, -0.13868926465511322, -0.061987441033124924, 0.01100219041109085, 0.1624082624912262, -0.08940329402685165, -0.054934311658144, -0.00678250240162015, -0.07782098650932312, 0.06215988099575043, 0.06269455701112747, 0.039047662168741226, 0.10006190836429596, -0.08492296934127808, -0.004345493856817484, -0.04427671059966087, 0.02742549031972885, 0.04004936292767525, -0.01839151792228222, -0.11644710600376129, 0.050648268312215805, 0.01261399406939745, 0.21786263585090637, -0.12195943295955658, -0.07748695462942123, -0.13975368440151215, 0.03579137846827507, -0.1441981941461563, -0.02782432734966278, -0.09455464035272598, -0.0542730838060379, -0.024786408990621567, -0.02354593575000763, -0.05044161155819893, -0.03595460206270218, -0.06568260490894318, 0.04963921010494232, -0.01889806240797043, -0.04201965406537056, -0.018809955567121506, 0.04780932888388634, 0.10624072700738907, -0.0022816911805421114, 0.11582330614328384, 0.10476028919219971, -0.06149300932884216, 0.06964143365621567, -0.08975338935852051, 0.049342647194862366, 0.010800108313560486, -0.03639211133122444, 0.07890737056732178, 0.033158838748931885, 0.011678727343678474, -0.02014644630253315, -0.05248590186238289, 0.015699470415711403, 0.019494805485010147, -0.09001129865646362, 0.04338252544403076, 0.03427375108003616, -0.07128193974494934, -0.06945458799600601, -0.02831537090241909, -0.04915383830666542, 0.10966338962316513, 0.09227382391691208, 0.01580313965678215, 0.11524862796068192, -0.09982031583786011, -0.0043287696316838264, 0.0288130734115839, -0.08074736595153809, -0.01706261746585369, -0.10044533759355545, -0.01304725930094719, -0.02274717018008232, 0.2554529011249542, 0.12089171260595322, -0.025309232994914055, -0.03230812028050423, 0.07114472985267639, 0.08105676621198654, -0.0211230106651783, 0.14824873208999634, 0.03444083034992218, -0.0007331980159506202, -0.1400776505470276, 0.10673409700393677, -0.060156434774398804, -0.010151425376534462, 0.09550673514604568, -0.08319920301437378, 0.048856139183044434, 0.07468824833631516, -0.01950058713555336, 0.05372466519474983, -0.11716536432504654, -0.2690386474132538, 0.023945249617099762, 0.027653370052576065, -0.0441947840154171, 0.07253700494766235, 0.145015150308609, 0.00042942073196172714, 0.05244648456573486, 0.061493102461099625, -0.05709811672568321, -0.17804701626300812, -0.19115881621837616, -0.0384756401181221, -0.11082857847213745, -0.023826930671930313, -0.10639674216508865, 0.04148538038134575, -0.02072913944721222, 0.05925795063376427, -0.09639845043420792, 0.12447383254766464, 0.06843417137861252, -0.11577396094799042, 0.05810433253645897, -0.008805959485471249, 0.048459235578775406, -0.07387776672840118, 0.08210063725709915, -0.10721065104007721, -0.026499031111598015, -0.016933415085077286, 0.03711435943841934, -0.05858420953154564, 0.0011270071845501661, -0.10357651859521866, -0.06808403134346008, -0.056935109198093414, 0.09072309732437134, -0.024477418512105942, 0.03998230770230293, -0.014557241462171078, -0.061277762055397034, -0.025446701794862747, 0.2273169606924057, -0.018587565049529076, -0.043939489871263504, -0.0661960318684578, 0.2851298749446869, -0.06544138491153717, 0.07253559678792953, -0.032977886497974396, -0.001274158013984561, -0.07127615064382553, 0.2931469976902008, 0.36314713954925537, -0.14264726638793945, 0.011796033009886742, -0.018389053642749786, 0.03556118905544281, 0.07535336911678314, 0.18024654686450958, 0.07291083037853241, 0.3107033371925354, -0.04080776497721672, -0.01225926261395216, -0.10546047985553741, -0.03835856914520264, 0.014304363168776035, 0.02947218343615532, 0.08378855139017105, -0.05586446449160576, -0.06808875501155853, 0.1039084792137146, -0.26703301072120667, -0.02056516334414482, -0.16380304098129272, -0.061613935977220535, -0.04166705906391144, 0.0007227687747217715, 0.07237391918897629, 0.028740311041474342, 0.05115301162004471, -0.039005450904369354, -0.047156207263469696, 0.057444483041763306, -0.02154913917183876, -0.12674635648727417, 0.0002557095722295344, 0.143532857298851, -0.07906237244606018, -0.0018181405030190945, 0.0032308290246874094, 0.060348983854055405, 0.044118594378232956, 0.04119637981057167, -0.10164451599121094, 0.02608482725918293, 0.01246592216193676, -0.03363148868083954, -0.028164468705654144, 0.008156497962772846, 0.07835527509450912, -0.21697945892810822, 0.0020338469184935093, -0.14078554511070251, 0.011757226660847664, -0.07641053944826126, -0.006896127946674824, -0.08222074061632156, 0.03242125362157822, 0.004625517874956131, 0.1118803396821022, 0.11125602573156357, -0.03202005848288536, -0.0006144302315078676, -0.06265610456466675, 0.06727221608161926, -0.06884542852640152, -0.02960195019841194, -0.025150567293167114, -0.09257599711418152, -0.09335606545209885, 0.09815482050180435, -0.022339481860399246, -0.1427105814218521, 0.007601875811815262, -0.09401176869869232, -0.04369132220745087, -0.021486658602952957, 0.09382037818431854, 0.11086808145046234, 0.09180203825235367, -0.007599277421832085, 0.047748953104019165, 0.03120456263422966, 0.07436691224575043, -0.12886843085289001, -0.10148585587739944 ]
null
null
transformers
<link rel="stylesheet" href="https://unpkg.com/@tailwindcss/[email protected]/dist/typography.min.css"> <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1318561335144255493/nFRJb6rV_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Ëen 🤖 AI Bot </div> <div style="font-size: 15px; color: #657786">@ian_thefemale bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://app.wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-model-to-generate-tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@ian_thefemale's tweets](https://twitter.com/ian_thefemale). <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>3176</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>1505</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>237</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>1434</td> </tr> </tbody> </table> [Explore the data](https://app.wandb.ai/wandb/huggingtweets/runs/68w7ljwn/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @ian_thefemale's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://app.wandb.ai/wandb/huggingtweets/runs/1gt4fg11) for full transparency and reproducibility. At the end of training, [the final model](https://app.wandb.ai/wandb/huggingtweets/runs/1gt4fg11/artifacts) is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/ian_thefemale'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) <section class='prose'> For more details, visit the project repository. </section> [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets) <!--- random size file -->
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/ian_thefemale/1603890036259/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/ian_thefemale
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
<link rel="stylesheet" href="URL <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('URL </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Ëen AI Bot </div> <div style="font-size: 15px; color: #657786">@ian_thefemale bot</div> </div> I was made with huggingtweets. Create your own bot based on your favorite user with the demo! ## How does it work? The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. ## Training data The model was trained on @ian_thefemale's tweets. <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>3176</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>1505</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>237</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>1434</td> </tr> </tbody> </table> Explore the data, which is tracked with W&B artifacts at every step of the pipeline. ## Training procedure The model is based on a pre-trained GPT-2 which is fine-tuned on @ian_thefemale's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/ian_thefemale'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> ![Follow](URL <section class='prose'> For more details, visit the project repository. </section> ![GitHub stars](URL
[ "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @ian_thefemale's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>3176</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>1505</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>237</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>1434</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @ian_thefemale's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/ian_thefemale'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @ian_thefemale's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>3176</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>1505</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>237</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>1434</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @ian_thefemale's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/ian_thefemale'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ 57, 34, 433, 77, 9, 169, 48, 58 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report." ]
[ -0.04084593802690506, 0.035596683621406555, -0.0024457171093672514, 0.04662978649139404, 0.10991521924734116, 0.022836215794086456, 0.12812861800193787, 0.0424627922475338, -0.03746044635772705, -0.03597303107380867, 0.22758877277374268, 0.1009177565574646, 0.03089720755815506, 0.17962171137332916, 0.010350672528147697, -0.2703946828842163, 0.015237200073897839, 0.0647135004401207, -0.07720091193914413, 0.15752871334552765, 0.05562684312462807, -0.049801189452409744, 0.08214939385652542, 0.032038331031799316, -0.165513277053833, -0.004831716418266296, -0.02072383277118206, -0.04504403471946716, 0.09232694655656815, 0.06956911832094193, 0.07011176645755768, 0.034282486885786057, 0.017851393669843674, -0.0714372918009758, 0.06354191154241562, 0.014452377334237099, -0.02349161170423031, 0.13615116477012634, 0.028668763116002083, -0.0002947957837022841, 0.1798527091741562, 0.11815319955348969, 0.016722125932574272, 0.016196802258491516, -0.1166125237941742, -0.0606788769364357, 0.012365915812551975, 0.04470464214682579, 0.10005760192871094, 0.058856748044490814, 0.01943058706820011, 0.13215520977973938, -0.1164829432964325, 0.08512931317090988, 0.1828341782093048, -0.24191047251224518, -0.006823094096034765, 0.061043880879879, 0.08518847078084946, 0.02852868288755417, -0.0027500083670020103, 0.050437480211257935, 0.06484624743461609, 0.021347152069211006, 0.03636380657553673, -0.0638979896903038, 0.05009674280881882, 0.011186900548636913, -0.10215270519256592, -0.07660897821187973, 0.2294245809316635, -0.0602995827794075, 0.004886541981250048, -0.028186868876218796, -0.08490151911973953, -0.06026294082403183, -0.012795685790479183, -0.05738116800785065, -0.01700775697827339, 0.034475523978471756, 0.0214629378169775, -0.10922146588563919, -0.07046429812908173, -0.1146778091788292, -0.09578189998865128, 0.17879855632781982, -0.02900231070816517, 0.08940442651510239, -0.2603394091129303, 0.2254239320755005, 0.07019765675067902, -0.11909467726945877, 0.04757627099752426, -0.11814092099666595, 0.08530338853597641, 0.02207805961370468, 0.041434839367866516, 0.07761925458908081, 0.04161522537469864, 0.11940909177064896, 0.03257475048303604, -0.00314142694696784, 0.05456724017858505, 0.07224375009536743, 0.0941813513636589, 0.1230122447013855, -0.07287998497486115, -0.07873915135860443, 0.08034131675958633, -0.04709449037909508, -0.11787727475166321, -0.06861002743244171, -0.1452382206916809, -0.004202034790068865, -0.0335184708237648, 0.07922724634408951, 0.05637102574110031, 0.09526676684617996, -0.01433930266648531, -0.05777551606297493, 0.04157217592000961, -0.06985066086053848, 0.019995175302028656, -0.011708668433129787, -0.060763102024793625, 0.13121068477630615, 0.04688004031777382, -0.014275136403739452, -0.08673419058322906, 0.07951672375202179, -0.1204570084810257, -0.07978847622871399, -0.08239417523145676, -0.05098734796047211, -0.007686138618737459, -0.11281027644872665, 0.049203939735889435, -0.11458899080753326, -0.22705501317977905, -0.01313747651875019, 0.04550096020102501, -0.016462473198771477, -0.03707117214798927, -0.040630146861076355, -0.009473399259150028, 0.04880702868103981, -0.042894408106803894, 0.039052072912454605, -0.05325083062052727, 0.050018906593322754, -0.09618895500898361, 0.051321301609277725, -0.10470817238092422, 0.041251372545957565, -0.09671807289123535, 0.07595963031053543, 0.0017866486450657248, 0.0454767569899559, 0.010063555091619492, 0.08985432982444763, -0.03214199095964432, -0.044836416840553284, -0.07869677990674973, 0.026561295613646507, 0.02284199558198452, 0.20134314894676208, -0.10196486860513687, -0.0819794163107872, 0.12614667415618896, -0.07252102345228195, -0.1288122832775116, 0.0409054271876812, -0.02831157296895981, 0.17958028614521027, 0.07370224595069885, 0.16096454858779907, 0.12039237469434738, -0.03798284754157066, 0.1263856589794159, 0.14821170270442963, -0.1269366294145584, -0.004153167363256216, 0.039416827261447906, 0.014042570255696774, -0.20559121668338776, 0.04052022844552994, -0.01946125738322735, 0.06584736704826355, -0.10201486945152283, -0.00946728140115738, 0.0031527038663625717, -0.02320384420454502, 0.0023026331327855587, -0.0472555048763752, 0.061078161001205444, 0.038737643510103226, -0.022763127461075783, 0.029682613909244537, 0.06635552644729614, -0.026160234585404396, -0.00823320634663105, -0.04484035447239876, 0.10009831935167313, -0.07260703295469284, 0.06797321885824203, -0.13160665333271027, -0.003086181590333581, -0.012450510635972023, 0.0972909927368164, 0.03811546042561531, 0.10621625185012817, 0.05470104143023491, 0.03126294165849686, 0.07701993733644485, -0.02846951223909855, 0.0746634304523468, 0.01002051867544651, -0.0850096121430397, -0.1272277683019638, 0.015217535197734833, -0.10649837553501129, -0.004191380459815264, -0.08523700386285782, -0.0015737697249278426, -0.12802091240882874, 0.05826076865196228, -0.016465239226818085, 0.0539434514939785, -0.055182818323373795, -0.04337453469634056, -0.044662054628133774, -0.022007398307323456, 0.0482511967420578, -0.033139705657958984, -0.06687536835670471, 0.16832175850868225, -0.15395553410053253, 0.2592274248600006, 0.1313537061214447, -0.0889907032251358, 0.002020547864958644, -0.07812081277370453, -0.04194976016879082, -0.012868959456682205, 0.07527336478233337, -0.03700125962495804, 0.15495356917381287, -0.03386903926730156, 0.17382068932056427, -0.099679134786129, -0.0334031768143177, 0.02144831046462059, -0.10981054604053497, 0.057656705379486084, 0.08051177859306335, 0.04427298903465271, -0.159133642911911, 0.08837400376796722, 0.19756358861923218, 0.05472150072455406, 0.20321963727474213, -0.006869805511087179, -0.06112205237150192, -0.05358194187283516, -0.0808696523308754, -0.052568696439266205, 0.056259434670209885, -0.09903126955032349, -0.004000484477728605, 0.06423190236091614, 0.08783505111932755, 0.11237549781799316, -0.10904275625944138, -0.046180129051208496, 0.05125856027007103, -0.004819708876311779, -0.051060013473033905, 0.07006146013736725, -0.0659489631652832, 0.13217470049858093, 0.014598124660551548, -0.07049204409122467, 0.0036125897895544767, -0.004913401324301958, -0.11891388893127441, 0.20653130114078522, -0.08047540485858917, -0.27306002378463745, -0.16792123019695282, -0.16288253664970398, 0.07165426760911942, 0.038431257009506226, 0.033738572150468826, -0.08776884526014328, -0.020982403308153152, 0.004409478977322578, 0.11553267389535904, -0.09698133170604706, 0.013121976517140865, 0.008159824647009373, -0.018650712445378304, -0.07579360157251358, -0.09033482521772385, -0.0241270512342453, -0.02461584471166134, 0.020020704716444016, 0.03998296707868576, -0.11154978722333908, 0.06758414953947067, 0.2167699933052063, -0.015538511797785759, 0.06870997697114944, 0.00025148785789497197, 0.26176807284355164, -0.08426473289728165, 0.040830448269844055, 0.11926601082086563, -0.08760137856006622, 0.05199241638183594, 0.07132956385612488, 0.03210015222430229, -0.014074578881263733, 0.016441889107227325, -0.11233895272016525, -0.12864868342876434, -0.1923626959323883, -0.06961654871702194, -0.028241310268640518, 0.13464264571666718, 0.031150488182902336, 0.04321796074509621, 0.10346641391515732, 0.07471037656068802, 0.06701335310935974, 0.03259968012571335, -0.0005120337591506541, 0.0647427961230278, 0.024594781920313835, -0.05812343955039978, 0.054217349737882614, -0.04845457896590233, -0.0797470211982727, 0.08279551565647125, -0.011098933406174183, 0.0927528515458107, 0.06928195804357529, 0.02340286411345005, 0.018686039373278618, 0.04218229651451111, 0.15593960881233215, 0.22442668676376343, -0.012412761338055134, -0.041085485368967056, -0.05078154057264328, -0.040494389832019806, -0.01600850187242031, 0.015044075436890125, -0.05785144492983818, -0.033252447843551636, -0.0728597640991211, -0.015066487714648247, 0.011195010505616665, 0.015441779047250748, 0.07578693330287933, -0.22024130821228027, -0.038240667432546616, 0.042616840451955795, -0.013794191181659698, -0.10639895498752594, 0.05872863903641701, 0.016779562458395958, -0.17391349375247955, -0.07854076474905014, -0.016605399549007416, 0.1603294163942337, -0.030760308727622032, 0.0619782954454422, 0.005449770484119654, 0.02271227352321148, -0.013140208087861538, 0.11191333085298538, -0.27346712350845337, 0.1954270750284195, 0.001131516881287098, -0.04876048117876053, -0.016439033672213554, -0.04243995249271393, 0.0009058643481694162, 0.14556926488876343, 0.09718295931816101, 0.0028763783629983664, 0.0669604167342186, -0.07678256928920746, -0.11943262070417404, 0.05284353718161583, 0.08068333566188812, -0.07738065719604492, 0.029960619285702705, -0.029798466712236404, 0.027152907103300095, -0.007555682212114334, -0.030231619253754616, 0.002119861776009202, -0.11661309748888016, 0.02936525270342827, -0.08075195550918579, 0.06012337654829025, 0.02433968149125576, -0.02529163844883442, -0.012048180215060711, 0.1316436529159546, -0.013300766237080097, -0.08264251798391342, -0.08976204693317413, -0.02328740619122982, 0.09523095935583115, -0.05599937587976456, 0.03358715400099754, -0.08175740391016006, -0.04073614999651909, 0.005860272329300642, -0.16970814764499664, 0.06983034312725067, -0.10846570879220963, -0.09971687942743301, -0.050264790654182434, 0.15346404910087585, 0.013677009381353855, 0.025709833949804306, 0.03220117464661598, -0.04211581498384476, -0.18150363862514496, -0.15989434719085693, -0.007562890648841858, 0.0717545747756958, -0.04433317109942436, 0.03638565540313721, 0.007171243894845247, 0.10013602674007416, 0.004198792390525341, 0.07230839878320694, 0.2026015669107437, 0.16423118114471436, -0.08760133385658264, 0.17723721265792847, 0.16266676783561707, -0.12243213504552841, -0.2722402811050415, -0.09522651135921478, -0.05925937369465828, 0.03468820080161095, 0.02297091670334339, -0.13072867691516876, 0.06184706464409828, -0.011241482570767403, -0.004976592492312193, 0.13391432166099548, -0.2790721356868744, -0.07025358080863953, 0.13864430785179138, -0.012145180255174637, 0.2560276985168457, -0.042459286749362946, -0.08155408501625061, -0.060940731316804886, -0.2339130938053131, 0.1595010906457901, -0.12908293306827545, 0.030256805941462517, -0.06380902975797653, 0.1317017376422882, 0.04475972056388855, -0.051817599684000015, 0.13714583218097687, -0.0770399421453476, 0.03692200407385826, -0.1231972947716713, -0.01437266543507576, 0.05212629213929176, -0.014681367203593254, 0.10554680228233337, -0.053141020238399506, 0.10400939732789993, -0.12106935679912567, -0.052672889083623886, -0.054288461804389954, 0.017598338425159454, -0.023758167400956154, -0.05668776109814644, -0.039483629167079926, -0.05230721831321716, 0.00942184031009674, -0.024894973263144493, -0.008981208316981792, -0.02189256064593792, 0.08200293034315109, 0.10853444039821625, 0.1416669338941574, -0.04508063197135925, -0.02666328102350235, -0.029412275180220604, -0.043095141649246216, 0.07755832374095917, -0.1675589680671692, -0.020979177206754684, 0.15767353773117065, 0.008264025673270226, 0.08081416040658951, 0.07994852215051651, -0.043529048562049866, -0.04116993397474289, 0.09435915946960449, -0.23738352954387665, -0.032961416989564896, -0.07289689034223557, -0.032304681837558746, 0.05143286660313606, 0.06389017403125763, 0.11233682930469513, -0.055076416581869125, -0.015500548295676708, 0.038369257003068924, -0.013473432511091232, -0.10457789897918701, 0.12659704685211182, 0.07594829052686691, 0.04931824654340744, -0.13000807166099548, 0.03979043290019035, -0.02080575004220009, -0.024042857810854912, -0.009190280921757221, 0.09610513597726822, -0.13868926465511322, -0.061987441033124924, 0.01100219041109085, 0.1624082624912262, -0.08940329402685165, -0.054934311658144, -0.00678250240162015, -0.07782098650932312, 0.06215988099575043, 0.06269455701112747, 0.039047662168741226, 0.10006190836429596, -0.08492296934127808, -0.004345493856817484, -0.04427671059966087, 0.02742549031972885, 0.04004936292767525, -0.01839151792228222, -0.11644710600376129, 0.050648268312215805, 0.01261399406939745, 0.21786263585090637, -0.12195943295955658, -0.07748695462942123, -0.13975368440151215, 0.03579137846827507, -0.1441981941461563, -0.02782432734966278, -0.09455464035272598, -0.0542730838060379, -0.024786408990621567, -0.02354593575000763, -0.05044161155819893, -0.03595460206270218, -0.06568260490894318, 0.04963921010494232, -0.01889806240797043, -0.04201965406537056, -0.018809955567121506, 0.04780932888388634, 0.10624072700738907, -0.0022816911805421114, 0.11582330614328384, 0.10476028919219971, -0.06149300932884216, 0.06964143365621567, -0.08975338935852051, 0.049342647194862366, 0.010800108313560486, -0.03639211133122444, 0.07890737056732178, 0.033158838748931885, 0.011678727343678474, -0.02014644630253315, -0.05248590186238289, 0.015699470415711403, 0.019494805485010147, -0.09001129865646362, 0.04338252544403076, 0.03427375108003616, -0.07128193974494934, -0.06945458799600601, -0.02831537090241909, -0.04915383830666542, 0.10966338962316513, 0.09227382391691208, 0.01580313965678215, 0.11524862796068192, -0.09982031583786011, -0.0043287696316838264, 0.0288130734115839, -0.08074736595153809, -0.01706261746585369, -0.10044533759355545, -0.01304725930094719, -0.02274717018008232, 0.2554529011249542, 0.12089171260595322, -0.025309232994914055, -0.03230812028050423, 0.07114472985267639, 0.08105676621198654, -0.0211230106651783, 0.14824873208999634, 0.03444083034992218, -0.0007331980159506202, -0.1400776505470276, 0.10673409700393677, -0.060156434774398804, -0.010151425376534462, 0.09550673514604568, -0.08319920301437378, 0.048856139183044434, 0.07468824833631516, -0.01950058713555336, 0.05372466519474983, -0.11716536432504654, -0.2690386474132538, 0.023945249617099762, 0.027653370052576065, -0.0441947840154171, 0.07253700494766235, 0.145015150308609, 0.00042942073196172714, 0.05244648456573486, 0.061493102461099625, -0.05709811672568321, -0.17804701626300812, -0.19115881621837616, -0.0384756401181221, -0.11082857847213745, -0.023826930671930313, -0.10639674216508865, 0.04148538038134575, -0.02072913944721222, 0.05925795063376427, -0.09639845043420792, 0.12447383254766464, 0.06843417137861252, -0.11577396094799042, 0.05810433253645897, -0.008805959485471249, 0.048459235578775406, -0.07387776672840118, 0.08210063725709915, -0.10721065104007721, -0.026499031111598015, -0.016933415085077286, 0.03711435943841934, -0.05858420953154564, 0.0011270071845501661, -0.10357651859521866, -0.06808403134346008, -0.056935109198093414, 0.09072309732437134, -0.024477418512105942, 0.03998230770230293, -0.014557241462171078, -0.061277762055397034, -0.025446701794862747, 0.2273169606924057, -0.018587565049529076, -0.043939489871263504, -0.0661960318684578, 0.2851298749446869, -0.06544138491153717, 0.07253559678792953, -0.032977886497974396, -0.001274158013984561, -0.07127615064382553, 0.2931469976902008, 0.36314713954925537, -0.14264726638793945, 0.011796033009886742, -0.018389053642749786, 0.03556118905544281, 0.07535336911678314, 0.18024654686450958, 0.07291083037853241, 0.3107033371925354, -0.04080776497721672, -0.01225926261395216, -0.10546047985553741, -0.03835856914520264, 0.014304363168776035, 0.02947218343615532, 0.08378855139017105, -0.05586446449160576, -0.06808875501155853, 0.1039084792137146, -0.26703301072120667, -0.02056516334414482, -0.16380304098129272, -0.061613935977220535, -0.04166705906391144, 0.0007227687747217715, 0.07237391918897629, 0.028740311041474342, 0.05115301162004471, -0.039005450904369354, -0.047156207263469696, 0.057444483041763306, -0.02154913917183876, -0.12674635648727417, 0.0002557095722295344, 0.143532857298851, -0.07906237244606018, -0.0018181405030190945, 0.0032308290246874094, 0.060348983854055405, 0.044118594378232956, 0.04119637981057167, -0.10164451599121094, 0.02608482725918293, 0.01246592216193676, -0.03363148868083954, -0.028164468705654144, 0.008156497962772846, 0.07835527509450912, -0.21697945892810822, 0.0020338469184935093, -0.14078554511070251, 0.011757226660847664, -0.07641053944826126, -0.006896127946674824, -0.08222074061632156, 0.03242125362157822, 0.004625517874956131, 0.1118803396821022, 0.11125602573156357, -0.03202005848288536, -0.0006144302315078676, -0.06265610456466675, 0.06727221608161926, -0.06884542852640152, -0.02960195019841194, -0.025150567293167114, -0.09257599711418152, -0.09335606545209885, 0.09815482050180435, -0.022339481860399246, -0.1427105814218521, 0.007601875811815262, -0.09401176869869232, -0.04369132220745087, -0.021486658602952957, 0.09382037818431854, 0.11086808145046234, 0.09180203825235367, -0.007599277421832085, 0.047748953104019165, 0.03120456263422966, 0.07436691224575043, -0.12886843085289001, -0.10148585587739944 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1377721815158636546/0b6X62GA_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">bsdtetris 🤖 AI Bot </div> <div style="font-size: 15px">@ianmileschungus bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@ianmileschungus's tweets](https://twitter.com/ianmileschungus). | Data | Quantity | | --- | --- | | Tweets downloaded | 883 | | Retweets | 139 | | Short tweets | 223 | | Tweets kept | 521 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/32raehk9/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @ianmileschungus's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/2jh3if9e) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/2jh3if9e/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/ianmileschungus') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/ianmileschungus/1617756969045/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/ianmileschungus
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
bsdtetris AI Bot @ianmileschungus bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @ianmileschungus's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @ianmileschungus's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1476303212672131074/kuPm3Cvp_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">Ibai</div> <div style="text-align: center; font-size: 14px;">@ibaillanos</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from Ibai. | Data | Ibai | | --- | --- | | Tweets downloaded | 3250 | | Retweets | 28 | | Short tweets | 669 | | Tweets kept | 2553 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/3qyv6lsf/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @ibaillanos's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/cxnkmkg6) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/cxnkmkg6/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/ibaillanos') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "http://www.huggingtweets.com/ibaillanos/1641753367000/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/ibaillanos
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT Ibai @ibaillanos I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from Ibai. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @ibaillanos's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<link rel="stylesheet" href="https://unpkg.com/@tailwindcss/[email protected]/dist/typography.min.css"> <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1299164565662507008/TKlwtwO-_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Ethereal AnarchoPansexual Chanda Prescod-Weinstein 🤖 AI Bot </div> <div style="font-size: 15px; color: #657786">@ibjiyongi bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://app.wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-model-to-generate-tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@ibjiyongi's tweets](https://twitter.com/ibjiyongi). <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>3203</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>884</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>352</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>1967</td> </tr> </tbody> </table> [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/2anzzpiv/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @ibjiyongi's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/250irlis) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/250irlis/artifacts) is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/ibjiyongi'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) <section class='prose'> For more details, visit the project repository. </section> [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets) <!--- random size file -->
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/ibjiyongi/1607118906119/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/ibjiyongi
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
<link rel="stylesheet" href="URL <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('URL </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Ethereal AnarchoPansexual Chanda Prescod-Weinstein AI Bot </div> <div style="font-size: 15px; color: #657786">@ibjiyongi bot</div> </div> I was made with huggingtweets. Create your own bot based on your favorite user with the demo! ## How does it work? The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. ## Training data The model was trained on @ibjiyongi's tweets. <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>3203</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>884</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>352</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>1967</td> </tr> </tbody> </table> Explore the data, which is tracked with W&B artifacts at every step of the pipeline. ## Training procedure The model is based on a pre-trained GPT-2 which is fine-tuned on @ibjiyongi's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/ibjiyongi'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> ![Follow](URL <section class='prose'> For more details, visit the project repository. </section> ![GitHub stars](URL
[ "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @ibjiyongi's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>3203</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>884</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>352</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>1967</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @ibjiyongi's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/ibjiyongi'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @ibjiyongi's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>3203</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>884</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>352</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>1967</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @ibjiyongi's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/ibjiyongi'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ 57, 34, 430, 76, 9, 168, 48, 58 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report." ]
[ -0.04084593802690506, 0.035596683621406555, -0.0024457171093672514, 0.04662978649139404, 0.10991521924734116, 0.022836215794086456, 0.12812861800193787, 0.0424627922475338, -0.03746044635772705, -0.03597303107380867, 0.22758877277374268, 0.1009177565574646, 0.03089720755815506, 0.17962171137332916, 0.010350672528147697, -0.2703946828842163, 0.015237200073897839, 0.0647135004401207, -0.07720091193914413, 0.15752871334552765, 0.05562684312462807, -0.049801189452409744, 0.08214939385652542, 0.032038331031799316, -0.165513277053833, -0.004831716418266296, -0.02072383277118206, -0.04504403471946716, 0.09232694655656815, 0.06956911832094193, 0.07011176645755768, 0.034282486885786057, 0.017851393669843674, -0.0714372918009758, 0.06354191154241562, 0.014452377334237099, -0.02349161170423031, 0.13615116477012634, 0.028668763116002083, -0.0002947957837022841, 0.1798527091741562, 0.11815319955348969, 0.016722125932574272, 0.016196802258491516, -0.1166125237941742, -0.0606788769364357, 0.012365915812551975, 0.04470464214682579, 0.10005760192871094, 0.058856748044490814, 0.01943058706820011, 0.13215520977973938, -0.1164829432964325, 0.08512931317090988, 0.1828341782093048, -0.24191047251224518, -0.006823094096034765, 0.061043880879879, 0.08518847078084946, 0.02852868288755417, -0.0027500083670020103, 0.050437480211257935, 0.06484624743461609, 0.021347152069211006, 0.03636380657553673, -0.0638979896903038, 0.05009674280881882, 0.011186900548636913, -0.10215270519256592, -0.07660897821187973, 0.2294245809316635, -0.0602995827794075, 0.004886541981250048, -0.028186868876218796, -0.08490151911973953, -0.06026294082403183, -0.012795685790479183, -0.05738116800785065, -0.01700775697827339, 0.034475523978471756, 0.0214629378169775, -0.10922146588563919, -0.07046429812908173, -0.1146778091788292, -0.09578189998865128, 0.17879855632781982, -0.02900231070816517, 0.08940442651510239, -0.2603394091129303, 0.2254239320755005, 0.07019765675067902, -0.11909467726945877, 0.04757627099752426, -0.11814092099666595, 0.08530338853597641, 0.02207805961370468, 0.041434839367866516, 0.07761925458908081, 0.04161522537469864, 0.11940909177064896, 0.03257475048303604, -0.00314142694696784, 0.05456724017858505, 0.07224375009536743, 0.0941813513636589, 0.1230122447013855, -0.07287998497486115, -0.07873915135860443, 0.08034131675958633, -0.04709449037909508, -0.11787727475166321, -0.06861002743244171, -0.1452382206916809, -0.004202034790068865, -0.0335184708237648, 0.07922724634408951, 0.05637102574110031, 0.09526676684617996, -0.01433930266648531, -0.05777551606297493, 0.04157217592000961, -0.06985066086053848, 0.019995175302028656, -0.011708668433129787, -0.060763102024793625, 0.13121068477630615, 0.04688004031777382, -0.014275136403739452, -0.08673419058322906, 0.07951672375202179, -0.1204570084810257, -0.07978847622871399, -0.08239417523145676, -0.05098734796047211, -0.007686138618737459, -0.11281027644872665, 0.049203939735889435, -0.11458899080753326, -0.22705501317977905, -0.01313747651875019, 0.04550096020102501, -0.016462473198771477, -0.03707117214798927, -0.040630146861076355, -0.009473399259150028, 0.04880702868103981, -0.042894408106803894, 0.039052072912454605, -0.05325083062052727, 0.050018906593322754, -0.09618895500898361, 0.051321301609277725, -0.10470817238092422, 0.041251372545957565, -0.09671807289123535, 0.07595963031053543, 0.0017866486450657248, 0.0454767569899559, 0.010063555091619492, 0.08985432982444763, -0.03214199095964432, -0.044836416840553284, -0.07869677990674973, 0.026561295613646507, 0.02284199558198452, 0.20134314894676208, -0.10196486860513687, -0.0819794163107872, 0.12614667415618896, -0.07252102345228195, -0.1288122832775116, 0.0409054271876812, -0.02831157296895981, 0.17958028614521027, 0.07370224595069885, 0.16096454858779907, 0.12039237469434738, -0.03798284754157066, 0.1263856589794159, 0.14821170270442963, -0.1269366294145584, -0.004153167363256216, 0.039416827261447906, 0.014042570255696774, -0.20559121668338776, 0.04052022844552994, -0.01946125738322735, 0.06584736704826355, -0.10201486945152283, -0.00946728140115738, 0.0031527038663625717, -0.02320384420454502, 0.0023026331327855587, -0.0472555048763752, 0.061078161001205444, 0.038737643510103226, -0.022763127461075783, 0.029682613909244537, 0.06635552644729614, -0.026160234585404396, -0.00823320634663105, -0.04484035447239876, 0.10009831935167313, -0.07260703295469284, 0.06797321885824203, -0.13160665333271027, -0.003086181590333581, -0.012450510635972023, 0.0972909927368164, 0.03811546042561531, 0.10621625185012817, 0.05470104143023491, 0.03126294165849686, 0.07701993733644485, -0.02846951223909855, 0.0746634304523468, 0.01002051867544651, -0.0850096121430397, -0.1272277683019638, 0.015217535197734833, -0.10649837553501129, -0.004191380459815264, -0.08523700386285782, -0.0015737697249278426, -0.12802091240882874, 0.05826076865196228, -0.016465239226818085, 0.0539434514939785, -0.055182818323373795, -0.04337453469634056, -0.044662054628133774, -0.022007398307323456, 0.0482511967420578, -0.033139705657958984, -0.06687536835670471, 0.16832175850868225, -0.15395553410053253, 0.2592274248600006, 0.1313537061214447, -0.0889907032251358, 0.002020547864958644, -0.07812081277370453, -0.04194976016879082, -0.012868959456682205, 0.07527336478233337, -0.03700125962495804, 0.15495356917381287, -0.03386903926730156, 0.17382068932056427, -0.099679134786129, -0.0334031768143177, 0.02144831046462059, -0.10981054604053497, 0.057656705379486084, 0.08051177859306335, 0.04427298903465271, -0.159133642911911, 0.08837400376796722, 0.19756358861923218, 0.05472150072455406, 0.20321963727474213, -0.006869805511087179, -0.06112205237150192, -0.05358194187283516, -0.0808696523308754, -0.052568696439266205, 0.056259434670209885, -0.09903126955032349, -0.004000484477728605, 0.06423190236091614, 0.08783505111932755, 0.11237549781799316, -0.10904275625944138, -0.046180129051208496, 0.05125856027007103, -0.004819708876311779, -0.051060013473033905, 0.07006146013736725, -0.0659489631652832, 0.13217470049858093, 0.014598124660551548, -0.07049204409122467, 0.0036125897895544767, -0.004913401324301958, -0.11891388893127441, 0.20653130114078522, -0.08047540485858917, -0.27306002378463745, -0.16792123019695282, -0.16288253664970398, 0.07165426760911942, 0.038431257009506226, 0.033738572150468826, -0.08776884526014328, -0.020982403308153152, 0.004409478977322578, 0.11553267389535904, -0.09698133170604706, 0.013121976517140865, 0.008159824647009373, -0.018650712445378304, -0.07579360157251358, -0.09033482521772385, -0.0241270512342453, -0.02461584471166134, 0.020020704716444016, 0.03998296707868576, -0.11154978722333908, 0.06758414953947067, 0.2167699933052063, -0.015538511797785759, 0.06870997697114944, 0.00025148785789497197, 0.26176807284355164, -0.08426473289728165, 0.040830448269844055, 0.11926601082086563, -0.08760137856006622, 0.05199241638183594, 0.07132956385612488, 0.03210015222430229, -0.014074578881263733, 0.016441889107227325, -0.11233895272016525, -0.12864868342876434, -0.1923626959323883, -0.06961654871702194, -0.028241310268640518, 0.13464264571666718, 0.031150488182902336, 0.04321796074509621, 0.10346641391515732, 0.07471037656068802, 0.06701335310935974, 0.03259968012571335, -0.0005120337591506541, 0.0647427961230278, 0.024594781920313835, -0.05812343955039978, 0.054217349737882614, -0.04845457896590233, -0.0797470211982727, 0.08279551565647125, -0.011098933406174183, 0.0927528515458107, 0.06928195804357529, 0.02340286411345005, 0.018686039373278618, 0.04218229651451111, 0.15593960881233215, 0.22442668676376343, -0.012412761338055134, -0.041085485368967056, -0.05078154057264328, -0.040494389832019806, -0.01600850187242031, 0.015044075436890125, -0.05785144492983818, -0.033252447843551636, -0.0728597640991211, -0.015066487714648247, 0.011195010505616665, 0.015441779047250748, 0.07578693330287933, -0.22024130821228027, -0.038240667432546616, 0.042616840451955795, -0.013794191181659698, -0.10639895498752594, 0.05872863903641701, 0.016779562458395958, -0.17391349375247955, -0.07854076474905014, -0.016605399549007416, 0.1603294163942337, -0.030760308727622032, 0.0619782954454422, 0.005449770484119654, 0.02271227352321148, -0.013140208087861538, 0.11191333085298538, -0.27346712350845337, 0.1954270750284195, 0.001131516881287098, -0.04876048117876053, -0.016439033672213554, -0.04243995249271393, 0.0009058643481694162, 0.14556926488876343, 0.09718295931816101, 0.0028763783629983664, 0.0669604167342186, -0.07678256928920746, -0.11943262070417404, 0.05284353718161583, 0.08068333566188812, -0.07738065719604492, 0.029960619285702705, -0.029798466712236404, 0.027152907103300095, -0.007555682212114334, -0.030231619253754616, 0.002119861776009202, -0.11661309748888016, 0.02936525270342827, -0.08075195550918579, 0.06012337654829025, 0.02433968149125576, -0.02529163844883442, -0.012048180215060711, 0.1316436529159546, -0.013300766237080097, -0.08264251798391342, -0.08976204693317413, -0.02328740619122982, 0.09523095935583115, -0.05599937587976456, 0.03358715400099754, -0.08175740391016006, -0.04073614999651909, 0.005860272329300642, -0.16970814764499664, 0.06983034312725067, -0.10846570879220963, -0.09971687942743301, -0.050264790654182434, 0.15346404910087585, 0.013677009381353855, 0.025709833949804306, 0.03220117464661598, -0.04211581498384476, -0.18150363862514496, -0.15989434719085693, -0.007562890648841858, 0.0717545747756958, -0.04433317109942436, 0.03638565540313721, 0.007171243894845247, 0.10013602674007416, 0.004198792390525341, 0.07230839878320694, 0.2026015669107437, 0.16423118114471436, -0.08760133385658264, 0.17723721265792847, 0.16266676783561707, -0.12243213504552841, -0.2722402811050415, -0.09522651135921478, -0.05925937369465828, 0.03468820080161095, 0.02297091670334339, -0.13072867691516876, 0.06184706464409828, -0.011241482570767403, -0.004976592492312193, 0.13391432166099548, -0.2790721356868744, -0.07025358080863953, 0.13864430785179138, -0.012145180255174637, 0.2560276985168457, -0.042459286749362946, -0.08155408501625061, -0.060940731316804886, -0.2339130938053131, 0.1595010906457901, -0.12908293306827545, 0.030256805941462517, -0.06380902975797653, 0.1317017376422882, 0.04475972056388855, -0.051817599684000015, 0.13714583218097687, -0.0770399421453476, 0.03692200407385826, -0.1231972947716713, -0.01437266543507576, 0.05212629213929176, -0.014681367203593254, 0.10554680228233337, -0.053141020238399506, 0.10400939732789993, -0.12106935679912567, -0.052672889083623886, -0.054288461804389954, 0.017598338425159454, -0.023758167400956154, -0.05668776109814644, -0.039483629167079926, -0.05230721831321716, 0.00942184031009674, -0.024894973263144493, -0.008981208316981792, -0.02189256064593792, 0.08200293034315109, 0.10853444039821625, 0.1416669338941574, -0.04508063197135925, -0.02666328102350235, -0.029412275180220604, -0.043095141649246216, 0.07755832374095917, -0.1675589680671692, -0.020979177206754684, 0.15767353773117065, 0.008264025673270226, 0.08081416040658951, 0.07994852215051651, -0.043529048562049866, -0.04116993397474289, 0.09435915946960449, -0.23738352954387665, -0.032961416989564896, -0.07289689034223557, -0.032304681837558746, 0.05143286660313606, 0.06389017403125763, 0.11233682930469513, -0.055076416581869125, -0.015500548295676708, 0.038369257003068924, -0.013473432511091232, -0.10457789897918701, 0.12659704685211182, 0.07594829052686691, 0.04931824654340744, -0.13000807166099548, 0.03979043290019035, -0.02080575004220009, -0.024042857810854912, -0.009190280921757221, 0.09610513597726822, -0.13868926465511322, -0.061987441033124924, 0.01100219041109085, 0.1624082624912262, -0.08940329402685165, -0.054934311658144, -0.00678250240162015, -0.07782098650932312, 0.06215988099575043, 0.06269455701112747, 0.039047662168741226, 0.10006190836429596, -0.08492296934127808, -0.004345493856817484, -0.04427671059966087, 0.02742549031972885, 0.04004936292767525, -0.01839151792228222, -0.11644710600376129, 0.050648268312215805, 0.01261399406939745, 0.21786263585090637, -0.12195943295955658, -0.07748695462942123, -0.13975368440151215, 0.03579137846827507, -0.1441981941461563, -0.02782432734966278, -0.09455464035272598, -0.0542730838060379, -0.024786408990621567, -0.02354593575000763, -0.05044161155819893, -0.03595460206270218, -0.06568260490894318, 0.04963921010494232, -0.01889806240797043, -0.04201965406537056, -0.018809955567121506, 0.04780932888388634, 0.10624072700738907, -0.0022816911805421114, 0.11582330614328384, 0.10476028919219971, -0.06149300932884216, 0.06964143365621567, -0.08975338935852051, 0.049342647194862366, 0.010800108313560486, -0.03639211133122444, 0.07890737056732178, 0.033158838748931885, 0.011678727343678474, -0.02014644630253315, -0.05248590186238289, 0.015699470415711403, 0.019494805485010147, -0.09001129865646362, 0.04338252544403076, 0.03427375108003616, -0.07128193974494934, -0.06945458799600601, -0.02831537090241909, -0.04915383830666542, 0.10966338962316513, 0.09227382391691208, 0.01580313965678215, 0.11524862796068192, -0.09982031583786011, -0.0043287696316838264, 0.0288130734115839, -0.08074736595153809, -0.01706261746585369, -0.10044533759355545, -0.01304725930094719, -0.02274717018008232, 0.2554529011249542, 0.12089171260595322, -0.025309232994914055, -0.03230812028050423, 0.07114472985267639, 0.08105676621198654, -0.0211230106651783, 0.14824873208999634, 0.03444083034992218, -0.0007331980159506202, -0.1400776505470276, 0.10673409700393677, -0.060156434774398804, -0.010151425376534462, 0.09550673514604568, -0.08319920301437378, 0.048856139183044434, 0.07468824833631516, -0.01950058713555336, 0.05372466519474983, -0.11716536432504654, -0.2690386474132538, 0.023945249617099762, 0.027653370052576065, -0.0441947840154171, 0.07253700494766235, 0.145015150308609, 0.00042942073196172714, 0.05244648456573486, 0.061493102461099625, -0.05709811672568321, -0.17804701626300812, -0.19115881621837616, -0.0384756401181221, -0.11082857847213745, -0.023826930671930313, -0.10639674216508865, 0.04148538038134575, -0.02072913944721222, 0.05925795063376427, -0.09639845043420792, 0.12447383254766464, 0.06843417137861252, -0.11577396094799042, 0.05810433253645897, -0.008805959485471249, 0.048459235578775406, -0.07387776672840118, 0.08210063725709915, -0.10721065104007721, -0.026499031111598015, -0.016933415085077286, 0.03711435943841934, -0.05858420953154564, 0.0011270071845501661, -0.10357651859521866, -0.06808403134346008, -0.056935109198093414, 0.09072309732437134, -0.024477418512105942, 0.03998230770230293, -0.014557241462171078, -0.061277762055397034, -0.025446701794862747, 0.2273169606924057, -0.018587565049529076, -0.043939489871263504, -0.0661960318684578, 0.2851298749446869, -0.06544138491153717, 0.07253559678792953, -0.032977886497974396, -0.001274158013984561, -0.07127615064382553, 0.2931469976902008, 0.36314713954925537, -0.14264726638793945, 0.011796033009886742, -0.018389053642749786, 0.03556118905544281, 0.07535336911678314, 0.18024654686450958, 0.07291083037853241, 0.3107033371925354, -0.04080776497721672, -0.01225926261395216, -0.10546047985553741, -0.03835856914520264, 0.014304363168776035, 0.02947218343615532, 0.08378855139017105, -0.05586446449160576, -0.06808875501155853, 0.1039084792137146, -0.26703301072120667, -0.02056516334414482, -0.16380304098129272, -0.061613935977220535, -0.04166705906391144, 0.0007227687747217715, 0.07237391918897629, 0.028740311041474342, 0.05115301162004471, -0.039005450904369354, -0.047156207263469696, 0.057444483041763306, -0.02154913917183876, -0.12674635648727417, 0.0002557095722295344, 0.143532857298851, -0.07906237244606018, -0.0018181405030190945, 0.0032308290246874094, 0.060348983854055405, 0.044118594378232956, 0.04119637981057167, -0.10164451599121094, 0.02608482725918293, 0.01246592216193676, -0.03363148868083954, -0.028164468705654144, 0.008156497962772846, 0.07835527509450912, -0.21697945892810822, 0.0020338469184935093, -0.14078554511070251, 0.011757226660847664, -0.07641053944826126, -0.006896127946674824, -0.08222074061632156, 0.03242125362157822, 0.004625517874956131, 0.1118803396821022, 0.11125602573156357, -0.03202005848288536, -0.0006144302315078676, -0.06265610456466675, 0.06727221608161926, -0.06884542852640152, -0.02960195019841194, -0.025150567293167114, -0.09257599711418152, -0.09335606545209885, 0.09815482050180435, -0.022339481860399246, -0.1427105814218521, 0.007601875811815262, -0.09401176869869232, -0.04369132220745087, -0.021486658602952957, 0.09382037818431854, 0.11086808145046234, 0.09180203825235367, -0.007599277421832085, 0.047748953104019165, 0.03120456263422966, 0.07436691224575043, -0.12886843085289001, -0.10148585587739944 ]
null
null
transformers
<div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:inherit; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://pbs.twimg.com/profile_images/1419130410659889153/F2F8J5kC_400x400.jpg&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> <div style="display:none; margin-left: 4px; margin-right: 4px; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;&#39;)"> </div> </div> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 AI BOT 🤖</div> <div style="text-align: center; font-size: 16px; font-weight: 800">ابن ڪربلاء 🇮🇶🇵🇸</div> <div style="text-align: center; font-size: 14px;">@ibnalrafidayn</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on tweets from ابن ڪربلاء 🇮🇶🇵🇸. | Data | ابن ڪربلاء 🇮🇶🇵🇸 | | --- | --- | | Tweets downloaded | 3178 | | Retweets | 1679 | | Short tweets | 153 | | Tweets kept | 1346 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/23d16tk6/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @ibnalrafidayn's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/2rkhf7a3) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/2rkhf7a3/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/ibnalrafidayn') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/ibnalrafidayn/1627278946427/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/ibnalrafidayn
[ "transformers", "pytorch", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
AI BOT ابن ڪربلاء 🇮🇶🇵🇸 @ibnalrafidayn I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on tweets from ابن ڪربلاء 🇮🇶🇵🇸. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @ibnalrafidayn's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 54 ]
[ "passage: TAGS\n#transformers #pytorch #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ -0.0001764487533364445, -0.01891571842133999, -0.0068881697952747345, 0.01242890115827322, 0.16224369406700134, 0.04406825825572014, 0.08452208340167999, 0.14250440895557404, -0.026455026119947433, -0.016114573925733566, 0.17334569990634918, 0.17106501758098602, -0.014037161134183407, 0.08718273043632507, -0.05552244931459427, -0.2646014094352722, 0.044212065637111664, 0.058431971818208694, -0.020032864063978195, 0.14111687242984772, 0.0714879110455513, -0.01828647032380104, 0.10845158249139786, -0.02953636273741722, -0.18877948820590973, 0.03499612212181091, 0.05605728179216385, -0.09992336481809616, 0.11936124414205551, 0.04713086411356926, 0.08659981191158295, 0.015409729443490505, -0.07482189685106277, -0.12249794602394104, 0.03866785019636154, 0.041891295462846756, -0.0629689022898674, 0.05911329388618469, 0.08818957209587097, -0.11120674759149551, 0.1456013321876526, 0.07799911499023438, -0.01863223686814308, 0.07941857725381851, -0.17164963483810425, -0.019008882343769073, -0.036983806639909744, 0.005464354529976845, 0.057414017617702484, 0.07476010918617249, -0.01932354085147381, 0.1732589453458786, -0.0767555758357048, 0.09587065875530243, 0.16117197275161743, -0.2913956344127655, -0.005072304047644138, 0.0498935841023922, 0.06722559779882431, 0.03902119770646095, -0.015738610178232193, 0.08706029504537582, 0.06277379393577576, 0.02536560781300068, -0.0014978112885728478, -0.06339331716299057, -0.0928240567445755, 0.04014677554368973, -0.0745372325181961, -0.06578013300895691, 0.20811960101127625, -0.039430033415555954, 0.050536420196294785, -0.03807967156171799, -0.10491003096103668, -0.02197154052555561, -0.015753688290715218, 0.00720712635666132, -0.06031509116292, 0.08949250727891922, -0.014659170061349869, -0.07363511621952057, -0.15025688707828522, -0.016003666445612907, -0.18369624018669128, 0.1574522852897644, 0.003967532888054848, 0.04864242300391197, -0.2093716263771057, 0.11408322304487228, 0.020872395485639572, -0.08021171391010284, 0.047296058386564255, -0.09546594321727753, 0.07179957628250122, 0.002116252202540636, -0.05267130210995674, -0.02264278009533882, 0.08682441711425781, 0.15258505940437317, -0.026140356436371803, 0.0017382961232215166, -0.027155736461281776, 0.07059825956821442, 0.05281682312488556, 0.040018972009420395, -0.017763059586286545, -0.04289618879556656, 0.045782025903463364, -0.15945611894130707, -0.007582054473459721, -0.06918198615312576, -0.1068587526679039, -0.05112413689494133, 0.022331949323415756, 0.06442617624998093, 0.031878020614385605, 0.11345649510622025, -0.04609488695859909, -0.014168480411171913, 0.06350603699684143, -0.042460083961486816, -0.0172110628336668, -0.016047241166234016, 0.015319211408495903, 0.14095398783683777, -0.018181998282670975, 0.030711950734257698, -0.11251416057348251, 0.0645761713385582, -0.09946728497743607, -0.01914660818874836, -0.0071241967380046844, -0.04078202322125435, 0.029947424307465553, -0.13505136966705322, 0.010975461453199387, -0.1711256355047226, -0.14874492585659027, 0.009897243231534958, -0.02876151353120804, -0.018498392775654793, -0.059200938791036606, -0.03973992541432381, -0.01719699800014496, 0.06084148958325386, -0.04528016224503517, 0.0009662628290243447, -0.05951235070824623, 0.11524756252765656, -0.05245914310216904, 0.06888316571712494, -0.13250301778316498, 0.05976588651537895, -0.15375985205173492, -0.00870948750525713, -0.04503806680440903, 0.08287355303764343, 0.017666861414909363, 0.16653785109519958, -0.006960130762308836, -0.012972959317266941, -0.09847598522901535, 0.06441020965576172, -0.023426895961165428, 0.24133971333503723, -0.06349262595176697, -0.143473818898201, 0.22233937680721283, -0.06944137066602707, -0.1420930027961731, 0.12657590210437775, 0.020838137716054916, 0.07354387640953064, 0.10204131156206131, 0.19502143561840057, 0.014321080408990383, 0.006638950202614069, 0.054760824888944626, 0.0820525735616684, -0.17468082904815674, -0.03090454451739788, -0.00916894432157278, -0.01691337674856186, -0.1358218789100647, 0.043003637343645096, 0.11889315396547318, 0.10293904691934586, -0.07099705934524536, -0.013554582372307777, -0.03317642584443092, -0.004439891315996647, 0.06940841674804688, -0.007896981202065945, 0.09806080162525177, -0.09929461032152176, -0.040301576256752014, -0.058301206678152084, -0.006890235934406519, 0.0024084753822535276, 0.04120192304253578, -0.040066637098789215, 0.10096675902605057, -0.0006905568297952414, 0.05225489288568497, -0.14046427607536316, -0.07798092812299728, -0.020940499380230904, 0.1575685739517212, 0.04120592027902603, 0.04776391014456749, 0.057414863258600235, -0.0481991246342659, -0.0158701092004776, -0.009968787431716919, 0.16312187910079956, -0.0394844189286232, -0.06968989968299866, -0.056453973054885864, 0.10656707733869553, -0.058365050703287125, 0.03222460299730301, -0.04202231392264366, 0.022449776530265808, 0.060929615050554276, 0.12114907056093216, -0.0026538248639553785, 0.029062092304229736, -0.01023187953978777, -0.0038288652431219816, -0.07459788024425507, -0.020947640761733055, 0.10031349956989288, -0.004600553773343563, -0.08327498286962509, 0.23685328662395477, -0.17454755306243896, 0.19663569331169128, 0.2115958034992218, -0.2628093659877777, -0.024321777746081352, -0.06840608268976212, -0.05017746612429619, 0.003011465771123767, 0.05876095965504646, -0.04692309722304344, 0.09809201210737228, -0.02521132305264473, 0.16497591137886047, -0.04652651026844978, -0.07362692058086395, 0.016456644982099533, -0.05898859724402428, -0.0463954322040081, 0.0659271627664566, 0.08106416463851929, -0.15480613708496094, 0.18694530427455902, 0.20838376879692078, 0.07612863928079605, 0.19334357976913452, 0.004058185499161482, -0.014812501147389412, 0.08005014806985855, -0.03805047646164894, -0.04202093929052353, -0.07553261518478394, -0.16944189369678497, -0.01902174763381481, 0.07485251128673553, 0.03750864416360855, 0.11274250596761703, -0.10172852873802185, -0.07372885197401047, -0.016179129481315613, -0.005032413639128208, 0.005167648661881685, 0.1174640879034996, 0.045775800943374634, 0.14043675363063812, -0.019972821697592735, 0.03493902459740639, 0.08747350424528122, 0.02448674477636814, -0.10759711265563965, 0.16407065093517303, -0.14081640541553497, -0.38538745045661926, -0.16212545335292816, -0.13394121825695038, -0.029274288564920425, 0.04825805127620697, 0.11038947850465775, -0.13598975539207458, 0.0011978530092164874, -0.003706524148583412, 0.12342415004968643, -0.0806080624461174, 0.03755999356508255, -0.07838296890258789, 0.026997538283467293, -0.06349453330039978, -0.07917723804712296, -0.036463622003793716, -0.03232228383421898, -0.10000553727149963, 0.1757805496454239, -0.11054177582263947, 0.057571277022361755, 0.1741490364074707, 0.022440658882260323, 0.034390855580568314, -0.0513761006295681, 0.17275545001029968, -0.11779367178678513, 0.02093288116157055, 0.16278521716594696, -0.01799617148935795, 0.08678310364484787, 0.08059167861938477, -0.015366556122899055, -0.10777527838945389, 0.05196633189916611, 0.0019955262541770935, -0.1096891239285469, -0.20052047073841095, -0.12150565534830093, -0.0784008651971817, 0.14483654499053955, 0.05303339660167694, 0.05915789678692818, 0.17167222499847412, 0.08591149002313614, -0.04288473725318909, -0.004711467772722244, -0.012867298908531666, 0.07781979441642761, 0.1684085726737976, -0.017248503863811493, 0.11789125204086304, -0.05446818470954895, -0.11601924896240234, 0.13826869428157806, 0.02504623495042324, 0.050291191786527634, 0.04182872176170349, 0.008374262601137161, -0.009610554203391075, 0.09969738125801086, 0.12988939881324768, 0.118865467607975, -0.008107239380478859, -0.0232877004891634, -0.03601100295782089, -0.00860752072185278, -0.03570752218365669, 0.034572016447782516, 0.011757065542042255, -0.16013272106647491, -0.05726486071944237, -0.12173470109701157, 0.0964120477437973, 0.09787409752607346, 0.08039643615484238, -0.2033146470785141, -0.004589703865349293, 0.07378163933753967, -0.03603411093354225, -0.11624246090650558, 0.086527980864048, 0.033109065145254135, -0.1271866261959076, 0.0817195475101471, -0.03352120518684387, 0.115711510181427, -0.017423994839191437, 0.09427224844694138, -0.04346824064850807, -0.0329415462911129, -0.012381686829030514, 0.10430185496807098, -0.30799204111099243, 0.17485815286636353, -0.019660785794258118, -0.07034741342067719, -0.07672256976366043, -0.025566134601831436, 0.017929747700691223, 0.07530300319194794, 0.09619415551424026, 0.024311896413564682, 0.04642496258020401, -0.09243860840797424, -0.03940937668085098, 0.034113768488168716, 0.13641610741615295, -0.0638844221830368, -0.015862328931689262, -0.04075292870402336, 0.01116214320063591, -0.019626103341579437, -0.027355113998055458, 0.018256209790706635, -0.1504947543144226, 0.05358212813735008, 0.017237937077879906, 0.0753018707036972, 0.03889141231775284, -0.007973386906087399, -0.10224062204360962, 0.18268363177776337, -0.03004412353038788, -0.08521177619695663, -0.127006396651268, -0.04812724515795708, 0.04587927460670471, -0.051474425941705704, 0.034381575882434845, -0.06691597402095795, -0.011345877312123775, -0.06886660307645798, -0.21483656764030457, 0.12495172768831253, -0.0775398537516594, -0.07874035835266113, -0.03474915772676468, 0.20981398224830627, -0.05076101794838905, -0.00018431349599268287, 0.01172169204801321, 0.014822970144450665, -0.1086968258023262, -0.10466268658638, 0.06874550879001617, -0.034708425402641296, 0.02743770368397236, 0.02760813757777214, -0.03700246661901474, 0.02073092758655548, -0.06074898689985275, -0.01314478274434805, 0.2849438786506653, 0.22848764061927795, -0.035804633051157, 0.1875685602426529, 0.10711772739887238, -0.07248730212450027, -0.30828598141670227, -0.0999293103814125, -0.13133330643177032, -0.033457282930612564, -0.02052777260541916, -0.17081500589847565, 0.07089676707983017, 0.04558560997247696, 0.00998434517532587, 0.14900504052639008, -0.21140912175178528, -0.08518896996974945, 0.1092359870672226, -0.03466132655739784, 0.42140644788742065, -0.1164151057600975, -0.09652433544397354, -0.05340435355901718, -0.15239587426185608, 0.20086675882339478, -0.01557826716452837, 0.08761543780565262, -0.031178412958979607, 0.14360429346561432, 0.04995222017168999, -0.01680157333612442, 0.08329997956752777, 0.0014065488940104842, 0.004026432521641254, -0.12653036415576935, -0.022627411410212517, 0.0504734143614769, 0.021120509132742882, 0.0054380460642278194, -0.07736434042453766, 0.028706049546599388, -0.14863882958889008, -0.024921666830778122, -0.10909338295459747, 0.08278775960206985, 0.03857516124844551, -0.07422378659248352, -0.010892878286540508, -0.05615931376814842, -0.023589344695210457, -0.012528443709015846, 0.13453009724617004, -0.050522636622190475, 0.1720355898141861, 0.036824267357587814, 0.11522943526506424, -0.13816054165363312, 0.06146138161420822, -0.07406572997570038, -0.07532623410224915, 0.06773588061332703, -0.13577620685100555, 0.05240122601389885, 0.10075365751981735, -0.03372569754719734, 0.04758675396442413, 0.08927652984857559, 0.000919255951885134, 0.009403540752828121, 0.15953567624092102, -0.2761637568473816, 0.01791755110025406, -0.07046908140182495, -0.07692829519510269, 0.112159863114357, 0.07484955340623856, 0.181244894862175, 0.02791808731853962, -0.0472177192568779, 0.012221097014844418, 0.019269011914730072, -0.05120278522372246, 0.0548672117292881, 0.006578541360795498, -0.011816216632723808, -0.14148055016994476, 0.08790901303291321, -0.0015104453777894378, -0.1429632604122162, 0.02210722118616104, 0.19665491580963135, -0.13288317620754242, -0.10024755448102951, -0.05081937462091446, 0.057288672775030136, -0.13861924409866333, 0.008680099621415138, -0.01990172080695629, -0.09562872350215912, 0.0756591260433197, 0.1573420912027359, 0.05079081282019615, 0.12963363528251648, -0.02916029281914234, -0.008411908522248268, -0.04279141128063202, -0.051675889641046524, 0.02788730151951313, 0.019720058888196945, -0.07752392441034317, 0.08735781908035278, -0.024015765637159348, 0.14329436421394348, -0.10051412135362625, -0.06987810134887695, -0.1344141960144043, -0.005019306670874357, -0.09607285261154175, -0.0959741547703743, -0.08079583197832108, -0.061935000121593475, 0.004180733114480972, -0.039079975336790085, -0.0417400486767292, -0.08063078671693802, -0.10278100520372391, 0.016344387084245682, -0.02737213484942913, 0.028547246009111404, -0.07021904736757278, 0.008450011722743511, 0.12212047725915909, -0.029432062059640884, 0.17478644847869873, 0.15045183897018433, -0.10443241149187088, 0.10585668683052063, -0.17528948187828064, -0.10057486593723297, 0.10386897623538971, -0.01424362976104021, 0.02509693056344986, 0.12928596138954163, 0.018586233258247375, 0.04242280498147011, 0.03278495371341705, 0.06450606882572174, 0.04438134282827377, -0.11879310011863708, 0.08265755325555801, -0.002198860514909029, -0.15595629811286926, -0.061124756932258606, -0.09235648810863495, 0.02707000821828842, 0.02035105973482132, 0.11072126775979996, -0.04177020862698555, 0.08901136368513107, -0.06589431315660477, 0.023006385192275047, 0.025188656523823738, -0.17641755938529968, -0.03692740947008133, -0.05073147267103195, 0.03235582634806633, 0.028527792543172836, 0.22216679155826569, 0.015049049630761147, -0.030550595372915268, 0.0387740358710289, 0.12439186871051788, 0.015807392075657845, -0.0005460345419123769, 0.1709187924861908, 0.10334094613790512, -0.07364179939031601, -0.14011329412460327, 0.0676020160317421, 0.012262817472219467, -0.05599943920969963, 0.11458845436573029, -0.01812131516635418, -0.006866521667689085, 0.0670672059059143, -0.019556820392608643, 0.03449620306491852, -0.06607513129711151, -0.12762659788131714, -0.02478908933699131, 0.04269528388977051, 0.0029638311825692654, 0.12794137001037598, 0.15664103627204895, -0.005168106406927109, 0.026651626452803612, -0.015845872461795807, -0.023246217519044876, -0.13421551883220673, -0.15646639466285706, -0.06222613900899887, -0.14998294413089752, 0.022462334483861923, -0.08663632720708847, 0.047867026180028915, 0.05302877724170685, 0.07266844809055328, -0.06541765481233597, 0.06867647916078568, 0.049353908747434616, -0.11939282715320587, 0.08969518542289734, -0.024748487398028374, 0.04455447196960449, -0.0018985075876116753, -0.03077637031674385, -0.10359742492437363, 0.042003192007541656, -0.01649407483637333, 0.045346152037382126, -0.04421991854906082, 0.022579338401556015, -0.1750071942806244, -0.10995419323444366, -0.04818427562713623, 0.06838665902614594, -0.06683412194252014, 0.04056481271982193, 0.01606888137757778, 0.011690732091665268, 0.030521972104907036, 0.22083373367786407, -0.041100796312093735, -0.04384056478738785, -0.041319385170936584, 0.1635150909423828, -0.014866671524941921, 0.08733032643795013, -0.027159888297319412, -0.008534550666809082, -0.09159335494041443, 0.3551705777645111, 0.29626867175102234, -0.08988689631223679, 0.018322573974728584, -0.023403000086545944, 0.04054094851016998, 0.13749836385250092, 0.13930056989192963, 0.09693139791488647, 0.23870247602462769, -0.069560706615448, -0.05235563591122627, -0.01810343936085701, -0.013992605730891228, -0.06698887050151825, 0.09740167111158371, 0.02308662235736847, -0.05992421507835388, -0.0399320125579834, 0.09157036244869232, -0.2363831102848053, 0.1119081899523735, -0.1049022525548935, -0.15424089133739471, -0.03413557633757591, 0.011207441799342632, 0.07758733630180359, 0.01318280678242445, 0.11218693852424622, 0.013466300442814827, -0.0844072625041008, 0.014990749768912792, 0.034041877835989, -0.25270384550094604, 0.004782035481184721, 0.053680628538131714, -0.12391778826713562, -0.004765757359564304, -0.025234686210751534, 0.013625700026750565, 0.05700398609042168, 0.04094824194908142, -0.03069460764527321, 0.016096249222755432, -0.006652043666690588, -0.020144162699580193, -0.008288858458399773, 0.05953062325716019, 0.04713095352053642, -0.1559005230665207, 0.06380777060985565, -0.13577982783317566, 0.04075455665588379, -0.023885579779744148, -0.012463473714888096, -0.0012933483812958002, 0.01776987873017788, -0.0522073432803154, 0.06581555306911469, 0.07255802303552628, -0.0144086554646492, 0.008549283258616924, -0.08346639573574066, -0.034440234303474426, -0.023841137066483498, -0.10951124131679535, -0.08404874801635742, -0.13158579170703888, -0.12121031433343887, 0.10822955518960953, -0.02819518744945526, -0.18475614488124847, 0.03248962014913559, -0.12301548570394516, 0.05860345810651779, -0.17328192293643951, 0.11332228779792786, 0.07014153152704239, 0.018578365445137024, 0.01264720968902111, -0.007008096668869257, 0.08073210716247559, 0.11507359892129898, -0.0813264548778534, -0.08199906349182129 ]
null
null
transformers
<link rel="stylesheet" href="https://unpkg.com/@tailwindcss/[email protected]/dist/typography.min.css"> <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1129436437219168257/eYJ-Fjl9_400x400.png')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Comm Sci 🤖 AI Bot </div> <div style="font-size: 15px; color: #657786">@ica_csab bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://app.wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-model-to-generate-tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@ica_csab's tweets](https://twitter.com/ica_csab). <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>1867</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>947</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>32</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>888</td> </tr> </tbody> </table> [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/qqqm6bwp/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @ica_csab's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/2oqp0es9) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/2oqp0es9/artifacts) is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/ica_csab'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) <section class='prose'> For more details, visit the project repository. </section> [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/ica_csab/1609602488446/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/ica_csab
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
<link rel="stylesheet" href="URL <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('URL </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Comm Sci AI Bot </div> <div style="font-size: 15px; color: #657786">@ica_csab bot</div> </div> I was made with huggingtweets. Create your own bot based on your favorite user with the demo! ## How does it work? The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. ## Training data The model was trained on @ica_csab's tweets. <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>1867</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>947</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>32</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>888</td> </tr> </tbody> </table> Explore the data, which is tracked with W&B artifacts at every step of the pipeline. ## Training procedure The model is based on a pre-trained GPT-2 which is fine-tuned on @ica_csab's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/ica_csab'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> ![Follow](URL <section class='prose'> For more details, visit the project repository. </section> ![GitHub stars](URL
[ "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @ica_csab's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>1867</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>947</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>32</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>888</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @ica_csab's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/ica_csab'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @ica_csab's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>1867</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>947</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>32</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>888</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @ica_csab's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/ica_csab'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ 57, 34, 430, 76, 9, 168, 48, 58 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report." ]
[ -0.04084593802690506, 0.035596683621406555, -0.0024457171093672514, 0.04662978649139404, 0.10991521924734116, 0.022836215794086456, 0.12812861800193787, 0.0424627922475338, -0.03746044635772705, -0.03597303107380867, 0.22758877277374268, 0.1009177565574646, 0.03089720755815506, 0.17962171137332916, 0.010350672528147697, -0.2703946828842163, 0.015237200073897839, 0.0647135004401207, -0.07720091193914413, 0.15752871334552765, 0.05562684312462807, -0.049801189452409744, 0.08214939385652542, 0.032038331031799316, -0.165513277053833, -0.004831716418266296, -0.02072383277118206, -0.04504403471946716, 0.09232694655656815, 0.06956911832094193, 0.07011176645755768, 0.034282486885786057, 0.017851393669843674, -0.0714372918009758, 0.06354191154241562, 0.014452377334237099, -0.02349161170423031, 0.13615116477012634, 0.028668763116002083, -0.0002947957837022841, 0.1798527091741562, 0.11815319955348969, 0.016722125932574272, 0.016196802258491516, -0.1166125237941742, -0.0606788769364357, 0.012365915812551975, 0.04470464214682579, 0.10005760192871094, 0.058856748044490814, 0.01943058706820011, 0.13215520977973938, -0.1164829432964325, 0.08512931317090988, 0.1828341782093048, -0.24191047251224518, -0.006823094096034765, 0.061043880879879, 0.08518847078084946, 0.02852868288755417, -0.0027500083670020103, 0.050437480211257935, 0.06484624743461609, 0.021347152069211006, 0.03636380657553673, -0.0638979896903038, 0.05009674280881882, 0.011186900548636913, -0.10215270519256592, -0.07660897821187973, 0.2294245809316635, -0.0602995827794075, 0.004886541981250048, -0.028186868876218796, -0.08490151911973953, -0.06026294082403183, -0.012795685790479183, -0.05738116800785065, -0.01700775697827339, 0.034475523978471756, 0.0214629378169775, -0.10922146588563919, -0.07046429812908173, -0.1146778091788292, -0.09578189998865128, 0.17879855632781982, -0.02900231070816517, 0.08940442651510239, -0.2603394091129303, 0.2254239320755005, 0.07019765675067902, -0.11909467726945877, 0.04757627099752426, -0.11814092099666595, 0.08530338853597641, 0.02207805961370468, 0.041434839367866516, 0.07761925458908081, 0.04161522537469864, 0.11940909177064896, 0.03257475048303604, -0.00314142694696784, 0.05456724017858505, 0.07224375009536743, 0.0941813513636589, 0.1230122447013855, -0.07287998497486115, -0.07873915135860443, 0.08034131675958633, -0.04709449037909508, -0.11787727475166321, -0.06861002743244171, -0.1452382206916809, -0.004202034790068865, -0.0335184708237648, 0.07922724634408951, 0.05637102574110031, 0.09526676684617996, -0.01433930266648531, -0.05777551606297493, 0.04157217592000961, -0.06985066086053848, 0.019995175302028656, -0.011708668433129787, -0.060763102024793625, 0.13121068477630615, 0.04688004031777382, -0.014275136403739452, -0.08673419058322906, 0.07951672375202179, -0.1204570084810257, -0.07978847622871399, -0.08239417523145676, -0.05098734796047211, -0.007686138618737459, -0.11281027644872665, 0.049203939735889435, -0.11458899080753326, -0.22705501317977905, -0.01313747651875019, 0.04550096020102501, -0.016462473198771477, -0.03707117214798927, -0.040630146861076355, -0.009473399259150028, 0.04880702868103981, -0.042894408106803894, 0.039052072912454605, -0.05325083062052727, 0.050018906593322754, -0.09618895500898361, 0.051321301609277725, -0.10470817238092422, 0.041251372545957565, -0.09671807289123535, 0.07595963031053543, 0.0017866486450657248, 0.0454767569899559, 0.010063555091619492, 0.08985432982444763, -0.03214199095964432, -0.044836416840553284, -0.07869677990674973, 0.026561295613646507, 0.02284199558198452, 0.20134314894676208, -0.10196486860513687, -0.0819794163107872, 0.12614667415618896, -0.07252102345228195, -0.1288122832775116, 0.0409054271876812, -0.02831157296895981, 0.17958028614521027, 0.07370224595069885, 0.16096454858779907, 0.12039237469434738, -0.03798284754157066, 0.1263856589794159, 0.14821170270442963, -0.1269366294145584, -0.004153167363256216, 0.039416827261447906, 0.014042570255696774, -0.20559121668338776, 0.04052022844552994, -0.01946125738322735, 0.06584736704826355, -0.10201486945152283, -0.00946728140115738, 0.0031527038663625717, -0.02320384420454502, 0.0023026331327855587, -0.0472555048763752, 0.061078161001205444, 0.038737643510103226, -0.022763127461075783, 0.029682613909244537, 0.06635552644729614, -0.026160234585404396, -0.00823320634663105, -0.04484035447239876, 0.10009831935167313, -0.07260703295469284, 0.06797321885824203, -0.13160665333271027, -0.003086181590333581, -0.012450510635972023, 0.0972909927368164, 0.03811546042561531, 0.10621625185012817, 0.05470104143023491, 0.03126294165849686, 0.07701993733644485, -0.02846951223909855, 0.0746634304523468, 0.01002051867544651, -0.0850096121430397, -0.1272277683019638, 0.015217535197734833, -0.10649837553501129, -0.004191380459815264, -0.08523700386285782, -0.0015737697249278426, -0.12802091240882874, 0.05826076865196228, -0.016465239226818085, 0.0539434514939785, -0.055182818323373795, -0.04337453469634056, -0.044662054628133774, -0.022007398307323456, 0.0482511967420578, -0.033139705657958984, -0.06687536835670471, 0.16832175850868225, -0.15395553410053253, 0.2592274248600006, 0.1313537061214447, -0.0889907032251358, 0.002020547864958644, -0.07812081277370453, -0.04194976016879082, -0.012868959456682205, 0.07527336478233337, -0.03700125962495804, 0.15495356917381287, -0.03386903926730156, 0.17382068932056427, -0.099679134786129, -0.0334031768143177, 0.02144831046462059, -0.10981054604053497, 0.057656705379486084, 0.08051177859306335, 0.04427298903465271, -0.159133642911911, 0.08837400376796722, 0.19756358861923218, 0.05472150072455406, 0.20321963727474213, -0.006869805511087179, -0.06112205237150192, -0.05358194187283516, -0.0808696523308754, -0.052568696439266205, 0.056259434670209885, -0.09903126955032349, -0.004000484477728605, 0.06423190236091614, 0.08783505111932755, 0.11237549781799316, -0.10904275625944138, -0.046180129051208496, 0.05125856027007103, -0.004819708876311779, -0.051060013473033905, 0.07006146013736725, -0.0659489631652832, 0.13217470049858093, 0.014598124660551548, -0.07049204409122467, 0.0036125897895544767, -0.004913401324301958, -0.11891388893127441, 0.20653130114078522, -0.08047540485858917, -0.27306002378463745, -0.16792123019695282, -0.16288253664970398, 0.07165426760911942, 0.038431257009506226, 0.033738572150468826, -0.08776884526014328, -0.020982403308153152, 0.004409478977322578, 0.11553267389535904, -0.09698133170604706, 0.013121976517140865, 0.008159824647009373, -0.018650712445378304, -0.07579360157251358, -0.09033482521772385, -0.0241270512342453, -0.02461584471166134, 0.020020704716444016, 0.03998296707868576, -0.11154978722333908, 0.06758414953947067, 0.2167699933052063, -0.015538511797785759, 0.06870997697114944, 0.00025148785789497197, 0.26176807284355164, -0.08426473289728165, 0.040830448269844055, 0.11926601082086563, -0.08760137856006622, 0.05199241638183594, 0.07132956385612488, 0.03210015222430229, -0.014074578881263733, 0.016441889107227325, -0.11233895272016525, -0.12864868342876434, -0.1923626959323883, -0.06961654871702194, -0.028241310268640518, 0.13464264571666718, 0.031150488182902336, 0.04321796074509621, 0.10346641391515732, 0.07471037656068802, 0.06701335310935974, 0.03259968012571335, -0.0005120337591506541, 0.0647427961230278, 0.024594781920313835, -0.05812343955039978, 0.054217349737882614, -0.04845457896590233, -0.0797470211982727, 0.08279551565647125, -0.011098933406174183, 0.0927528515458107, 0.06928195804357529, 0.02340286411345005, 0.018686039373278618, 0.04218229651451111, 0.15593960881233215, 0.22442668676376343, -0.012412761338055134, -0.041085485368967056, -0.05078154057264328, -0.040494389832019806, -0.01600850187242031, 0.015044075436890125, -0.05785144492983818, -0.033252447843551636, -0.0728597640991211, -0.015066487714648247, 0.011195010505616665, 0.015441779047250748, 0.07578693330287933, -0.22024130821228027, -0.038240667432546616, 0.042616840451955795, -0.013794191181659698, -0.10639895498752594, 0.05872863903641701, 0.016779562458395958, -0.17391349375247955, -0.07854076474905014, -0.016605399549007416, 0.1603294163942337, -0.030760308727622032, 0.0619782954454422, 0.005449770484119654, 0.02271227352321148, -0.013140208087861538, 0.11191333085298538, -0.27346712350845337, 0.1954270750284195, 0.001131516881287098, -0.04876048117876053, -0.016439033672213554, -0.04243995249271393, 0.0009058643481694162, 0.14556926488876343, 0.09718295931816101, 0.0028763783629983664, 0.0669604167342186, -0.07678256928920746, -0.11943262070417404, 0.05284353718161583, 0.08068333566188812, -0.07738065719604492, 0.029960619285702705, -0.029798466712236404, 0.027152907103300095, -0.007555682212114334, -0.030231619253754616, 0.002119861776009202, -0.11661309748888016, 0.02936525270342827, -0.08075195550918579, 0.06012337654829025, 0.02433968149125576, -0.02529163844883442, -0.012048180215060711, 0.1316436529159546, -0.013300766237080097, -0.08264251798391342, -0.08976204693317413, -0.02328740619122982, 0.09523095935583115, -0.05599937587976456, 0.03358715400099754, -0.08175740391016006, -0.04073614999651909, 0.005860272329300642, -0.16970814764499664, 0.06983034312725067, -0.10846570879220963, -0.09971687942743301, -0.050264790654182434, 0.15346404910087585, 0.013677009381353855, 0.025709833949804306, 0.03220117464661598, -0.04211581498384476, -0.18150363862514496, -0.15989434719085693, -0.007562890648841858, 0.0717545747756958, -0.04433317109942436, 0.03638565540313721, 0.007171243894845247, 0.10013602674007416, 0.004198792390525341, 0.07230839878320694, 0.2026015669107437, 0.16423118114471436, -0.08760133385658264, 0.17723721265792847, 0.16266676783561707, -0.12243213504552841, -0.2722402811050415, -0.09522651135921478, -0.05925937369465828, 0.03468820080161095, 0.02297091670334339, -0.13072867691516876, 0.06184706464409828, -0.011241482570767403, -0.004976592492312193, 0.13391432166099548, -0.2790721356868744, -0.07025358080863953, 0.13864430785179138, -0.012145180255174637, 0.2560276985168457, -0.042459286749362946, -0.08155408501625061, -0.060940731316804886, -0.2339130938053131, 0.1595010906457901, -0.12908293306827545, 0.030256805941462517, -0.06380902975797653, 0.1317017376422882, 0.04475972056388855, -0.051817599684000015, 0.13714583218097687, -0.0770399421453476, 0.03692200407385826, -0.1231972947716713, -0.01437266543507576, 0.05212629213929176, -0.014681367203593254, 0.10554680228233337, -0.053141020238399506, 0.10400939732789993, -0.12106935679912567, -0.052672889083623886, -0.054288461804389954, 0.017598338425159454, -0.023758167400956154, -0.05668776109814644, -0.039483629167079926, -0.05230721831321716, 0.00942184031009674, -0.024894973263144493, -0.008981208316981792, -0.02189256064593792, 0.08200293034315109, 0.10853444039821625, 0.1416669338941574, -0.04508063197135925, -0.02666328102350235, -0.029412275180220604, -0.043095141649246216, 0.07755832374095917, -0.1675589680671692, -0.020979177206754684, 0.15767353773117065, 0.008264025673270226, 0.08081416040658951, 0.07994852215051651, -0.043529048562049866, -0.04116993397474289, 0.09435915946960449, -0.23738352954387665, -0.032961416989564896, -0.07289689034223557, -0.032304681837558746, 0.05143286660313606, 0.06389017403125763, 0.11233682930469513, -0.055076416581869125, -0.015500548295676708, 0.038369257003068924, -0.013473432511091232, -0.10457789897918701, 0.12659704685211182, 0.07594829052686691, 0.04931824654340744, -0.13000807166099548, 0.03979043290019035, -0.02080575004220009, -0.024042857810854912, -0.009190280921757221, 0.09610513597726822, -0.13868926465511322, -0.061987441033124924, 0.01100219041109085, 0.1624082624912262, -0.08940329402685165, -0.054934311658144, -0.00678250240162015, -0.07782098650932312, 0.06215988099575043, 0.06269455701112747, 0.039047662168741226, 0.10006190836429596, -0.08492296934127808, -0.004345493856817484, -0.04427671059966087, 0.02742549031972885, 0.04004936292767525, -0.01839151792228222, -0.11644710600376129, 0.050648268312215805, 0.01261399406939745, 0.21786263585090637, -0.12195943295955658, -0.07748695462942123, -0.13975368440151215, 0.03579137846827507, -0.1441981941461563, -0.02782432734966278, -0.09455464035272598, -0.0542730838060379, -0.024786408990621567, -0.02354593575000763, -0.05044161155819893, -0.03595460206270218, -0.06568260490894318, 0.04963921010494232, -0.01889806240797043, -0.04201965406537056, -0.018809955567121506, 0.04780932888388634, 0.10624072700738907, -0.0022816911805421114, 0.11582330614328384, 0.10476028919219971, -0.06149300932884216, 0.06964143365621567, -0.08975338935852051, 0.049342647194862366, 0.010800108313560486, -0.03639211133122444, 0.07890737056732178, 0.033158838748931885, 0.011678727343678474, -0.02014644630253315, -0.05248590186238289, 0.015699470415711403, 0.019494805485010147, -0.09001129865646362, 0.04338252544403076, 0.03427375108003616, -0.07128193974494934, -0.06945458799600601, -0.02831537090241909, -0.04915383830666542, 0.10966338962316513, 0.09227382391691208, 0.01580313965678215, 0.11524862796068192, -0.09982031583786011, -0.0043287696316838264, 0.0288130734115839, -0.08074736595153809, -0.01706261746585369, -0.10044533759355545, -0.01304725930094719, -0.02274717018008232, 0.2554529011249542, 0.12089171260595322, -0.025309232994914055, -0.03230812028050423, 0.07114472985267639, 0.08105676621198654, -0.0211230106651783, 0.14824873208999634, 0.03444083034992218, -0.0007331980159506202, -0.1400776505470276, 0.10673409700393677, -0.060156434774398804, -0.010151425376534462, 0.09550673514604568, -0.08319920301437378, 0.048856139183044434, 0.07468824833631516, -0.01950058713555336, 0.05372466519474983, -0.11716536432504654, -0.2690386474132538, 0.023945249617099762, 0.027653370052576065, -0.0441947840154171, 0.07253700494766235, 0.145015150308609, 0.00042942073196172714, 0.05244648456573486, 0.061493102461099625, -0.05709811672568321, -0.17804701626300812, -0.19115881621837616, -0.0384756401181221, -0.11082857847213745, -0.023826930671930313, -0.10639674216508865, 0.04148538038134575, -0.02072913944721222, 0.05925795063376427, -0.09639845043420792, 0.12447383254766464, 0.06843417137861252, -0.11577396094799042, 0.05810433253645897, -0.008805959485471249, 0.048459235578775406, -0.07387776672840118, 0.08210063725709915, -0.10721065104007721, -0.026499031111598015, -0.016933415085077286, 0.03711435943841934, -0.05858420953154564, 0.0011270071845501661, -0.10357651859521866, -0.06808403134346008, -0.056935109198093414, 0.09072309732437134, -0.024477418512105942, 0.03998230770230293, -0.014557241462171078, -0.061277762055397034, -0.025446701794862747, 0.2273169606924057, -0.018587565049529076, -0.043939489871263504, -0.0661960318684578, 0.2851298749446869, -0.06544138491153717, 0.07253559678792953, -0.032977886497974396, -0.001274158013984561, -0.07127615064382553, 0.2931469976902008, 0.36314713954925537, -0.14264726638793945, 0.011796033009886742, -0.018389053642749786, 0.03556118905544281, 0.07535336911678314, 0.18024654686450958, 0.07291083037853241, 0.3107033371925354, -0.04080776497721672, -0.01225926261395216, -0.10546047985553741, -0.03835856914520264, 0.014304363168776035, 0.02947218343615532, 0.08378855139017105, -0.05586446449160576, -0.06808875501155853, 0.1039084792137146, -0.26703301072120667, -0.02056516334414482, -0.16380304098129272, -0.061613935977220535, -0.04166705906391144, 0.0007227687747217715, 0.07237391918897629, 0.028740311041474342, 0.05115301162004471, -0.039005450904369354, -0.047156207263469696, 0.057444483041763306, -0.02154913917183876, -0.12674635648727417, 0.0002557095722295344, 0.143532857298851, -0.07906237244606018, -0.0018181405030190945, 0.0032308290246874094, 0.060348983854055405, 0.044118594378232956, 0.04119637981057167, -0.10164451599121094, 0.02608482725918293, 0.01246592216193676, -0.03363148868083954, -0.028164468705654144, 0.008156497962772846, 0.07835527509450912, -0.21697945892810822, 0.0020338469184935093, -0.14078554511070251, 0.011757226660847664, -0.07641053944826126, -0.006896127946674824, -0.08222074061632156, 0.03242125362157822, 0.004625517874956131, 0.1118803396821022, 0.11125602573156357, -0.03202005848288536, -0.0006144302315078676, -0.06265610456466675, 0.06727221608161926, -0.06884542852640152, -0.02960195019841194, -0.025150567293167114, -0.09257599711418152, -0.09335606545209885, 0.09815482050180435, -0.022339481860399246, -0.1427105814218521, 0.007601875811815262, -0.09401176869869232, -0.04369132220745087, -0.021486658602952957, 0.09382037818431854, 0.11086808145046234, 0.09180203825235367, -0.007599277421832085, 0.047748953104019165, 0.03120456263422966, 0.07436691224575043, -0.12886843085289001, -0.10148585587739944 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1370399025007038473/mzizrEEw_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">IJ 🤖 AI Bot </div> <div style="font-size: 15px">@icelynjennings bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@icelynjennings's tweets](https://twitter.com/icelynjennings). | Data | Quantity | | --- | --- | | Tweets downloaded | 1229 | | Retweets | 177 | | Short tweets | 87 | | Tweets kept | 965 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/2hv39q4l/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @icelynjennings's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/1ryzf24a) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/1ryzf24a/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/icelynjennings') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/icelynjennings/1617750835324/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/icelynjennings
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
IJ AI Bot @icelynjennings bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @icelynjennings's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @icelynjennings's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<link rel="stylesheet" href="https://unpkg.com/@tailwindcss/[email protected]/dist/typography.min.css"> <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/875446048998789125/iVF4liQA_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">IDPH 🤖 AI Bot </div> <div style="font-size: 15px; color: #657786">@idph bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://app.wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-model-to-generate-tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@idph's tweets](https://twitter.com/idph). <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>3199</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>686</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>39</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>2474</td> </tr> </tbody> </table> [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/awgsk010/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @idph's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/dkm56a09) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/dkm56a09/artifacts) is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/idph'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) <section class='prose'> For more details, visit the project repository. </section> [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://github.com/borisdayma/huggingtweets/blob/master/img/logo.png?raw=true", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/idph
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
<link rel="stylesheet" href="URL <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('URL </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">IDPH AI Bot </div> <div style="font-size: 15px; color: #657786">@idph bot</div> </div> I was made with huggingtweets. Create your own bot based on your favorite user with the demo! ## How does it work? The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. ## Training data The model was trained on @idph's tweets. <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>3199</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>686</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>39</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>2474</td> </tr> </tbody> </table> Explore the data, which is tracked with W&B artifacts at every step of the pipeline. ## Training procedure The model is based on a pre-trained GPT-2 which is fine-tuned on @idph's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/idph'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> ![Follow](URL <section class='prose'> For more details, visit the project repository. </section> ![GitHub stars](URL
[ "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @idph's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>3199</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>686</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>39</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>2474</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @idph's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/idph'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @idph's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>3199</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>686</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>39</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>2474</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @idph's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/idph'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ 57, 34, 428, 74, 9, 166, 48, 58 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report." ]
[ -0.04084593802690506, 0.035596683621406555, -0.0024457171093672514, 0.04662978649139404, 0.10991521924734116, 0.022836215794086456, 0.12812861800193787, 0.0424627922475338, -0.03746044635772705, -0.03597303107380867, 0.22758877277374268, 0.1009177565574646, 0.03089720755815506, 0.17962171137332916, 0.010350672528147697, -0.2703946828842163, 0.015237200073897839, 0.0647135004401207, -0.07720091193914413, 0.15752871334552765, 0.05562684312462807, -0.049801189452409744, 0.08214939385652542, 0.032038331031799316, -0.165513277053833, -0.004831716418266296, -0.02072383277118206, -0.04504403471946716, 0.09232694655656815, 0.06956911832094193, 0.07011176645755768, 0.034282486885786057, 0.017851393669843674, -0.0714372918009758, 0.06354191154241562, 0.014452377334237099, -0.02349161170423031, 0.13615116477012634, 0.028668763116002083, -0.0002947957837022841, 0.1798527091741562, 0.11815319955348969, 0.016722125932574272, 0.016196802258491516, -0.1166125237941742, -0.0606788769364357, 0.012365915812551975, 0.04470464214682579, 0.10005760192871094, 0.058856748044490814, 0.01943058706820011, 0.13215520977973938, -0.1164829432964325, 0.08512931317090988, 0.1828341782093048, -0.24191047251224518, -0.006823094096034765, 0.061043880879879, 0.08518847078084946, 0.02852868288755417, -0.0027500083670020103, 0.050437480211257935, 0.06484624743461609, 0.021347152069211006, 0.03636380657553673, -0.0638979896903038, 0.05009674280881882, 0.011186900548636913, -0.10215270519256592, -0.07660897821187973, 0.2294245809316635, -0.0602995827794075, 0.004886541981250048, -0.028186868876218796, -0.08490151911973953, -0.06026294082403183, -0.012795685790479183, -0.05738116800785065, -0.01700775697827339, 0.034475523978471756, 0.0214629378169775, -0.10922146588563919, -0.07046429812908173, -0.1146778091788292, -0.09578189998865128, 0.17879855632781982, -0.02900231070816517, 0.08940442651510239, -0.2603394091129303, 0.2254239320755005, 0.07019765675067902, -0.11909467726945877, 0.04757627099752426, -0.11814092099666595, 0.08530338853597641, 0.02207805961370468, 0.041434839367866516, 0.07761925458908081, 0.04161522537469864, 0.11940909177064896, 0.03257475048303604, -0.00314142694696784, 0.05456724017858505, 0.07224375009536743, 0.0941813513636589, 0.1230122447013855, -0.07287998497486115, -0.07873915135860443, 0.08034131675958633, -0.04709449037909508, -0.11787727475166321, -0.06861002743244171, -0.1452382206916809, -0.004202034790068865, -0.0335184708237648, 0.07922724634408951, 0.05637102574110031, 0.09526676684617996, -0.01433930266648531, -0.05777551606297493, 0.04157217592000961, -0.06985066086053848, 0.019995175302028656, -0.011708668433129787, -0.060763102024793625, 0.13121068477630615, 0.04688004031777382, -0.014275136403739452, -0.08673419058322906, 0.07951672375202179, -0.1204570084810257, -0.07978847622871399, -0.08239417523145676, -0.05098734796047211, -0.007686138618737459, -0.11281027644872665, 0.049203939735889435, -0.11458899080753326, -0.22705501317977905, -0.01313747651875019, 0.04550096020102501, -0.016462473198771477, -0.03707117214798927, -0.040630146861076355, -0.009473399259150028, 0.04880702868103981, -0.042894408106803894, 0.039052072912454605, -0.05325083062052727, 0.050018906593322754, -0.09618895500898361, 0.051321301609277725, -0.10470817238092422, 0.041251372545957565, -0.09671807289123535, 0.07595963031053543, 0.0017866486450657248, 0.0454767569899559, 0.010063555091619492, 0.08985432982444763, -0.03214199095964432, -0.044836416840553284, -0.07869677990674973, 0.026561295613646507, 0.02284199558198452, 0.20134314894676208, -0.10196486860513687, -0.0819794163107872, 0.12614667415618896, -0.07252102345228195, -0.1288122832775116, 0.0409054271876812, -0.02831157296895981, 0.17958028614521027, 0.07370224595069885, 0.16096454858779907, 0.12039237469434738, -0.03798284754157066, 0.1263856589794159, 0.14821170270442963, -0.1269366294145584, -0.004153167363256216, 0.039416827261447906, 0.014042570255696774, -0.20559121668338776, 0.04052022844552994, -0.01946125738322735, 0.06584736704826355, -0.10201486945152283, -0.00946728140115738, 0.0031527038663625717, -0.02320384420454502, 0.0023026331327855587, -0.0472555048763752, 0.061078161001205444, 0.038737643510103226, -0.022763127461075783, 0.029682613909244537, 0.06635552644729614, -0.026160234585404396, -0.00823320634663105, -0.04484035447239876, 0.10009831935167313, -0.07260703295469284, 0.06797321885824203, -0.13160665333271027, -0.003086181590333581, -0.012450510635972023, 0.0972909927368164, 0.03811546042561531, 0.10621625185012817, 0.05470104143023491, 0.03126294165849686, 0.07701993733644485, -0.02846951223909855, 0.0746634304523468, 0.01002051867544651, -0.0850096121430397, -0.1272277683019638, 0.015217535197734833, -0.10649837553501129, -0.004191380459815264, -0.08523700386285782, -0.0015737697249278426, -0.12802091240882874, 0.05826076865196228, -0.016465239226818085, 0.0539434514939785, -0.055182818323373795, -0.04337453469634056, -0.044662054628133774, -0.022007398307323456, 0.0482511967420578, -0.033139705657958984, -0.06687536835670471, 0.16832175850868225, -0.15395553410053253, 0.2592274248600006, 0.1313537061214447, -0.0889907032251358, 0.002020547864958644, -0.07812081277370453, -0.04194976016879082, -0.012868959456682205, 0.07527336478233337, -0.03700125962495804, 0.15495356917381287, -0.03386903926730156, 0.17382068932056427, -0.099679134786129, -0.0334031768143177, 0.02144831046462059, -0.10981054604053497, 0.057656705379486084, 0.08051177859306335, 0.04427298903465271, -0.159133642911911, 0.08837400376796722, 0.19756358861923218, 0.05472150072455406, 0.20321963727474213, -0.006869805511087179, -0.06112205237150192, -0.05358194187283516, -0.0808696523308754, -0.052568696439266205, 0.056259434670209885, -0.09903126955032349, -0.004000484477728605, 0.06423190236091614, 0.08783505111932755, 0.11237549781799316, -0.10904275625944138, -0.046180129051208496, 0.05125856027007103, -0.004819708876311779, -0.051060013473033905, 0.07006146013736725, -0.0659489631652832, 0.13217470049858093, 0.014598124660551548, -0.07049204409122467, 0.0036125897895544767, -0.004913401324301958, -0.11891388893127441, 0.20653130114078522, -0.08047540485858917, -0.27306002378463745, -0.16792123019695282, -0.16288253664970398, 0.07165426760911942, 0.038431257009506226, 0.033738572150468826, -0.08776884526014328, -0.020982403308153152, 0.004409478977322578, 0.11553267389535904, -0.09698133170604706, 0.013121976517140865, 0.008159824647009373, -0.018650712445378304, -0.07579360157251358, -0.09033482521772385, -0.0241270512342453, -0.02461584471166134, 0.020020704716444016, 0.03998296707868576, -0.11154978722333908, 0.06758414953947067, 0.2167699933052063, -0.015538511797785759, 0.06870997697114944, 0.00025148785789497197, 0.26176807284355164, -0.08426473289728165, 0.040830448269844055, 0.11926601082086563, -0.08760137856006622, 0.05199241638183594, 0.07132956385612488, 0.03210015222430229, -0.014074578881263733, 0.016441889107227325, -0.11233895272016525, -0.12864868342876434, -0.1923626959323883, -0.06961654871702194, -0.028241310268640518, 0.13464264571666718, 0.031150488182902336, 0.04321796074509621, 0.10346641391515732, 0.07471037656068802, 0.06701335310935974, 0.03259968012571335, -0.0005120337591506541, 0.0647427961230278, 0.024594781920313835, -0.05812343955039978, 0.054217349737882614, -0.04845457896590233, -0.0797470211982727, 0.08279551565647125, -0.011098933406174183, 0.0927528515458107, 0.06928195804357529, 0.02340286411345005, 0.018686039373278618, 0.04218229651451111, 0.15593960881233215, 0.22442668676376343, -0.012412761338055134, -0.041085485368967056, -0.05078154057264328, -0.040494389832019806, -0.01600850187242031, 0.015044075436890125, -0.05785144492983818, -0.033252447843551636, -0.0728597640991211, -0.015066487714648247, 0.011195010505616665, 0.015441779047250748, 0.07578693330287933, -0.22024130821228027, -0.038240667432546616, 0.042616840451955795, -0.013794191181659698, -0.10639895498752594, 0.05872863903641701, 0.016779562458395958, -0.17391349375247955, -0.07854076474905014, -0.016605399549007416, 0.1603294163942337, -0.030760308727622032, 0.0619782954454422, 0.005449770484119654, 0.02271227352321148, -0.013140208087861538, 0.11191333085298538, -0.27346712350845337, 0.1954270750284195, 0.001131516881287098, -0.04876048117876053, -0.016439033672213554, -0.04243995249271393, 0.0009058643481694162, 0.14556926488876343, 0.09718295931816101, 0.0028763783629983664, 0.0669604167342186, -0.07678256928920746, -0.11943262070417404, 0.05284353718161583, 0.08068333566188812, -0.07738065719604492, 0.029960619285702705, -0.029798466712236404, 0.027152907103300095, -0.007555682212114334, -0.030231619253754616, 0.002119861776009202, -0.11661309748888016, 0.02936525270342827, -0.08075195550918579, 0.06012337654829025, 0.02433968149125576, -0.02529163844883442, -0.012048180215060711, 0.1316436529159546, -0.013300766237080097, -0.08264251798391342, -0.08976204693317413, -0.02328740619122982, 0.09523095935583115, -0.05599937587976456, 0.03358715400099754, -0.08175740391016006, -0.04073614999651909, 0.005860272329300642, -0.16970814764499664, 0.06983034312725067, -0.10846570879220963, -0.09971687942743301, -0.050264790654182434, 0.15346404910087585, 0.013677009381353855, 0.025709833949804306, 0.03220117464661598, -0.04211581498384476, -0.18150363862514496, -0.15989434719085693, -0.007562890648841858, 0.0717545747756958, -0.04433317109942436, 0.03638565540313721, 0.007171243894845247, 0.10013602674007416, 0.004198792390525341, 0.07230839878320694, 0.2026015669107437, 0.16423118114471436, -0.08760133385658264, 0.17723721265792847, 0.16266676783561707, -0.12243213504552841, -0.2722402811050415, -0.09522651135921478, -0.05925937369465828, 0.03468820080161095, 0.02297091670334339, -0.13072867691516876, 0.06184706464409828, -0.011241482570767403, -0.004976592492312193, 0.13391432166099548, -0.2790721356868744, -0.07025358080863953, 0.13864430785179138, -0.012145180255174637, 0.2560276985168457, -0.042459286749362946, -0.08155408501625061, -0.060940731316804886, -0.2339130938053131, 0.1595010906457901, -0.12908293306827545, 0.030256805941462517, -0.06380902975797653, 0.1317017376422882, 0.04475972056388855, -0.051817599684000015, 0.13714583218097687, -0.0770399421453476, 0.03692200407385826, -0.1231972947716713, -0.01437266543507576, 0.05212629213929176, -0.014681367203593254, 0.10554680228233337, -0.053141020238399506, 0.10400939732789993, -0.12106935679912567, -0.052672889083623886, -0.054288461804389954, 0.017598338425159454, -0.023758167400956154, -0.05668776109814644, -0.039483629167079926, -0.05230721831321716, 0.00942184031009674, -0.024894973263144493, -0.008981208316981792, -0.02189256064593792, 0.08200293034315109, 0.10853444039821625, 0.1416669338941574, -0.04508063197135925, -0.02666328102350235, -0.029412275180220604, -0.043095141649246216, 0.07755832374095917, -0.1675589680671692, -0.020979177206754684, 0.15767353773117065, 0.008264025673270226, 0.08081416040658951, 0.07994852215051651, -0.043529048562049866, -0.04116993397474289, 0.09435915946960449, -0.23738352954387665, -0.032961416989564896, -0.07289689034223557, -0.032304681837558746, 0.05143286660313606, 0.06389017403125763, 0.11233682930469513, -0.055076416581869125, -0.015500548295676708, 0.038369257003068924, -0.013473432511091232, -0.10457789897918701, 0.12659704685211182, 0.07594829052686691, 0.04931824654340744, -0.13000807166099548, 0.03979043290019035, -0.02080575004220009, -0.024042857810854912, -0.009190280921757221, 0.09610513597726822, -0.13868926465511322, -0.061987441033124924, 0.01100219041109085, 0.1624082624912262, -0.08940329402685165, -0.054934311658144, -0.00678250240162015, -0.07782098650932312, 0.06215988099575043, 0.06269455701112747, 0.039047662168741226, 0.10006190836429596, -0.08492296934127808, -0.004345493856817484, -0.04427671059966087, 0.02742549031972885, 0.04004936292767525, -0.01839151792228222, -0.11644710600376129, 0.050648268312215805, 0.01261399406939745, 0.21786263585090637, -0.12195943295955658, -0.07748695462942123, -0.13975368440151215, 0.03579137846827507, -0.1441981941461563, -0.02782432734966278, -0.09455464035272598, -0.0542730838060379, -0.024786408990621567, -0.02354593575000763, -0.05044161155819893, -0.03595460206270218, -0.06568260490894318, 0.04963921010494232, -0.01889806240797043, -0.04201965406537056, -0.018809955567121506, 0.04780932888388634, 0.10624072700738907, -0.0022816911805421114, 0.11582330614328384, 0.10476028919219971, -0.06149300932884216, 0.06964143365621567, -0.08975338935852051, 0.049342647194862366, 0.010800108313560486, -0.03639211133122444, 0.07890737056732178, 0.033158838748931885, 0.011678727343678474, -0.02014644630253315, -0.05248590186238289, 0.015699470415711403, 0.019494805485010147, -0.09001129865646362, 0.04338252544403076, 0.03427375108003616, -0.07128193974494934, -0.06945458799600601, -0.02831537090241909, -0.04915383830666542, 0.10966338962316513, 0.09227382391691208, 0.01580313965678215, 0.11524862796068192, -0.09982031583786011, -0.0043287696316838264, 0.0288130734115839, -0.08074736595153809, -0.01706261746585369, -0.10044533759355545, -0.01304725930094719, -0.02274717018008232, 0.2554529011249542, 0.12089171260595322, -0.025309232994914055, -0.03230812028050423, 0.07114472985267639, 0.08105676621198654, -0.0211230106651783, 0.14824873208999634, 0.03444083034992218, -0.0007331980159506202, -0.1400776505470276, 0.10673409700393677, -0.060156434774398804, -0.010151425376534462, 0.09550673514604568, -0.08319920301437378, 0.048856139183044434, 0.07468824833631516, -0.01950058713555336, 0.05372466519474983, -0.11716536432504654, -0.2690386474132538, 0.023945249617099762, 0.027653370052576065, -0.0441947840154171, 0.07253700494766235, 0.145015150308609, 0.00042942073196172714, 0.05244648456573486, 0.061493102461099625, -0.05709811672568321, -0.17804701626300812, -0.19115881621837616, -0.0384756401181221, -0.11082857847213745, -0.023826930671930313, -0.10639674216508865, 0.04148538038134575, -0.02072913944721222, 0.05925795063376427, -0.09639845043420792, 0.12447383254766464, 0.06843417137861252, -0.11577396094799042, 0.05810433253645897, -0.008805959485471249, 0.048459235578775406, -0.07387776672840118, 0.08210063725709915, -0.10721065104007721, -0.026499031111598015, -0.016933415085077286, 0.03711435943841934, -0.05858420953154564, 0.0011270071845501661, -0.10357651859521866, -0.06808403134346008, -0.056935109198093414, 0.09072309732437134, -0.024477418512105942, 0.03998230770230293, -0.014557241462171078, -0.061277762055397034, -0.025446701794862747, 0.2273169606924057, -0.018587565049529076, -0.043939489871263504, -0.0661960318684578, 0.2851298749446869, -0.06544138491153717, 0.07253559678792953, -0.032977886497974396, -0.001274158013984561, -0.07127615064382553, 0.2931469976902008, 0.36314713954925537, -0.14264726638793945, 0.011796033009886742, -0.018389053642749786, 0.03556118905544281, 0.07535336911678314, 0.18024654686450958, 0.07291083037853241, 0.3107033371925354, -0.04080776497721672, -0.01225926261395216, -0.10546047985553741, -0.03835856914520264, 0.014304363168776035, 0.02947218343615532, 0.08378855139017105, -0.05586446449160576, -0.06808875501155853, 0.1039084792137146, -0.26703301072120667, -0.02056516334414482, -0.16380304098129272, -0.061613935977220535, -0.04166705906391144, 0.0007227687747217715, 0.07237391918897629, 0.028740311041474342, 0.05115301162004471, -0.039005450904369354, -0.047156207263469696, 0.057444483041763306, -0.02154913917183876, -0.12674635648727417, 0.0002557095722295344, 0.143532857298851, -0.07906237244606018, -0.0018181405030190945, 0.0032308290246874094, 0.060348983854055405, 0.044118594378232956, 0.04119637981057167, -0.10164451599121094, 0.02608482725918293, 0.01246592216193676, -0.03363148868083954, -0.028164468705654144, 0.008156497962772846, 0.07835527509450912, -0.21697945892810822, 0.0020338469184935093, -0.14078554511070251, 0.011757226660847664, -0.07641053944826126, -0.006896127946674824, -0.08222074061632156, 0.03242125362157822, 0.004625517874956131, 0.1118803396821022, 0.11125602573156357, -0.03202005848288536, -0.0006144302315078676, -0.06265610456466675, 0.06727221608161926, -0.06884542852640152, -0.02960195019841194, -0.025150567293167114, -0.09257599711418152, -0.09335606545209885, 0.09815482050180435, -0.022339481860399246, -0.1427105814218521, 0.007601875811815262, -0.09401176869869232, -0.04369132220745087, -0.021486658602952957, 0.09382037818431854, 0.11086808145046234, 0.09180203825235367, -0.007599277421832085, 0.047748953104019165, 0.03120456263422966, 0.07436691224575043, -0.12886843085289001, -0.10148585587739944 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/936385475966853122/aupJEMFs_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">dr talking lion 🤖 AI Bot </div> <div style="font-size: 15px">@ifalioncould bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://app.wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-model-to-generate-tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@ifalioncould's tweets](https://twitter.com/ifalioncould). | Data | Quantity | | --- | --- | | Tweets downloaded | 2009 | | Retweets | 128 | | Short tweets | 216 | | Tweets kept | 1665 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/e4hxlqen/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @ifalioncould's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/2vgstw4b) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/2vgstw4b/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/ifalioncould') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/ifalioncould/1616645565200/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/ifalioncould
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
dr talking lion AI Bot @ifalioncould bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @ifalioncould's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @ifalioncould's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1329448584626974720/7cCcJO2d_400x400.jpg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">stone☭ 🤖 AI Bot </div> <div style="font-size: 15px">@ifuckedgod bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-Model-to-Generate-Tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@ifuckedgod's tweets](https://twitter.com/ifuckedgod). | Data | Quantity | | --- | --- | | Tweets downloaded | 3117 | | Retweets | 537 | | Short tweets | 499 | | Tweets kept | 2081 | [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/32yc8gvh/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @ifuckedgod's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/1p7n8iap) for full transparency and reproducibility. At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/1p7n8iap/artifacts) is logged and versioned. ## How to use You can use this model directly with a pipeline for text generation: ```python from transformers import pipeline generator = pipeline('text-generation', model='huggingtweets/ifuckedgod') generator("My dream is", num_return_sequences=5) ``` ## Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets)
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/ifuckedgod/1616795037889/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/ifuckedgod
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
stone AI Bot @ifuckedgod bot I was made with huggingtweets. Create your own bot based on your favorite user with the demo! How does it work? ----------------- The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. Training data ------------- The model was trained on @ifuckedgod's tweets. Explore the data, which is tracked with W&B artifacts at every step of the pipeline. Training procedure ------------------ The model is based on a pre-trained GPT-2 which is fine-tuned on @ifuckedgod's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. How to use ---------- You can use this model directly with a pipeline for text generation: Limitations and bias -------------------- The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. About ----- *Built by Boris Dayma* ![Follow](URL For more details, visit the project repository. ![GitHub stars](URL
[]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 57 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n" ]
[ 0.004547144751995802, -0.006708405911922455, -0.007013476919382811, 0.01947171241044998, 0.15818242728710175, 0.03448796644806862, 0.08709780126810074, 0.15389476716518402, -0.019877297803759575, -0.022431448101997375, 0.18047170341014862, 0.173692986369133, -0.012988686561584473, 0.09047263860702515, -0.05271327868103981, -0.2622397541999817, 0.03682216629385948, 0.05513067543506622, -0.007422737777233124, 0.14252057671546936, 0.07580838352441788, -0.023790201172232628, 0.11380083113908768, -0.02966974675655365, -0.202972412109375, 0.03197307139635086, 0.0615268237888813, -0.09518525749444962, 0.11083168536424637, 0.04628797993063927, 0.08698221296072006, 0.022143812850117683, -0.07331052422523499, -0.120787613093853, 0.04532235115766525, 0.045263588428497314, -0.06358368694782257, 0.06480421870946884, 0.08820623904466629, -0.1065920814871788, 0.1416475921869278, 0.07373794168233871, -0.01588049717247486, 0.07824484258890152, -0.17789237201213837, -0.03725104406476021, -0.036331940442323685, 0.007741300854831934, 0.07058489322662354, 0.0750737413764, -0.019116664305329323, 0.1746976524591446, -0.06598041951656342, 0.09777773916721344, 0.17528840899467468, -0.2887236773967743, -0.018040433526039124, 0.0492081381380558, 0.0887371376156807, 0.04900359362363815, -0.024227341637015343, 0.08339477330446243, 0.06365471333265305, 0.01686069741845131, 0.014271941967308521, -0.06960906833410263, -0.09346919506788254, 0.03645368665456772, -0.06932124495506287, -0.05699722096323967, 0.22001419961452484, -0.0334535576403141, 0.04674676060676575, -0.03953840583562851, -0.09316058456897736, -0.028927378356456757, -0.027232296764850616, -0.00907184462994337, -0.05413005128502846, 0.08754174411296844, -0.015151693485677242, -0.06331931799650192, -0.1435878872871399, -0.012912428006529808, -0.15805892646312714, 0.13816505670547485, 0.004333257209509611, 0.04586424678564072, -0.22094038128852844, 0.1012546569108963, 0.022817784920334816, -0.08995530754327774, 0.04930093511939049, -0.09425957500934601, 0.0717538446187973, 0.0007676240638829768, -0.04885277524590492, -0.02944779396057129, 0.08848895877599716, 0.14690880477428436, -0.02718975953757763, 0.005980455316603184, -0.01338018849492073, 0.0733228251338005, 0.059399042278528214, 0.028748195618391037, -0.006081049330532551, -0.052236080169677734, 0.05618719011545181, -0.1417204737663269, -0.010511515662074089, -0.07227712869644165, -0.10605388879776001, -0.04232237488031387, 0.03443120792508125, 0.060671232640743256, 0.042230576276779175, 0.11220116913318634, -0.04771716892719269, -0.01857093721628189, 0.05281376466155052, -0.03979083523154259, -0.008994937874376774, -0.01990325190126896, 0.018122754991054535, 0.13074275851249695, -0.019943278282880783, 0.03407962992787361, -0.10256942361593246, 0.05431444197893143, -0.10281401127576828, -0.01971535198390484, -0.014149561524391174, -0.04367954283952713, 0.031883664429187775, -0.12165860831737518, 0.016123656183481216, -0.16833168268203735, -0.14714312553405762, 0.002859292319044471, -0.016588665544986725, -0.017911825329065323, -0.07954888790845871, -0.04400517791509628, -0.02466505579650402, 0.06924423575401306, -0.04276731237769127, -0.00935916043817997, -0.05846982076764107, 0.11090090870857239, -0.05349889397621155, 0.07203050702810287, -0.1194647029042244, 0.0557217076420784, -0.14930842816829681, -0.013004516251385212, -0.04842504858970642, 0.07119924575090408, 0.015398351475596428, 0.1813964694738388, -0.006925920024514198, -0.003623353084549308, -0.09382472932338715, 0.06455672532320023, -0.02733452245593071, 0.24096953868865967, -0.0756828561425209, -0.14226967096328735, 0.21630549430847168, -0.06334739923477173, -0.14993034303188324, 0.1314547061920166, 0.01843975856900215, 0.08251222223043442, 0.10434340685606003, 0.19023460149765015, 0.01808990351855755, -0.007808534894138575, 0.054424818605184555, 0.07603957504034042, -0.1683882623910904, -0.033340878784656525, 0.0012923459289595485, -0.00014291972911451012, -0.1366809904575348, 0.04632483050227165, 0.1230006217956543, 0.09730340540409088, -0.07249721139669418, -0.018487868830561638, -0.030607668682932854, 0.0016078021144494414, 0.04144361615180969, -0.0005212334799580276, 0.09951234608888626, -0.1033509373664856, -0.04366454482078552, -0.06751791387796402, -0.002970147645100951, 0.011176802217960358, 0.03924661502242088, -0.04455869272351265, 0.09700342267751694, -0.007412149105221033, 0.0545678474009037, -0.13708296418190002, -0.07981666922569275, -0.016090448945760727, 0.1597585678100586, 0.040224816650152206, 0.04663374274969101, 0.0566885769367218, -0.05624469742178917, -0.015493324026465416, -0.010199432261288166, 0.16243304312229156, -0.04404180869460106, -0.07694169133901596, -0.07860849797725677, 0.10474636405706406, -0.06389671564102173, 0.026263169944286346, -0.051667314022779465, 0.024654213339090347, 0.04686986654996872, 0.1110762283205986, 0.004046999383717775, 0.026442723348736763, -0.012835992500185966, -0.007690808270126581, -0.07657550275325775, -0.01617686077952385, 0.1077079176902771, -0.0017721779877319932, -0.06809886544942856, 0.2437063455581665, -0.16884316504001617, 0.21163912117481232, 0.20976658165454865, -0.2492678016424179, -0.02882898785173893, -0.04848965257406235, -0.04766342043876648, -0.0012878701090812683, 0.06041788309812546, -0.034700244665145874, 0.09027024358510971, -0.03288675472140312, 0.16564396023750305, -0.051203593611717224, -0.07646744698286057, 0.019007064402103424, -0.05823178589344025, -0.05114857107400894, 0.07018019258975983, 0.08213616907596588, -0.1630844622850418, 0.18756183981895447, 0.21879082918167114, 0.06839460134506226, 0.2044064849615097, 0.00858453568071127, -0.010656360536813736, 0.07200875878334045, -0.04608747735619545, -0.03843220695853233, -0.06601633131504059, -0.15238076448440552, -0.03009703755378723, 0.06625645607709885, 0.030863380059599876, 0.09900964051485062, -0.09019728004932404, -0.08104760944843292, -0.017665131017565727, 0.004776675254106522, 0.00156646769028157, 0.11991100758314133, 0.03676433861255646, 0.13820022344589233, -0.01955524832010269, 0.022415857762098312, 0.08040772378444672, 0.016582515090703964, -0.10843544453382492, 0.16101348400115967, -0.13329310715198517, -0.3788211941719055, -0.14546175301074982, -0.13134250044822693, -0.020925991237163544, 0.03777816519141197, 0.1120775043964386, -0.1329103261232376, 0.005511005409061909, -0.007893978618085384, 0.10391844809055328, -0.08707519620656967, 0.039245378226041794, -0.07586963474750519, 0.0314689576625824, -0.060405436903238297, -0.07552991807460785, -0.03722400963306427, -0.028465405106544495, -0.09132689982652664, 0.16675986349582672, -0.11130212247371674, 0.06035055220127106, 0.16001324355602264, 0.021197395399212837, 0.03523072600364685, -0.05174810439348221, 0.18330632150173187, -0.112345851957798, 0.020098978653550148, 0.15624848008155823, -0.013005592860281467, 0.08254575729370117, 0.08188403397798538, -0.013132697902619839, -0.10316278785467148, 0.05240294709801674, 0.001463406952098012, -0.10209372639656067, -0.1950312703847885, -0.10119245946407318, -0.08230090886354446, 0.15922248363494873, 0.06361804902553558, 0.058937788009643555, 0.17968137562274933, 0.07578518986701965, -0.038606274873018265, -0.00038743947516195476, -0.00239798822440207, 0.08808282762765884, 0.13635766506195068, -0.01442645862698555, 0.1225903332233429, -0.04975935071706772, -0.10913994163274765, 0.12899059057235718, 0.01750512234866619, 0.03937286511063576, 0.051435839384794235, 0.021011192351579666, -0.011281835846602917, 0.11866551637649536, 0.13484057784080505, 0.10447502881288528, -0.015693627297878265, -0.0293489471077919, -0.04774824157357216, -0.01359935849905014, -0.033305928111076355, 0.03640862926840782, 0.008061517030000687, -0.14140670001506805, -0.06158366799354553, -0.11537835001945496, 0.08758961409330368, 0.10668005049228668, 0.07567808032035828, -0.21108253300189972, -0.003950516227632761, 0.07933880388736725, -0.03630997985601425, -0.11126025766134262, 0.08416172116994858, 0.03095286712050438, -0.1277567446231842, 0.07218055427074432, -0.03519461303949356, 0.12458370625972748, -0.0032897875644266605, 0.09583556652069092, -0.03598680719733238, -0.027483470737934113, -0.013308011926710606, 0.09818253666162491, -0.3191508650779724, 0.1621316522359848, -0.017933005467057228, -0.0618131123483181, -0.06667962670326233, -0.02528184838593006, 0.015994107350707054, 0.07729468494653702, 0.10861869156360626, 0.021759910508990288, 0.01640525460243225, -0.07345785945653915, -0.042352862656116486, 0.038021303713321686, 0.12403716146945953, -0.06827268749475479, -0.012903391383588314, -0.04523605480790138, 0.00796645786613226, -0.017124788835644722, -0.008793274872004986, 0.006911922711879015, -0.14962191879749298, 0.05182485654950142, 0.014736213721334934, 0.07058768719434738, 0.0436982735991478, -0.014969068579375744, -0.09180716425180435, 0.18274778127670288, -0.015714606270194054, -0.07271543145179749, -0.12616917490959167, -0.05262751132249832, 0.030376195907592773, -0.05518756061792374, 0.021047864109277725, -0.06501689553260803, -0.0035362408962100744, -0.06755607575178146, -0.22007296979427338, 0.1278373897075653, -0.08437205106019974, -0.07192739844322205, -0.04912353679537773, 0.2010866105556488, -0.051223888993263245, 0.003238252131268382, 0.010222852230072021, 0.021994104608893394, -0.11474784463644028, -0.09469719231128693, 0.07112357765436172, -0.03247172012925148, 0.03123478777706623, 0.0022505864035338163, -0.04091062396764755, 0.016593176871538162, -0.06314414739608765, -0.011381587944924831, 0.27866554260253906, 0.23951324820518494, -0.040407944470644, 0.1904350072145462, 0.11012271791696548, -0.08163551241159439, -0.3069863021373749, -0.10166139155626297, -0.12140648066997528, -0.02996143139898777, -0.017288926988840103, -0.16865339875221252, 0.06477722525596619, 0.038930367678403854, 0.009261871688067913, 0.13778774440288544, -0.20730599761009216, -0.08823523670434952, 0.09138026833534241, -0.02557477355003357, 0.43079736828804016, -0.1257614940404892, -0.08959750831127167, -0.051866497844457626, -0.16516901552677155, 0.2173919379711151, -0.021592965349555016, 0.07857322692871094, -0.029561417177319527, 0.11770006269216537, 0.04697660356760025, -0.010707763023674488, 0.08040876686573029, -0.00884756539016962, 0.008373050950467587, -0.12410011142492294, -0.02768467366695404, 0.04874192550778389, 0.012378438375890255, 0.0013600040692836046, -0.09389680624008179, 0.020313434302806854, -0.15990203619003296, -0.018549781292676926, -0.11233476549386978, 0.07682323455810547, 0.025788001716136932, -0.06466120481491089, -0.003637736663222313, -0.04986237734556198, -0.015892893075942993, -0.01400828268378973, 0.1717434972524643, -0.04862768203020096, 0.19366511702537537, 0.03501616790890694, 0.11570870876312256, -0.1362973153591156, 0.06143493950366974, -0.06429426372051239, -0.07528600096702576, 0.07427702099084854, -0.1537967324256897, 0.05111055448651314, 0.09430045634508133, -0.030276626348495483, 0.05380253866314888, 0.08795086294412613, -0.003969982732087374, 0.004800081253051758, 0.15867236256599426, -0.2786487936973572, 0.01320126373320818, -0.07396841049194336, -0.06665283441543579, 0.10506758838891983, 0.06261139363050461, 0.17162823677062988, 0.011681869626045227, -0.056615445762872696, 0.01595049723982811, 0.02499506063759327, -0.04915530979633331, 0.04529924690723419, 0.008104361593723297, -0.010991688817739487, -0.13640300929546356, 0.08699746429920197, 0.0042801909148693085, -0.1531187742948532, 0.024680746719241142, 0.2155698835849762, -0.1260155886411667, -0.10237220674753189, -0.03444112092256546, 0.08444061875343323, -0.11519137024879456, 0.01753072999417782, -0.030764780938625336, -0.09109894186258316, 0.07448896765708923, 0.15248911082744598, 0.049206193536520004, 0.11775100976228714, -0.015379221178591251, -0.011753370985388756, -0.05147303268313408, -0.0317845419049263, 0.025745956227183342, 0.017857374623417854, -0.08257177472114563, 0.06648801267147064, -0.022109810262918472, 0.14559012651443481, -0.09791336953639984, -0.06602771580219269, -0.1468091756105423, -0.009785634465515614, -0.0695481076836586, -0.09207163751125336, -0.08133620768785477, -0.062133077532052994, 0.0010387726360931993, -0.03962359577417374, -0.04795864596962929, -0.0791037380695343, -0.10289866477251053, 0.009435068815946579, -0.02305566892027855, 0.03256045654416084, -0.06115729361772537, 0.007872066460549831, 0.12092912197113037, -0.028174830600619316, 0.16686207056045532, 0.1458095908164978, -0.09536580741405487, 0.10568815469741821, -0.16346460580825806, -0.08964221179485321, 0.0939340740442276, -0.01729099079966545, 0.027899714186787605, 0.11666940152645111, 0.014932696707546711, 0.04195788502693176, 0.035977672785520554, 0.06045130267739296, 0.03587699308991432, -0.11899011582136154, 0.07665140181779861, 0.009481414221227169, -0.1612047255039215, -0.06303887814283371, -0.08555969595909119, 0.030386725440621376, 0.021575886756181717, 0.12225193530321121, -0.045776769518852234, 0.0887017622590065, -0.07972796261310577, 0.027257539331912994, 0.02293219044804573, -0.181223064661026, -0.047844018787145615, -0.053065262734889984, 0.032686229795217514, 0.018960151821374893, 0.1893557906150818, 0.027213018387556076, -0.03697650134563446, 0.04549255222082138, 0.1042066365480423, 0.005313898902386427, 0.004829791374504566, 0.16259528696537018, 0.09423433989286423, -0.07654286175966263, -0.12226779758930206, 0.07556461542844772, 0.019673259928822517, -0.044067107141017914, 0.10607215762138367, -0.002448870101943612, 0.020163848996162415, 0.06910120695829391, -0.014892932027578354, 0.034322552382946014, -0.044286008924245834, -0.10698256641626358, -0.023580113425850868, 0.046367425471544266, 0.00669879000633955, 0.12847968935966492, 0.177873894572258, -0.002574790036305785, 0.025011489167809486, -0.0363602340221405, -0.024931130930781364, -0.13864666223526, -0.1558164656162262, -0.06855984032154083, -0.14875617623329163, 0.012976853176951408, -0.0915176048874855, 0.04695429280400276, 0.028682325035333633, 0.06887643784284592, -0.07052405923604965, 0.04384735971689224, 0.06974220275878906, -0.12065785378217697, 0.09397104382514954, -0.028081456199288368, 0.03704333305358887, -0.006730496883392334, -0.012833851389586926, -0.10013298690319061, 0.035936567932367325, -0.01747855544090271, 0.045271266251802444, -0.04546798765659332, 0.030429324135184288, -0.1703072488307953, -0.124412901699543, -0.04034453630447388, 0.06420420855283737, -0.06510858237743378, 0.03512151539325714, 0.019115818664431572, 0.013339218683540821, 0.03305599465966225, 0.23020225763320923, -0.03704051673412323, -0.02329315058887005, -0.042310282588005066, 0.16692522168159485, -0.014016710221767426, 0.08088304847478867, -0.03037172369658947, 0.0002500463742762804, -0.08417443931102753, 0.3385351300239563, 0.3027777075767517, -0.09020252525806427, 0.019915465265512466, -0.030905582010746002, 0.03936264291405678, 0.11892254650592804, 0.13376617431640625, 0.09784641861915588, 0.2282467782497406, -0.07217609137296677, -0.03032243251800537, -0.020507147535681725, -0.011079044081270695, -0.06650827825069427, 0.0879674032330513, 0.02507801540195942, -0.05553486570715904, -0.031693898141384125, 0.0812700018286705, -0.2327648252248764, 0.10665327310562134, -0.11289316415786743, -0.1636168211698532, -0.039189815521240234, 0.0042042857967317104, 0.08908319473266602, 0.015396242961287498, 0.11228121817111969, 0.009163780137896538, -0.07585213333368301, 0.017798418179154396, 0.028085503727197647, -0.24201616644859314, -0.008133855648338795, 0.060310713946819305, -0.12939085066318512, -0.004324504639953375, -0.027167800813913345, 0.007199867628514767, 0.059822265058755875, 0.029368450865149498, -0.04319324716925621, -0.001257759635336697, -0.010450302623212337, -0.008644461631774902, -0.011618612334132195, 0.07065588980913162, 0.046958792954683304, -0.13329142332077026, 0.06869500875473022, -0.11774353682994843, 0.033477768301963806, -0.05866728723049164, -0.015255378559231758, 0.000037100471672602, 0.03460683673620224, -0.04829782620072365, 0.07058211416006088, 0.07688362896442413, -0.015606098808348179, 0.000610517687164247, -0.0802936851978302, -0.036274004727602005, -0.019796574488282204, -0.09252054989337921, -0.08371094614267349, -0.13031646609306335, -0.11573562026023865, 0.1029667928814888, -0.02224794402718544, -0.19213621318340302, 0.03111329674720764, -0.12165344506502151, 0.045619383454322815, -0.1751558482646942, 0.11076030135154724, 0.08046020567417145, 0.01831907220184803, 0.011516088619828224, -0.02576824277639389, 0.08821021765470505, 0.11728470027446747, -0.07783648371696472, -0.08528783172369003 ]
null
null
transformers
<link rel="stylesheet" href="https://unpkg.com/@tailwindcss/[email protected]/dist/typography.min.css"> <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/2538946114/xiveugt78rc97y1dasxf_400x400.jpeg')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Igor Brigadir 🤖 AI Bot </div> <div style="font-size: 15px; color: #657786">@igorbrigadir bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://app.wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-model-to-generate-tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@igorbrigadir's tweets](https://twitter.com/igorbrigadir). <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>3223</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>203</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>467</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>2553</td> </tr> </tbody> </table> [Explore the data](https://app.wandb.ai/wandb/huggingtweets/runs/3ojr6cz9/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @igorbrigadir's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://app.wandb.ai/wandb/huggingtweets/runs/1ccw9bid) for full transparency and reproducibility. At the end of training, [the final model](https://app.wandb.ai/wandb/huggingtweets/runs/1ccw9bid/artifacts) is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/igorbrigadir'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) <section class='prose'> For more details, visit the project repository. </section> [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets) <!--- random size file -->
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/igorbrigadir/1602255688129/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/igorbrigadir
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
<link rel="stylesheet" href="URL <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('URL </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Igor Brigadir AI Bot </div> <div style="font-size: 15px; color: #657786">@igorbrigadir bot</div> </div> I was made with huggingtweets. Create your own bot based on your favorite user with the demo! ## How does it work? The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. ## Training data The model was trained on @igorbrigadir's tweets. <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>3223</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>203</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>467</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>2553</td> </tr> </tbody> </table> Explore the data, which is tracked with W&B artifacts at every step of the pipeline. ## Training procedure The model is based on a pre-trained GPT-2 which is fine-tuned on @igorbrigadir's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/igorbrigadir'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> ![Follow](URL <section class='prose'> For more details, visit the project repository. </section> ![GitHub stars](URL
[ "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @igorbrigadir's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>3223</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>203</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>467</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>2553</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @igorbrigadir's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/igorbrigadir'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @igorbrigadir's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>3223</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>203</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>467</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>2553</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @igorbrigadir's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/igorbrigadir'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ 57, 34, 430, 76, 9, 168, 48, 58 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report." ]
[ -0.04084593802690506, 0.035596683621406555, -0.0024457171093672514, 0.04662978649139404, 0.10991521924734116, 0.022836215794086456, 0.12812861800193787, 0.0424627922475338, -0.03746044635772705, -0.03597303107380867, 0.22758877277374268, 0.1009177565574646, 0.03089720755815506, 0.17962171137332916, 0.010350672528147697, -0.2703946828842163, 0.015237200073897839, 0.0647135004401207, -0.07720091193914413, 0.15752871334552765, 0.05562684312462807, -0.049801189452409744, 0.08214939385652542, 0.032038331031799316, -0.165513277053833, -0.004831716418266296, -0.02072383277118206, -0.04504403471946716, 0.09232694655656815, 0.06956911832094193, 0.07011176645755768, 0.034282486885786057, 0.017851393669843674, -0.0714372918009758, 0.06354191154241562, 0.014452377334237099, -0.02349161170423031, 0.13615116477012634, 0.028668763116002083, -0.0002947957837022841, 0.1798527091741562, 0.11815319955348969, 0.016722125932574272, 0.016196802258491516, -0.1166125237941742, -0.0606788769364357, 0.012365915812551975, 0.04470464214682579, 0.10005760192871094, 0.058856748044490814, 0.01943058706820011, 0.13215520977973938, -0.1164829432964325, 0.08512931317090988, 0.1828341782093048, -0.24191047251224518, -0.006823094096034765, 0.061043880879879, 0.08518847078084946, 0.02852868288755417, -0.0027500083670020103, 0.050437480211257935, 0.06484624743461609, 0.021347152069211006, 0.03636380657553673, -0.0638979896903038, 0.05009674280881882, 0.011186900548636913, -0.10215270519256592, -0.07660897821187973, 0.2294245809316635, -0.0602995827794075, 0.004886541981250048, -0.028186868876218796, -0.08490151911973953, -0.06026294082403183, -0.012795685790479183, -0.05738116800785065, -0.01700775697827339, 0.034475523978471756, 0.0214629378169775, -0.10922146588563919, -0.07046429812908173, -0.1146778091788292, -0.09578189998865128, 0.17879855632781982, -0.02900231070816517, 0.08940442651510239, -0.2603394091129303, 0.2254239320755005, 0.07019765675067902, -0.11909467726945877, 0.04757627099752426, -0.11814092099666595, 0.08530338853597641, 0.02207805961370468, 0.041434839367866516, 0.07761925458908081, 0.04161522537469864, 0.11940909177064896, 0.03257475048303604, -0.00314142694696784, 0.05456724017858505, 0.07224375009536743, 0.0941813513636589, 0.1230122447013855, -0.07287998497486115, -0.07873915135860443, 0.08034131675958633, -0.04709449037909508, -0.11787727475166321, -0.06861002743244171, -0.1452382206916809, -0.004202034790068865, -0.0335184708237648, 0.07922724634408951, 0.05637102574110031, 0.09526676684617996, -0.01433930266648531, -0.05777551606297493, 0.04157217592000961, -0.06985066086053848, 0.019995175302028656, -0.011708668433129787, -0.060763102024793625, 0.13121068477630615, 0.04688004031777382, -0.014275136403739452, -0.08673419058322906, 0.07951672375202179, -0.1204570084810257, -0.07978847622871399, -0.08239417523145676, -0.05098734796047211, -0.007686138618737459, -0.11281027644872665, 0.049203939735889435, -0.11458899080753326, -0.22705501317977905, -0.01313747651875019, 0.04550096020102501, -0.016462473198771477, -0.03707117214798927, -0.040630146861076355, -0.009473399259150028, 0.04880702868103981, -0.042894408106803894, 0.039052072912454605, -0.05325083062052727, 0.050018906593322754, -0.09618895500898361, 0.051321301609277725, -0.10470817238092422, 0.041251372545957565, -0.09671807289123535, 0.07595963031053543, 0.0017866486450657248, 0.0454767569899559, 0.010063555091619492, 0.08985432982444763, -0.03214199095964432, -0.044836416840553284, -0.07869677990674973, 0.026561295613646507, 0.02284199558198452, 0.20134314894676208, -0.10196486860513687, -0.0819794163107872, 0.12614667415618896, -0.07252102345228195, -0.1288122832775116, 0.0409054271876812, -0.02831157296895981, 0.17958028614521027, 0.07370224595069885, 0.16096454858779907, 0.12039237469434738, -0.03798284754157066, 0.1263856589794159, 0.14821170270442963, -0.1269366294145584, -0.004153167363256216, 0.039416827261447906, 0.014042570255696774, -0.20559121668338776, 0.04052022844552994, -0.01946125738322735, 0.06584736704826355, -0.10201486945152283, -0.00946728140115738, 0.0031527038663625717, -0.02320384420454502, 0.0023026331327855587, -0.0472555048763752, 0.061078161001205444, 0.038737643510103226, -0.022763127461075783, 0.029682613909244537, 0.06635552644729614, -0.026160234585404396, -0.00823320634663105, -0.04484035447239876, 0.10009831935167313, -0.07260703295469284, 0.06797321885824203, -0.13160665333271027, -0.003086181590333581, -0.012450510635972023, 0.0972909927368164, 0.03811546042561531, 0.10621625185012817, 0.05470104143023491, 0.03126294165849686, 0.07701993733644485, -0.02846951223909855, 0.0746634304523468, 0.01002051867544651, -0.0850096121430397, -0.1272277683019638, 0.015217535197734833, -0.10649837553501129, -0.004191380459815264, -0.08523700386285782, -0.0015737697249278426, -0.12802091240882874, 0.05826076865196228, -0.016465239226818085, 0.0539434514939785, -0.055182818323373795, -0.04337453469634056, -0.044662054628133774, -0.022007398307323456, 0.0482511967420578, -0.033139705657958984, -0.06687536835670471, 0.16832175850868225, -0.15395553410053253, 0.2592274248600006, 0.1313537061214447, -0.0889907032251358, 0.002020547864958644, -0.07812081277370453, -0.04194976016879082, -0.012868959456682205, 0.07527336478233337, -0.03700125962495804, 0.15495356917381287, -0.03386903926730156, 0.17382068932056427, -0.099679134786129, -0.0334031768143177, 0.02144831046462059, -0.10981054604053497, 0.057656705379486084, 0.08051177859306335, 0.04427298903465271, -0.159133642911911, 0.08837400376796722, 0.19756358861923218, 0.05472150072455406, 0.20321963727474213, -0.006869805511087179, -0.06112205237150192, -0.05358194187283516, -0.0808696523308754, -0.052568696439266205, 0.056259434670209885, -0.09903126955032349, -0.004000484477728605, 0.06423190236091614, 0.08783505111932755, 0.11237549781799316, -0.10904275625944138, -0.046180129051208496, 0.05125856027007103, -0.004819708876311779, -0.051060013473033905, 0.07006146013736725, -0.0659489631652832, 0.13217470049858093, 0.014598124660551548, -0.07049204409122467, 0.0036125897895544767, -0.004913401324301958, -0.11891388893127441, 0.20653130114078522, -0.08047540485858917, -0.27306002378463745, -0.16792123019695282, -0.16288253664970398, 0.07165426760911942, 0.038431257009506226, 0.033738572150468826, -0.08776884526014328, -0.020982403308153152, 0.004409478977322578, 0.11553267389535904, -0.09698133170604706, 0.013121976517140865, 0.008159824647009373, -0.018650712445378304, -0.07579360157251358, -0.09033482521772385, -0.0241270512342453, -0.02461584471166134, 0.020020704716444016, 0.03998296707868576, -0.11154978722333908, 0.06758414953947067, 0.2167699933052063, -0.015538511797785759, 0.06870997697114944, 0.00025148785789497197, 0.26176807284355164, -0.08426473289728165, 0.040830448269844055, 0.11926601082086563, -0.08760137856006622, 0.05199241638183594, 0.07132956385612488, 0.03210015222430229, -0.014074578881263733, 0.016441889107227325, -0.11233895272016525, -0.12864868342876434, -0.1923626959323883, -0.06961654871702194, -0.028241310268640518, 0.13464264571666718, 0.031150488182902336, 0.04321796074509621, 0.10346641391515732, 0.07471037656068802, 0.06701335310935974, 0.03259968012571335, -0.0005120337591506541, 0.0647427961230278, 0.024594781920313835, -0.05812343955039978, 0.054217349737882614, -0.04845457896590233, -0.0797470211982727, 0.08279551565647125, -0.011098933406174183, 0.0927528515458107, 0.06928195804357529, 0.02340286411345005, 0.018686039373278618, 0.04218229651451111, 0.15593960881233215, 0.22442668676376343, -0.012412761338055134, -0.041085485368967056, -0.05078154057264328, -0.040494389832019806, -0.01600850187242031, 0.015044075436890125, -0.05785144492983818, -0.033252447843551636, -0.0728597640991211, -0.015066487714648247, 0.011195010505616665, 0.015441779047250748, 0.07578693330287933, -0.22024130821228027, -0.038240667432546616, 0.042616840451955795, -0.013794191181659698, -0.10639895498752594, 0.05872863903641701, 0.016779562458395958, -0.17391349375247955, -0.07854076474905014, -0.016605399549007416, 0.1603294163942337, -0.030760308727622032, 0.0619782954454422, 0.005449770484119654, 0.02271227352321148, -0.013140208087861538, 0.11191333085298538, -0.27346712350845337, 0.1954270750284195, 0.001131516881287098, -0.04876048117876053, -0.016439033672213554, -0.04243995249271393, 0.0009058643481694162, 0.14556926488876343, 0.09718295931816101, 0.0028763783629983664, 0.0669604167342186, -0.07678256928920746, -0.11943262070417404, 0.05284353718161583, 0.08068333566188812, -0.07738065719604492, 0.029960619285702705, -0.029798466712236404, 0.027152907103300095, -0.007555682212114334, -0.030231619253754616, 0.002119861776009202, -0.11661309748888016, 0.02936525270342827, -0.08075195550918579, 0.06012337654829025, 0.02433968149125576, -0.02529163844883442, -0.012048180215060711, 0.1316436529159546, -0.013300766237080097, -0.08264251798391342, -0.08976204693317413, -0.02328740619122982, 0.09523095935583115, -0.05599937587976456, 0.03358715400099754, -0.08175740391016006, -0.04073614999651909, 0.005860272329300642, -0.16970814764499664, 0.06983034312725067, -0.10846570879220963, -0.09971687942743301, -0.050264790654182434, 0.15346404910087585, 0.013677009381353855, 0.025709833949804306, 0.03220117464661598, -0.04211581498384476, -0.18150363862514496, -0.15989434719085693, -0.007562890648841858, 0.0717545747756958, -0.04433317109942436, 0.03638565540313721, 0.007171243894845247, 0.10013602674007416, 0.004198792390525341, 0.07230839878320694, 0.2026015669107437, 0.16423118114471436, -0.08760133385658264, 0.17723721265792847, 0.16266676783561707, -0.12243213504552841, -0.2722402811050415, -0.09522651135921478, -0.05925937369465828, 0.03468820080161095, 0.02297091670334339, -0.13072867691516876, 0.06184706464409828, -0.011241482570767403, -0.004976592492312193, 0.13391432166099548, -0.2790721356868744, -0.07025358080863953, 0.13864430785179138, -0.012145180255174637, 0.2560276985168457, -0.042459286749362946, -0.08155408501625061, -0.060940731316804886, -0.2339130938053131, 0.1595010906457901, -0.12908293306827545, 0.030256805941462517, -0.06380902975797653, 0.1317017376422882, 0.04475972056388855, -0.051817599684000015, 0.13714583218097687, -0.0770399421453476, 0.03692200407385826, -0.1231972947716713, -0.01437266543507576, 0.05212629213929176, -0.014681367203593254, 0.10554680228233337, -0.053141020238399506, 0.10400939732789993, -0.12106935679912567, -0.052672889083623886, -0.054288461804389954, 0.017598338425159454, -0.023758167400956154, -0.05668776109814644, -0.039483629167079926, -0.05230721831321716, 0.00942184031009674, -0.024894973263144493, -0.008981208316981792, -0.02189256064593792, 0.08200293034315109, 0.10853444039821625, 0.1416669338941574, -0.04508063197135925, -0.02666328102350235, -0.029412275180220604, -0.043095141649246216, 0.07755832374095917, -0.1675589680671692, -0.020979177206754684, 0.15767353773117065, 0.008264025673270226, 0.08081416040658951, 0.07994852215051651, -0.043529048562049866, -0.04116993397474289, 0.09435915946960449, -0.23738352954387665, -0.032961416989564896, -0.07289689034223557, -0.032304681837558746, 0.05143286660313606, 0.06389017403125763, 0.11233682930469513, -0.055076416581869125, -0.015500548295676708, 0.038369257003068924, -0.013473432511091232, -0.10457789897918701, 0.12659704685211182, 0.07594829052686691, 0.04931824654340744, -0.13000807166099548, 0.03979043290019035, -0.02080575004220009, -0.024042857810854912, -0.009190280921757221, 0.09610513597726822, -0.13868926465511322, -0.061987441033124924, 0.01100219041109085, 0.1624082624912262, -0.08940329402685165, -0.054934311658144, -0.00678250240162015, -0.07782098650932312, 0.06215988099575043, 0.06269455701112747, 0.039047662168741226, 0.10006190836429596, -0.08492296934127808, -0.004345493856817484, -0.04427671059966087, 0.02742549031972885, 0.04004936292767525, -0.01839151792228222, -0.11644710600376129, 0.050648268312215805, 0.01261399406939745, 0.21786263585090637, -0.12195943295955658, -0.07748695462942123, -0.13975368440151215, 0.03579137846827507, -0.1441981941461563, -0.02782432734966278, -0.09455464035272598, -0.0542730838060379, -0.024786408990621567, -0.02354593575000763, -0.05044161155819893, -0.03595460206270218, -0.06568260490894318, 0.04963921010494232, -0.01889806240797043, -0.04201965406537056, -0.018809955567121506, 0.04780932888388634, 0.10624072700738907, -0.0022816911805421114, 0.11582330614328384, 0.10476028919219971, -0.06149300932884216, 0.06964143365621567, -0.08975338935852051, 0.049342647194862366, 0.010800108313560486, -0.03639211133122444, 0.07890737056732178, 0.033158838748931885, 0.011678727343678474, -0.02014644630253315, -0.05248590186238289, 0.015699470415711403, 0.019494805485010147, -0.09001129865646362, 0.04338252544403076, 0.03427375108003616, -0.07128193974494934, -0.06945458799600601, -0.02831537090241909, -0.04915383830666542, 0.10966338962316513, 0.09227382391691208, 0.01580313965678215, 0.11524862796068192, -0.09982031583786011, -0.0043287696316838264, 0.0288130734115839, -0.08074736595153809, -0.01706261746585369, -0.10044533759355545, -0.01304725930094719, -0.02274717018008232, 0.2554529011249542, 0.12089171260595322, -0.025309232994914055, -0.03230812028050423, 0.07114472985267639, 0.08105676621198654, -0.0211230106651783, 0.14824873208999634, 0.03444083034992218, -0.0007331980159506202, -0.1400776505470276, 0.10673409700393677, -0.060156434774398804, -0.010151425376534462, 0.09550673514604568, -0.08319920301437378, 0.048856139183044434, 0.07468824833631516, -0.01950058713555336, 0.05372466519474983, -0.11716536432504654, -0.2690386474132538, 0.023945249617099762, 0.027653370052576065, -0.0441947840154171, 0.07253700494766235, 0.145015150308609, 0.00042942073196172714, 0.05244648456573486, 0.061493102461099625, -0.05709811672568321, -0.17804701626300812, -0.19115881621837616, -0.0384756401181221, -0.11082857847213745, -0.023826930671930313, -0.10639674216508865, 0.04148538038134575, -0.02072913944721222, 0.05925795063376427, -0.09639845043420792, 0.12447383254766464, 0.06843417137861252, -0.11577396094799042, 0.05810433253645897, -0.008805959485471249, 0.048459235578775406, -0.07387776672840118, 0.08210063725709915, -0.10721065104007721, -0.026499031111598015, -0.016933415085077286, 0.03711435943841934, -0.05858420953154564, 0.0011270071845501661, -0.10357651859521866, -0.06808403134346008, -0.056935109198093414, 0.09072309732437134, -0.024477418512105942, 0.03998230770230293, -0.014557241462171078, -0.061277762055397034, -0.025446701794862747, 0.2273169606924057, -0.018587565049529076, -0.043939489871263504, -0.0661960318684578, 0.2851298749446869, -0.06544138491153717, 0.07253559678792953, -0.032977886497974396, -0.001274158013984561, -0.07127615064382553, 0.2931469976902008, 0.36314713954925537, -0.14264726638793945, 0.011796033009886742, -0.018389053642749786, 0.03556118905544281, 0.07535336911678314, 0.18024654686450958, 0.07291083037853241, 0.3107033371925354, -0.04080776497721672, -0.01225926261395216, -0.10546047985553741, -0.03835856914520264, 0.014304363168776035, 0.02947218343615532, 0.08378855139017105, -0.05586446449160576, -0.06808875501155853, 0.1039084792137146, -0.26703301072120667, -0.02056516334414482, -0.16380304098129272, -0.061613935977220535, -0.04166705906391144, 0.0007227687747217715, 0.07237391918897629, 0.028740311041474342, 0.05115301162004471, -0.039005450904369354, -0.047156207263469696, 0.057444483041763306, -0.02154913917183876, -0.12674635648727417, 0.0002557095722295344, 0.143532857298851, -0.07906237244606018, -0.0018181405030190945, 0.0032308290246874094, 0.060348983854055405, 0.044118594378232956, 0.04119637981057167, -0.10164451599121094, 0.02608482725918293, 0.01246592216193676, -0.03363148868083954, -0.028164468705654144, 0.008156497962772846, 0.07835527509450912, -0.21697945892810822, 0.0020338469184935093, -0.14078554511070251, 0.011757226660847664, -0.07641053944826126, -0.006896127946674824, -0.08222074061632156, 0.03242125362157822, 0.004625517874956131, 0.1118803396821022, 0.11125602573156357, -0.03202005848288536, -0.0006144302315078676, -0.06265610456466675, 0.06727221608161926, -0.06884542852640152, -0.02960195019841194, -0.025150567293167114, -0.09257599711418152, -0.09335606545209885, 0.09815482050180435, -0.022339481860399246, -0.1427105814218521, 0.007601875811815262, -0.09401176869869232, -0.04369132220745087, -0.021486658602952957, 0.09382037818431854, 0.11086808145046234, 0.09180203825235367, -0.007599277421832085, 0.047748953104019165, 0.03120456263422966, 0.07436691224575043, -0.12886843085289001, -0.10148585587739944 ]
null
null
transformers
<link rel="stylesheet" href="https://unpkg.com/@tailwindcss/[email protected]/dist/typography.min.css"> <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/52435623/igor_400x400.JPG')"> </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Igor Carron 🤖 AI Bot </div> <div style="font-size: 15px; color: #657786">@igorcarron bot</div> </div> I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! ## How does it work? The model uses the following pipeline. ![pipeline](https://github.com/borisdayma/huggingtweets/blob/master/img/pipeline.png?raw=true) To understand how the model was developed, check the [W&B report](https://app.wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-model-to-generate-tweets--VmlldzoxMTY5MjI). ## Training data The model was trained on [@igorcarron's tweets](https://twitter.com/igorcarron). <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>3182</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>2986</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>50</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>146</td> </tr> </tbody> </table> [Explore the data](https://app.wandb.ai/wandb/huggingtweets/runs/2xrk7m5z/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. ## Training procedure The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @igorcarron's tweets. Hyperparameters and metrics are recorded in the [W&B training run](https://app.wandb.ai/wandb/huggingtweets/runs/kfaaogij) for full transparency and reproducibility. At the end of training, [the final model](https://app.wandb.ai/wandb/huggingtweets/runs/kfaaogij/artifacts) is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/igorcarron'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> [![Follow](https://img.shields.io/twitter/follow/borisdayma?style=social)](https://twitter.com/intent/follow?screen_name=borisdayma) <section class='prose'> For more details, visit the project repository. </section> [![GitHub stars](https://img.shields.io/github/stars/borisdayma/huggingtweets?style=social)](https://github.com/borisdayma/huggingtweets) <!--- random size file -->
{"language": "en", "tags": ["huggingtweets"], "thumbnail": "https://www.huggingtweets.com/igorcarron/1601975366019/predictions.png", "widget": [{"text": "My dream is"}]}
text-generation
huggingtweets/igorcarron
[ "transformers", "pytorch", "jax", "gpt2", "text-generation", "huggingtweets", "en", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
2022-03-02T23:29:05+00:00
[]
[ "en" ]
TAGS #transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
<link rel="stylesheet" href="URL <style> @media (prefers-color-scheme: dark) { .prose { color: #E2E8F0 !important; } .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } } </style> <section class='prose'> <div> <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('URL </div> <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Igor Carron AI Bot </div> <div style="font-size: 15px; color: #657786">@igorcarron bot</div> </div> I was made with huggingtweets. Create your own bot based on your favorite user with the demo! ## How does it work? The model uses the following pipeline. !pipeline To understand how the model was developed, check the W&B report. ## Training data The model was trained on @igorcarron's tweets. <table style='border-width:0'> <thead style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> <th style='border-width:0'>Data</th> <th style='border-width:0'>Quantity</th> </tr> </thead> <tbody style='border-width:0'> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Tweets downloaded</td> <td style='border-width:0'>3182</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Retweets</td> <td style='border-width:0'>2986</td> </tr> <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> <td style='border-width:0'>Short tweets</td> <td style='border-width:0'>50</td> </tr> <tr style='border-width:0'> <td style='border-width:0'>Tweets kept</td> <td style='border-width:0'>146</td> </tr> </tbody> </table> Explore the data, which is tracked with W&B artifacts at every step of the pipeline. ## Training procedure The model is based on a pre-trained GPT-2 which is fine-tuned on @igorcarron's tweets. Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility. At the end of training, the final model is logged and versioned. ## Intended uses & limitations ### How to use You can use this model directly with a pipeline for text generation: <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, model=<span style="color:#FF9800">'huggingtweets/igorcarron'</span>) generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> ### Limitations and bias The model suffers from the same limitations and bias as GPT-2. In addition, the data present in the user's tweets further affects the text generated by the model. ## About *Built by Boris Dayma* </section> ![Follow](URL <section class='prose'> For more details, visit the project repository. </section> ![GitHub stars](URL
[ "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @igorcarron's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>3182</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>2986</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>50</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>146</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @igorcarron's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/igorcarron'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ "TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n", "## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report.", "## Training data\n\nThe model was trained on @igorcarron's tweets.\n\n<table style='border-width:0'>\n<thead style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #CBD5E0'>\n<th style='border-width:0'>Data</th>\n<th style='border-width:0'>Quantity</th>\n</tr>\n</thead>\n<tbody style='border-width:0'>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Tweets downloaded</td>\n<td style='border-width:0'>3182</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Retweets</td>\n<td style='border-width:0'>2986</td>\n</tr>\n<tr style='border-width:0 0 1px 0; border-color: #E2E8F0'>\n<td style='border-width:0'>Short tweets</td>\n<td style='border-width:0'>50</td>\n</tr>\n<tr style='border-width:0'>\n<td style='border-width:0'>Tweets kept</td>\n<td style='border-width:0'>146</td>\n</tr>\n</tbody>\n</table>\n\nExplore the data, which is tracked with W&B artifacts at every step of the pipeline.", "## Training procedure\n\nThe model is based on a pre-trained GPT-2 which is fine-tuned on @igorcarron's tweets.\n\nHyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.\n\nAt the end of training, the final model is logged and versioned.", "## Intended uses & limitations", "### How to use\n\nYou can use this model directly with a pipeline for text generation:\n\n<pre><code><span style=\"color:#03A9F4\">from</span> transformers <span style=\"color:#03A9F4\">import</span> pipeline\ngenerator = pipeline(<span style=\"color:#FF9800\">'text-generation'</span>,\n model=<span style=\"color:#FF9800\">'huggingtweets/igorcarron'</span>)\ngenerator(<span style=\"color:#FF9800\">\"My dream is\"</span>, num_return_sequences=<span style=\"color:#8BC34A\">5</span>)</code></pre>", "### Limitations and bias\n\nThe model suffers from the same limitations and bias as GPT-2.\n\nIn addition, the data present in the user's tweets further affects the text generated by the model.", "## About\n\n*Built by Boris Dayma*\n\n</section>\n\n![Follow](URL\n\n<section class='prose'>\nFor more details, visit the project repository.\n</section>\n\n![GitHub stars](URL" ]
[ 57, 34, 430, 76, 9, 168, 48, 58 ]
[ "passage: TAGS\n#transformers #pytorch #jax #gpt2 #text-generation #huggingtweets #en #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n## How does it work?\n\nThe model uses the following pipeline.\n\n!pipeline\n\nTo understand how the model was developed, check the W&B report." ]
[ -0.04084593802690506, 0.035596683621406555, -0.0024457171093672514, 0.04662978649139404, 0.10991521924734116, 0.022836215794086456, 0.12812861800193787, 0.0424627922475338, -0.03746044635772705, -0.03597303107380867, 0.22758877277374268, 0.1009177565574646, 0.03089720755815506, 0.17962171137332916, 0.010350672528147697, -0.2703946828842163, 0.015237200073897839, 0.0647135004401207, -0.07720091193914413, 0.15752871334552765, 0.05562684312462807, -0.049801189452409744, 0.08214939385652542, 0.032038331031799316, -0.165513277053833, -0.004831716418266296, -0.02072383277118206, -0.04504403471946716, 0.09232694655656815, 0.06956911832094193, 0.07011176645755768, 0.034282486885786057, 0.017851393669843674, -0.0714372918009758, 0.06354191154241562, 0.014452377334237099, -0.02349161170423031, 0.13615116477012634, 0.028668763116002083, -0.0002947957837022841, 0.1798527091741562, 0.11815319955348969, 0.016722125932574272, 0.016196802258491516, -0.1166125237941742, -0.0606788769364357, 0.012365915812551975, 0.04470464214682579, 0.10005760192871094, 0.058856748044490814, 0.01943058706820011, 0.13215520977973938, -0.1164829432964325, 0.08512931317090988, 0.1828341782093048, -0.24191047251224518, -0.006823094096034765, 0.061043880879879, 0.08518847078084946, 0.02852868288755417, -0.0027500083670020103, 0.050437480211257935, 0.06484624743461609, 0.021347152069211006, 0.03636380657553673, -0.0638979896903038, 0.05009674280881882, 0.011186900548636913, -0.10215270519256592, -0.07660897821187973, 0.2294245809316635, -0.0602995827794075, 0.004886541981250048, -0.028186868876218796, -0.08490151911973953, -0.06026294082403183, -0.012795685790479183, -0.05738116800785065, -0.01700775697827339, 0.034475523978471756, 0.0214629378169775, -0.10922146588563919, -0.07046429812908173, -0.1146778091788292, -0.09578189998865128, 0.17879855632781982, -0.02900231070816517, 0.08940442651510239, -0.2603394091129303, 0.2254239320755005, 0.07019765675067902, -0.11909467726945877, 0.04757627099752426, -0.11814092099666595, 0.08530338853597641, 0.02207805961370468, 0.041434839367866516, 0.07761925458908081, 0.04161522537469864, 0.11940909177064896, 0.03257475048303604, -0.00314142694696784, 0.05456724017858505, 0.07224375009536743, 0.0941813513636589, 0.1230122447013855, -0.07287998497486115, -0.07873915135860443, 0.08034131675958633, -0.04709449037909508, -0.11787727475166321, -0.06861002743244171, -0.1452382206916809, -0.004202034790068865, -0.0335184708237648, 0.07922724634408951, 0.05637102574110031, 0.09526676684617996, -0.01433930266648531, -0.05777551606297493, 0.04157217592000961, -0.06985066086053848, 0.019995175302028656, -0.011708668433129787, -0.060763102024793625, 0.13121068477630615, 0.04688004031777382, -0.014275136403739452, -0.08673419058322906, 0.07951672375202179, -0.1204570084810257, -0.07978847622871399, -0.08239417523145676, -0.05098734796047211, -0.007686138618737459, -0.11281027644872665, 0.049203939735889435, -0.11458899080753326, -0.22705501317977905, -0.01313747651875019, 0.04550096020102501, -0.016462473198771477, -0.03707117214798927, -0.040630146861076355, -0.009473399259150028, 0.04880702868103981, -0.042894408106803894, 0.039052072912454605, -0.05325083062052727, 0.050018906593322754, -0.09618895500898361, 0.051321301609277725, -0.10470817238092422, 0.041251372545957565, -0.09671807289123535, 0.07595963031053543, 0.0017866486450657248, 0.0454767569899559, 0.010063555091619492, 0.08985432982444763, -0.03214199095964432, -0.044836416840553284, -0.07869677990674973, 0.026561295613646507, 0.02284199558198452, 0.20134314894676208, -0.10196486860513687, -0.0819794163107872, 0.12614667415618896, -0.07252102345228195, -0.1288122832775116, 0.0409054271876812, -0.02831157296895981, 0.17958028614521027, 0.07370224595069885, 0.16096454858779907, 0.12039237469434738, -0.03798284754157066, 0.1263856589794159, 0.14821170270442963, -0.1269366294145584, -0.004153167363256216, 0.039416827261447906, 0.014042570255696774, -0.20559121668338776, 0.04052022844552994, -0.01946125738322735, 0.06584736704826355, -0.10201486945152283, -0.00946728140115738, 0.0031527038663625717, -0.02320384420454502, 0.0023026331327855587, -0.0472555048763752, 0.061078161001205444, 0.038737643510103226, -0.022763127461075783, 0.029682613909244537, 0.06635552644729614, -0.026160234585404396, -0.00823320634663105, -0.04484035447239876, 0.10009831935167313, -0.07260703295469284, 0.06797321885824203, -0.13160665333271027, -0.003086181590333581, -0.012450510635972023, 0.0972909927368164, 0.03811546042561531, 0.10621625185012817, 0.05470104143023491, 0.03126294165849686, 0.07701993733644485, -0.02846951223909855, 0.0746634304523468, 0.01002051867544651, -0.0850096121430397, -0.1272277683019638, 0.015217535197734833, -0.10649837553501129, -0.004191380459815264, -0.08523700386285782, -0.0015737697249278426, -0.12802091240882874, 0.05826076865196228, -0.016465239226818085, 0.0539434514939785, -0.055182818323373795, -0.04337453469634056, -0.044662054628133774, -0.022007398307323456, 0.0482511967420578, -0.033139705657958984, -0.06687536835670471, 0.16832175850868225, -0.15395553410053253, 0.2592274248600006, 0.1313537061214447, -0.0889907032251358, 0.002020547864958644, -0.07812081277370453, -0.04194976016879082, -0.012868959456682205, 0.07527336478233337, -0.03700125962495804, 0.15495356917381287, -0.03386903926730156, 0.17382068932056427, -0.099679134786129, -0.0334031768143177, 0.02144831046462059, -0.10981054604053497, 0.057656705379486084, 0.08051177859306335, 0.04427298903465271, -0.159133642911911, 0.08837400376796722, 0.19756358861923218, 0.05472150072455406, 0.20321963727474213, -0.006869805511087179, -0.06112205237150192, -0.05358194187283516, -0.0808696523308754, -0.052568696439266205, 0.056259434670209885, -0.09903126955032349, -0.004000484477728605, 0.06423190236091614, 0.08783505111932755, 0.11237549781799316, -0.10904275625944138, -0.046180129051208496, 0.05125856027007103, -0.004819708876311779, -0.051060013473033905, 0.07006146013736725, -0.0659489631652832, 0.13217470049858093, 0.014598124660551548, -0.07049204409122467, 0.0036125897895544767, -0.004913401324301958, -0.11891388893127441, 0.20653130114078522, -0.08047540485858917, -0.27306002378463745, -0.16792123019695282, -0.16288253664970398, 0.07165426760911942, 0.038431257009506226, 0.033738572150468826, -0.08776884526014328, -0.020982403308153152, 0.004409478977322578, 0.11553267389535904, -0.09698133170604706, 0.013121976517140865, 0.008159824647009373, -0.018650712445378304, -0.07579360157251358, -0.09033482521772385, -0.0241270512342453, -0.02461584471166134, 0.020020704716444016, 0.03998296707868576, -0.11154978722333908, 0.06758414953947067, 0.2167699933052063, -0.015538511797785759, 0.06870997697114944, 0.00025148785789497197, 0.26176807284355164, -0.08426473289728165, 0.040830448269844055, 0.11926601082086563, -0.08760137856006622, 0.05199241638183594, 0.07132956385612488, 0.03210015222430229, -0.014074578881263733, 0.016441889107227325, -0.11233895272016525, -0.12864868342876434, -0.1923626959323883, -0.06961654871702194, -0.028241310268640518, 0.13464264571666718, 0.031150488182902336, 0.04321796074509621, 0.10346641391515732, 0.07471037656068802, 0.06701335310935974, 0.03259968012571335, -0.0005120337591506541, 0.0647427961230278, 0.024594781920313835, -0.05812343955039978, 0.054217349737882614, -0.04845457896590233, -0.0797470211982727, 0.08279551565647125, -0.011098933406174183, 0.0927528515458107, 0.06928195804357529, 0.02340286411345005, 0.018686039373278618, 0.04218229651451111, 0.15593960881233215, 0.22442668676376343, -0.012412761338055134, -0.041085485368967056, -0.05078154057264328, -0.040494389832019806, -0.01600850187242031, 0.015044075436890125, -0.05785144492983818, -0.033252447843551636, -0.0728597640991211, -0.015066487714648247, 0.011195010505616665, 0.015441779047250748, 0.07578693330287933, -0.22024130821228027, -0.038240667432546616, 0.042616840451955795, -0.013794191181659698, -0.10639895498752594, 0.05872863903641701, 0.016779562458395958, -0.17391349375247955, -0.07854076474905014, -0.016605399549007416, 0.1603294163942337, -0.030760308727622032, 0.0619782954454422, 0.005449770484119654, 0.02271227352321148, -0.013140208087861538, 0.11191333085298538, -0.27346712350845337, 0.1954270750284195, 0.001131516881287098, -0.04876048117876053, -0.016439033672213554, -0.04243995249271393, 0.0009058643481694162, 0.14556926488876343, 0.09718295931816101, 0.0028763783629983664, 0.0669604167342186, -0.07678256928920746, -0.11943262070417404, 0.05284353718161583, 0.08068333566188812, -0.07738065719604492, 0.029960619285702705, -0.029798466712236404, 0.027152907103300095, -0.007555682212114334, -0.030231619253754616, 0.002119861776009202, -0.11661309748888016, 0.02936525270342827, -0.08075195550918579, 0.06012337654829025, 0.02433968149125576, -0.02529163844883442, -0.012048180215060711, 0.1316436529159546, -0.013300766237080097, -0.08264251798391342, -0.08976204693317413, -0.02328740619122982, 0.09523095935583115, -0.05599937587976456, 0.03358715400099754, -0.08175740391016006, -0.04073614999651909, 0.005860272329300642, -0.16970814764499664, 0.06983034312725067, -0.10846570879220963, -0.09971687942743301, -0.050264790654182434, 0.15346404910087585, 0.013677009381353855, 0.025709833949804306, 0.03220117464661598, -0.04211581498384476, -0.18150363862514496, -0.15989434719085693, -0.007562890648841858, 0.0717545747756958, -0.04433317109942436, 0.03638565540313721, 0.007171243894845247, 0.10013602674007416, 0.004198792390525341, 0.07230839878320694, 0.2026015669107437, 0.16423118114471436, -0.08760133385658264, 0.17723721265792847, 0.16266676783561707, -0.12243213504552841, -0.2722402811050415, -0.09522651135921478, -0.05925937369465828, 0.03468820080161095, 0.02297091670334339, -0.13072867691516876, 0.06184706464409828, -0.011241482570767403, -0.004976592492312193, 0.13391432166099548, -0.2790721356868744, -0.07025358080863953, 0.13864430785179138, -0.012145180255174637, 0.2560276985168457, -0.042459286749362946, -0.08155408501625061, -0.060940731316804886, -0.2339130938053131, 0.1595010906457901, -0.12908293306827545, 0.030256805941462517, -0.06380902975797653, 0.1317017376422882, 0.04475972056388855, -0.051817599684000015, 0.13714583218097687, -0.0770399421453476, 0.03692200407385826, -0.1231972947716713, -0.01437266543507576, 0.05212629213929176, -0.014681367203593254, 0.10554680228233337, -0.053141020238399506, 0.10400939732789993, -0.12106935679912567, -0.052672889083623886, -0.054288461804389954, 0.017598338425159454, -0.023758167400956154, -0.05668776109814644, -0.039483629167079926, -0.05230721831321716, 0.00942184031009674, -0.024894973263144493, -0.008981208316981792, -0.02189256064593792, 0.08200293034315109, 0.10853444039821625, 0.1416669338941574, -0.04508063197135925, -0.02666328102350235, -0.029412275180220604, -0.043095141649246216, 0.07755832374095917, -0.1675589680671692, -0.020979177206754684, 0.15767353773117065, 0.008264025673270226, 0.08081416040658951, 0.07994852215051651, -0.043529048562049866, -0.04116993397474289, 0.09435915946960449, -0.23738352954387665, -0.032961416989564896, -0.07289689034223557, -0.032304681837558746, 0.05143286660313606, 0.06389017403125763, 0.11233682930469513, -0.055076416581869125, -0.015500548295676708, 0.038369257003068924, -0.013473432511091232, -0.10457789897918701, 0.12659704685211182, 0.07594829052686691, 0.04931824654340744, -0.13000807166099548, 0.03979043290019035, -0.02080575004220009, -0.024042857810854912, -0.009190280921757221, 0.09610513597726822, -0.13868926465511322, -0.061987441033124924, 0.01100219041109085, 0.1624082624912262, -0.08940329402685165, -0.054934311658144, -0.00678250240162015, -0.07782098650932312, 0.06215988099575043, 0.06269455701112747, 0.039047662168741226, 0.10006190836429596, -0.08492296934127808, -0.004345493856817484, -0.04427671059966087, 0.02742549031972885, 0.04004936292767525, -0.01839151792228222, -0.11644710600376129, 0.050648268312215805, 0.01261399406939745, 0.21786263585090637, -0.12195943295955658, -0.07748695462942123, -0.13975368440151215, 0.03579137846827507, -0.1441981941461563, -0.02782432734966278, -0.09455464035272598, -0.0542730838060379, -0.024786408990621567, -0.02354593575000763, -0.05044161155819893, -0.03595460206270218, -0.06568260490894318, 0.04963921010494232, -0.01889806240797043, -0.04201965406537056, -0.018809955567121506, 0.04780932888388634, 0.10624072700738907, -0.0022816911805421114, 0.11582330614328384, 0.10476028919219971, -0.06149300932884216, 0.06964143365621567, -0.08975338935852051, 0.049342647194862366, 0.010800108313560486, -0.03639211133122444, 0.07890737056732178, 0.033158838748931885, 0.011678727343678474, -0.02014644630253315, -0.05248590186238289, 0.015699470415711403, 0.019494805485010147, -0.09001129865646362, 0.04338252544403076, 0.03427375108003616, -0.07128193974494934, -0.06945458799600601, -0.02831537090241909, -0.04915383830666542, 0.10966338962316513, 0.09227382391691208, 0.01580313965678215, 0.11524862796068192, -0.09982031583786011, -0.0043287696316838264, 0.0288130734115839, -0.08074736595153809, -0.01706261746585369, -0.10044533759355545, -0.01304725930094719, -0.02274717018008232, 0.2554529011249542, 0.12089171260595322, -0.025309232994914055, -0.03230812028050423, 0.07114472985267639, 0.08105676621198654, -0.0211230106651783, 0.14824873208999634, 0.03444083034992218, -0.0007331980159506202, -0.1400776505470276, 0.10673409700393677, -0.060156434774398804, -0.010151425376534462, 0.09550673514604568, -0.08319920301437378, 0.048856139183044434, 0.07468824833631516, -0.01950058713555336, 0.05372466519474983, -0.11716536432504654, -0.2690386474132538, 0.023945249617099762, 0.027653370052576065, -0.0441947840154171, 0.07253700494766235, 0.145015150308609, 0.00042942073196172714, 0.05244648456573486, 0.061493102461099625, -0.05709811672568321, -0.17804701626300812, -0.19115881621837616, -0.0384756401181221, -0.11082857847213745, -0.023826930671930313, -0.10639674216508865, 0.04148538038134575, -0.02072913944721222, 0.05925795063376427, -0.09639845043420792, 0.12447383254766464, 0.06843417137861252, -0.11577396094799042, 0.05810433253645897, -0.008805959485471249, 0.048459235578775406, -0.07387776672840118, 0.08210063725709915, -0.10721065104007721, -0.026499031111598015, -0.016933415085077286, 0.03711435943841934, -0.05858420953154564, 0.0011270071845501661, -0.10357651859521866, -0.06808403134346008, -0.056935109198093414, 0.09072309732437134, -0.024477418512105942, 0.03998230770230293, -0.014557241462171078, -0.061277762055397034, -0.025446701794862747, 0.2273169606924057, -0.018587565049529076, -0.043939489871263504, -0.0661960318684578, 0.2851298749446869, -0.06544138491153717, 0.07253559678792953, -0.032977886497974396, -0.001274158013984561, -0.07127615064382553, 0.2931469976902008, 0.36314713954925537, -0.14264726638793945, 0.011796033009886742, -0.018389053642749786, 0.03556118905544281, 0.07535336911678314, 0.18024654686450958, 0.07291083037853241, 0.3107033371925354, -0.04080776497721672, -0.01225926261395216, -0.10546047985553741, -0.03835856914520264, 0.014304363168776035, 0.02947218343615532, 0.08378855139017105, -0.05586446449160576, -0.06808875501155853, 0.1039084792137146, -0.26703301072120667, -0.02056516334414482, -0.16380304098129272, -0.061613935977220535, -0.04166705906391144, 0.0007227687747217715, 0.07237391918897629, 0.028740311041474342, 0.05115301162004471, -0.039005450904369354, -0.047156207263469696, 0.057444483041763306, -0.02154913917183876, -0.12674635648727417, 0.0002557095722295344, 0.143532857298851, -0.07906237244606018, -0.0018181405030190945, 0.0032308290246874094, 0.060348983854055405, 0.044118594378232956, 0.04119637981057167, -0.10164451599121094, 0.02608482725918293, 0.01246592216193676, -0.03363148868083954, -0.028164468705654144, 0.008156497962772846, 0.07835527509450912, -0.21697945892810822, 0.0020338469184935093, -0.14078554511070251, 0.011757226660847664, -0.07641053944826126, -0.006896127946674824, -0.08222074061632156, 0.03242125362157822, 0.004625517874956131, 0.1118803396821022, 0.11125602573156357, -0.03202005848288536, -0.0006144302315078676, -0.06265610456466675, 0.06727221608161926, -0.06884542852640152, -0.02960195019841194, -0.025150567293167114, -0.09257599711418152, -0.09335606545209885, 0.09815482050180435, -0.022339481860399246, -0.1427105814218521, 0.007601875811815262, -0.09401176869869232, -0.04369132220745087, -0.021486658602952957, 0.09382037818431854, 0.11086808145046234, 0.09180203825235367, -0.007599277421832085, 0.047748953104019165, 0.03120456263422966, 0.07436691224575043, -0.12886843085289001, -0.10148585587739944 ]