Instructions to use cointegrated/SONAR_200_converted_text_decoder with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use cointegrated/SONAR_200_converted_text_decoder with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="cointegrated/SONAR_200_converted_text_decoder", trust_remote_code=True)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("cointegrated/SONAR_200_converted_text_decoder", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
Model Card for SONAR_200_converted_text_decoder
This is an unofficial port of the multilingual SONAR text decoder (https://huggingface.co/facebook/SONAR) to the transformers format from fairseq2.
Its outputs are expected be equal to those the official implementation (https://github.com/facebookresearch/SONAR), but the latter stays the source of truth.
The decoder supports the same 202 languages as NLLB-200 (see also the source model card and SONAR languages list).
The decoder is currently using custom code for inference that has been tested with transformers==0.5.0.
Encoding texts to vectors
There is another model for this: https://huggingface.co/cointegrated/SONAR_200_text_encode
Decoding embeddings to texts
Below is an example of code that decodes a matrix embs of two text embeddings into French sentences:
from transformers import AutoModelForSeq2SeqLM, AutoTokenizer
from transformers.modeling_outputs import BaseModelOutput
tokenizer = AutoTokenizer.from_pretrained("cointegrated/SONAR_200_text_encoder")
# You'll have to trust my remote code. If you don't, inspect and adapt the following file on your own:
# https://huggingface.co/cointegrated/SONAR_200_converted_text_decoder/blob/main/sonar_decoder.py
decoder = AutoModelForSeq2SeqLM.from_pretrained("cointegrated/SONAR_200_converted_text_decoder", trust_remote_code=True, device_map='cuda')
embs = ??? # generate the embeddings using the SONAR encoder
tokens = decoder.generate(
# `BaseModelOutput` and `.unsqueeze(1)` are part of the model contract, just do them always
encoder_outputs=BaseModelOutput(last_hidden_state=embs.unsqueeze(1).to(decoder.device)),
# see the official repo for the list of all 200 language codes:
# https://github.com/facebookresearch/SONAR#supported-languages-and-download-links
forced_bos_token_id=tokenizer.convert_tokens_to_ids("fra_Latn"),
# in many cases, the generated sentence is much shorter than 256 tokens
max_length=256,
# beam search is currently unsupported; only num_beams=1 is valid (although higher values are known to produce better quaity)
num_beams=1,
)
print(tokens)
# tensor([[ 2, 256057, 7645, 3231, 613, 83, 8449, 6381, 248075,
# 2, 1, 1, 1, 1, 1, 1, 1, 1,
# 1, 1, 1],
# [ 2, 256057, 1048, 33694, 176105, 10184, 591, 812, 2937,
# 33, 4096, 55, 248116, 33, 68190, 440, 901, 832,
# 60, 248075, 2]], device='cuda:0')
texts = tokenizer.decode(out, skip_special_tokens=True)
print(texts)
# ['Mon nom est SONAR.', "Je peux intégrer les phrases dans l'espace vectoriel."]
The embeddings can be generated using the code snippet from the encoder implementation or directly loaded from 2048 numbers:
import torch
embs = torch.tensor(
[[-0.005285983439534903, 0.002008047653362155, -0.0005622835597023368, 0.006343656685203314, 0.006328853312879801, -0.006190031301230192, 0.0012582960771396756, 0.0011614294489845634, -0.005841733887791634, -0.0033791421446949244, 0.00837445817887783, 0.0033003492280840874, -0.0055628130212426186, 0.0011100503616034985, 0.003932418301701546, 0.007366233505308628, -0.0023557287640869617, 0.004181101452559233, -0.005519371945410967, 0.0016589409206062555, 0.008388850837945938, 0.00904405489563942, 0.007067359983921051, 0.0021222627256065607, -0.0006232558516785502, -0.004447741433978081, -0.00595689145848155, -0.005652812775224447, -0.002746484475210309, -0.00020402959489729255, -0.001324568991549313, 0.006492759566754103, 0.004628376103937626, -0.002164181089028716, 0.0038725179620087147, -0.01218128576874733, 0.0014633119571954012, 0.00516114616766572, 0.003352568717673421, 0.00022478614118881524, -0.002524850657209754, -0.0001422798086423427, 0.00011617605923675, -0.005563134327530861, -0.001847782521508634, -0.013338507153093815, 0.016001250594854355, -0.011099912226200104, -0.00762999476864934, 0.002568367403000593, -0.011969408020377159, -0.002513358136638999, 0.0003228343848604709, -0.004656076431274414, 0.0011173550738021731, 0.01059363130480051, -0.0028014229610562325, 0.01518393587321043, -0.0058257016353309155, -0.0051294309087097645, 0.0013812956167384982, 0.0009331507608294487, -0.002431099535897374, -0.006021006032824516, 0.0013423992786556482, -0.0061014932580292225, -0.007173293270170689, 0.009860704652965069, 0.009232820942997932, -0.002750747837126255, 0.0004149973392486572, 0.0065679606050252914, 0.0027226197998970747, 0.004581427667289972, 0.003619080176576972, -0.00928938016295433, -0.006284924224019051, 0.003523065708577633, -0.0043537812307477, -0.012747067958116531, -0.005285175517201424, -0.005115998908877373, -0.003315759589895606, -0.0009848178597167134, -0.003233614144846797, -0.006277799606323242, -0.003174088429659605, 0.0012055911356583238, 0.007499224506318569, -0.0027625092770904303, 0.008199899457395077, -0.01912825182080269, 0.008804011158645153, -0.0008231925894506276, 0.0042814998887479305, -0.0033086698967963457, -0.0010349673684686422, -0.009319966658949852, -0.01764620468020439, 0.009188716299831867, 0.012396368198096752, 0.0011785957030951977, 0.008603015914559364, -0.0031167545821517706, -0.0012880254071205854, 0.0016939110355451703, -0.0030980329029262066, 0.03960387781262398, -0.0017852638848125935, -0.0011686324141919613, -0.0068687875755131245, -0.010286468081176281, -0.004428911954164505, 0.004964914638549089, -0.005244807340204716, -0.0015796908410266042, -0.0009540860773995519, -0.009804394096136093, 0.0023165622260421515, 0.010215941816568375, -0.006859762128442526, -0.0048707881942391396, -0.006579357665032148, -0.00668123085051775, -0.005046043079346418, 0.009484365582466125, -0.003587785642594099, -0.01042445283383131, -0.011295488104224205, 0.00225729588419199, -0.0010461404453963041, 0.00012677178892772645, 7.839200407033786e-06, -0.002975977724418044, -0.005091467872262001, -0.003838518401607871, 0.0037290984764695168, 0.005416369531303644, -0.002008571056649089, -7.866589294280857e-05, 0.008650765754282475, 0.007438689470291138, -0.003980906680226326, 0.00546980882063508, -0.003783097257837653, -0.0034569636918604374, 0.010656367987394333, -0.008494127541780472, 0.0005084756994619966, 0.001837821095250547, 0.0024000320117920637, -0.00020762243366334587, -0.009162532165646553, -0.005254240706562996, -0.003867740510031581, -0.005404570139944553, 0.007081334013491869, -0.007484043017029762, 0.00011889553570654243, 0.006013179197907448, 0.0036601407919079065, -0.00016092525038402528, -0.0020580117125064135, 0.012927103787660599, 0.006346816662698984, 0.008045957423746586, 0.0058191390708088875, -0.004637550096958876, 0.001026844372972846, 0.008872795850038528, -0.006630409508943558, 0.0028715748339891434, -0.006011199206113815, -0.00676325149834156, 0.009556303732097149, -0.0035889397840946913, -0.0195941012352705, -0.0028224708512425423, 0.011262879706919193, -0.002194332191720605, 0.004618093371391296, 0.01629154570400715, 0.0021749725565314293, -0.0041634635999798775, -0.0025233484338968992, 0.0009638008777983487, -0.0056476891040802, -0.014505420811474323, -0.011932567693293095, -0.004671553149819374, -7.061784708639607e-05, -0.011920977383852005, 0.009501099586486816, -9.488054638495669e-05, -0.004565094131976366, -0.004845968447625637, -0.012776854448020458, 0.0028858641162514687, 0.0004073134623467922, 0.0008494165376760066, 0.006620192900300026, -0.00031248750747181475, -0.005224043503403664, 0.010808562859892845, -0.001128999749198556, 0.010927118360996246, -0.0006888241041451693, 0.008205385878682137, -0.0006915663252584636, -3.663792085717432e-05, 0.0005190203664824367, -0.004483421333134174, 0.0039832452312111855, -0.012614252045750618, 0.010115657933056355, 0.0013727687764912844, 0.004527106881141663, 0.011757364496588707, -0.006837904453277588, 0.005913989618420601, -0.004266133066266775, -0.00015066222113091499, 0.0032122561242431402, 0.006755125243216753, -0.005532791372388601, 0.008553124032914639, 0.0005917844828218222, 0.0024955240078270435, 0.0017099229153245687, 0.00799352303147316, 0.011930294334888458, 0.0022440105676651, 0.013350347988307476, -0.00032030645525082946, -0.0023366569075733423, 0.0015400596894323826, 0.004881672561168671, -0.0065416912548244, 0.003125904593616724, 0.012908362783491611, 0.004312416072934866, -0.003071867860853672, -0.0047246478497982025, -0.012370102107524872, 0.013637153431773186, 0.001330618397332728, 0.0023380268830806017, 0.004687708802521229, -0.009373543784022331, -0.011737588793039322, -0.001618709764443338, 0.005078744143247604, -0.0004016478778794408, 0.005911841057240963, 0.003166880924254656, 0.009774615988135338, 0.00019555859034880996, 0.005627477075904608, 0.005685694981366396, -0.006898396648466587, 0.009320562705397606, -0.005798765923827887, 0.00529828853905201, 0.012736516073346138, 0.007050287444144487, -0.007563983555883169, 0.0076713357120752335, -0.014270562678575516, 0.0017131005879491568, -0.014007452875375748, -0.01742078922688961, 0.0025564078241586685, 0.0064049880020320415, 8.309828990604728e-05, 0.0004890751442871988, -0.003377503715455532, 0.010883694514632225, 0.01156653556972742, 0.004609070718288422, -0.010148121044039726, 0.007592611014842987, 0.006894662510603666, -0.003044045064598322, -0.007172905839979649, 0.015449685975909233, -0.006065646186470985, 0.004985925741493702, 0.00026361551135778427, -0.001381221693009138, -0.005747146904468536, 0.002620959421619773, 0.0017612413503229618, -0.00104028289206326, -0.003955031279474497, 0.014273582026362419, -0.003635488450527191, -0.008778483606874943, -0.005698598455637693, 0.003407841781154275, 0.009192041121423244, 0.0018812885973602533, 0.006233322899788618, 0.00014495073992293328, 0.0004448815016075969, 0.005179936997592449, -0.003994771745055914, -0.004209557548165321, -0.004148258827626705, -0.007868624292314053, -0.008848671801388264, 0.003290466032922268, 0.004514107946306467, 0.0004922926891595125, -0.01665705256164074, 0.009595382027328014, -0.005661560222506523, -0.008212583139538765, -0.013363886624574661, -0.003150639124214649, -0.0066917771473526955, 0.011262699961662292, -0.0006242879899218678, 0.0038059307262301445, 0.0005003519472666085, -0.01146235503256321, 0.0016958165215328336, 0.0008885757997632027, -0.010661737993359566, 0.006152572110295296, -0.004720922559499741, -0.0027165967039763927, -0.006346872076392174, -0.0005786848487332463, 0.01365850493311882, 0.002219300949946046, 0.000975018076132983, -0.004884760361164808, -0.0018714123871177435, -0.009309000335633755, 0.0010322419693693519, -0.003841396886855364, -0.01099495217204094, -0.010578595101833344, -0.00589675921946764, 0.005268504843115807, 0.006390965543687344, -0.007574967108666897, -0.011730488389730453, 0.003452580887824297, 0.010999534279108047, 0.001008218852803111, -0.002363999607041478, -0.009175602346658707, -0.0012075623963028193, 0.002165105426684022, 0.021142033860087395, -0.006026705726981163, 0.00019022573542315513, -0.0029456878546625376, -0.010525666177272797, 0.006573942024260759, 0.0005457426887005568, -0.006871946156024933, -0.0005941300769336522, 0.007716073654592037, 0.0038734658155590296, -0.009009946137666702, 0.004841862246394157, 0.004613361321389675, 0.0033135786652565002, -0.004726574756205082, -0.003476628800854087, -0.008453520014882088, -0.0015066206688061357, 0.01034969836473465, 0.005132531747221947, -0.01717870682477951, -0.0076727974228560925, 0.0017932270420715213, 0.00015290494775399566, -0.0001722147426335141, -0.006651997100561857, 0.0046349805779755116, -0.011008162051439285, -0.0069985645823180676, 0.00372893363237381, -0.00024437729734927416, 0.0032150903716683388, -0.002273468067869544, -1.9098477423540317e-05, -0.00465134484693408, -0.0059465984813869, 0.006263349670916796, -0.009732207283377647, -0.00557745061814785, -0.0026764459908008575, 0.007017489057034254, -0.006136279087513685, 0.00040204409742727876, 0.003967380151152611, 0.0011194379767403007, 0.0017309869872406125, 0.008768833242356777, 0.009574529714882374, 0.0022689388133585453, 0.00772652355954051, -0.011433498933911324, 0.007796207442879677, -0.0037623175885528326, -0.008783537894487381, -0.005119332578033209, 0.006183168850839138, 0.001479381462559104, 0.0013158702058717608, 0.009707033634185791, 0.0019074963638558984, 0.006917136721313, -0.005121419206261635, -0.007498676422983408, 0.002893125871196389, 0.0012888087658211589, 0.0016610430320724845, -0.0005402847891673446, -0.001349496771581471, -0.0037807300686836243, -0.0042886449955403805, -0.009618698619306087, -0.003213939955458045, -0.00028697497327812016, 0.009149229153990746, -0.003903019707649946, -0.0049645002000033855, -0.012162002734839916, 0.0083736227825284, -0.002808619989082217, 0.0001222355494974181, -0.016141222789883614, -0.0034595162142068148, 0.005975129548460245, 0.0004699158307630569, 0.009670092724263668, -0.0003279434167779982, -0.0015798121457919478, -0.01028942409902811, -0.0038871997967362404, -0.0022034416906535625, 0.0012262208620086312, -0.01082567311823368, 0.003658072790130973, 0.006198087707161903, -0.0010115646291524172, -0.007323949597775936, -0.0002916319062933326, 0.00030847638845443726, -0.006994590163230896, -0.004945958498865366, 0.011151888407766819, 0.0037378238048404455, 0.002687113592401147, 0.003470959374681115, 0.0007921241922304034, 0.0009552904521115124, 0.0007872201967984438, 0.002433951711282134, 0.0057825855910778046, 0.0024219052866101265, 0.005516170524060726, -0.0004111675370950252, -0.0018572811968624592, -0.0034322920255362988, 0.007918590679764748, -0.012688454240560532, -0.0018653211882337928, -0.01198466308414936, -0.003490147180855274, -0.0006833855295553803, -0.0011431173188611865, 0.010149557143449783, 0.004446374252438545, -0.0011738718021661043, 0.0017282516928389668, -0.0027646159287542105, -0.009236129000782967, -0.005844180006533861, -0.01281086727976799, -0.01385235320776701, -0.0006421860307455063, 0.0023955744691193104, -0.016821546480059624, 0.013412018306553364, -0.007758835796266794, 0.005271385423839092, 0.002183000324293971, 0.0012120071332901716, -0.0004105731495656073, 0.005348299164324999, -0.0035349081736057997, -3.984208160545677e-05, -0.0011524501023814082, -0.01239168830215931, 0.002145050559192896, 0.0009026750922203064, -0.009138076566159725, -0.0013726985780522227, 0.01049809716641903, -0.0048888567835092545, -0.005623712204396725, 0.0026371574494987726, -0.008340579457581043, 0.0019677325617522, -0.0019815065898001194, 0.006164250895380974, -0.00083449378143996, 0.010013742372393608, 0.008286713622510433, 0.0008745061932131648, 0.010465390048921108, -0.003210834227502346, 0.003254221985116601, -0.009848152287304401, 0.008599285036325455, -0.0057385507971048355, 0.005020419601351023, -0.002264677546918392, -0.005237792152911425, -0.0012261713854968548, -0.004009225405752659, 0.007020946126431227, 0.0031126639805734158, 0.0022939022164791822, 0.0031009481754153967, -0.0027419086545705795, -0.006057389080524445, -0.009388132952153683, -0.0042499336414039135, -0.007715897634625435, -0.009481207467615604, 0.005155530758202076, 0.005393862724304199, -0.003212043782696128, 0.0001418968749931082, -0.004513919819146395, 0.0013864898355677724, 0.0024887884501367807, 7.329705113079399e-05, 0.00651208171620965, -0.0065728770568966866, -0.00487560173496604, -0.0038435948081314564, -0.012036499567329884, 0.006605139002203941, -0.004401471000164747, 0.001992574194446206, 0.00417562760412693, 0.006644473411142826, -0.005071295890957117, -0.006573866121470928, 0.002716897986829281, -0.011960324831306934, -0.009255984798073769, 0.002246009884402156, 0.00292757130227983, -0.005605105776339769, -0.004377428442239761, 0.0003510020615067333, 0.009878277778625488, -0.0018732768949121237, -0.0020190607756376266, 0.0035338790621608496, 0.008397091180086136, -0.0026541580446064472, 0.0016224206192418933, 0.018338525667786598, -0.00016844096535351127, -0.0012407382018864155, -0.005675630643963814, 0.007173821330070496, -0.00782042182981968, 0.0035727040376514196, -0.0015523876063525677, -0.004755270667374134, 0.010644742287695408, 0.002685456071048975, 0.0017747849924489856, -0.007442541420459747, -0.00569470040500164, 0.010745135135948658, 0.006445176433771849, -0.0001535688788862899, -0.012105239555239677, -0.007968071848154068, -0.004967230837792158, -0.0016743253218010068, -0.002344588516280055, 0.010235979221761227, -0.0036666919477283955, -0.003072525141760707, 0.0007591975154355168, -0.005614354740828276, -0.004319505300372839, 0.0012113455450162292, -0.0030887643806636333, -0.005596105009317398, 0.008856948465108871, -0.0012900009751319885, 2.2542870283359662e-05, -0.00508511858060956, -0.006728066131472588, 0.003783074440434575, -0.008389421738684177, 0.00488751195371151, -0.0015615307493135333, 0.00022093061124905944, -0.0017358420882374048, 0.003595716319978237, -0.0020308042876422405, 0.0002541998983360827, 0.017173776403069496, 0.00516963517293334, 0.0014253604458644986, -0.00986366905272007, 0.006374196149408817, -0.0057886624708771706, 0.00502581475302577, -0.0008901829714886844, -0.0029086945578455925, -0.0024186898954212666, -0.0006365833105519414, 0.0017738433089107275, -0.0012587608071044087, 0.004388900939375162, -0.0011977801332250237, 0.0005228879163041711, -0.0001373585982946679, 0.0038141582626849413, 0.010269769467413425, -0.00495118647813797, 0.0003634268941823393, 0.001605698256753385, -0.005115242674946785, 0.009978065267205238, 0.000484201853396371, -0.0010357233695685863, 0.0012992810225114226, -0.004264479968696833, -0.001604975899681449, -0.005817804951220751, 0.005576952360570431, -0.002973336959257722, -0.0007186711300164461, -0.006376192905008793, -0.006987741217017174, -0.012453447096049786, 0.007686810567975044, 0.07078570872545242, -0.004872856196016073, 0.006177258212119341, 0.0031406590715050697, 0.0001517321652499959, 0.006655831355601549, -0.009260697290301323, -0.008958112448453903, -0.004017926286906004, 0.011158522218465805, -0.0019132167799398303, -0.007000711280852556, -0.0009055446134880185, -0.004844279494136572, -0.009017120115458965, -0.00952086504548788, -0.0006932057440280914, -0.007880065590143204, -0.0031703291460871696, 0.0049871886149048805, 0.005744355730712414, 0.00016120013606268913, 0.001111291814595461, -0.0039997403509914875, 0.0020590098574757576, 0.01701032556593418, -0.0029953261837363243, 0.0008428134606219828, 0.0017698784358799458, -0.003780813654884696, -0.000171686930116266, 0.007414157968014479, 0.005183822941035032, 0.0036606218200176954, 0.001582355354912579, -0.0014614468673244119, 0.0012499004369601607, -0.0002801333903335035, 0.0019059708574786782, -0.0014135808451101184, -0.013322947546839714, -0.007661787793040276, -0.0074613518081605434, -0.006117410957813263, -0.007212033029645681, -0.004867818672209978, -0.006740750279277563, 0.00392206571996212, -0.010694336146116257, 0.006026715040206909, 0.004448963329195976, -0.007479371968656778, -0.0006651445874013007, 0.0003347714664414525, -0.00044740457087755203, -0.002861302811652422, -0.0006439608405344188, 0.0010849899845197797, -0.00022034789435565472, 0.000394785514799878, -0.0003786222659982741, 0.012465053237974644, 0.015037281438708305, 0.010441997088491917, 0.000795955304056406, -0.005701103247702122, 0.006259126588702202, 0.0038033814635127783, 0.00509230699390173, -0.002644472988322377, -0.00522562675178051, -0.005364975892007351, -0.002826823852956295, -0.014088177122175694, 0.005327535327523947, -0.0016250272747129202, 0.005553551018238068, -0.0004928662092424929, 0.0006386794848367572, 0.01762218028306961, -0.0021463665179908276, -0.00130860460922122, -0.00041325794882141054, 0.007430320605635643, 0.0060892910696566105, -0.006307588890194893, 0.015165396966040134, -0.0014864371623843908, 0.0181423369795084, 0.005214532371610403, -0.0009434381499886513, 0.00500571820884943, 0.005628268234431744, 0.003099489724263549, -0.008062735199928284, 0.00465947762131691, -0.011437518522143364, 0.0064158691093325615, -0.0059323436580598354, -0.005021272227168083, -0.01026142481714487, -0.003541089128702879, -0.0025281512644141912, 0.0017353296279907227, 0.00189107412006706, 0.004605487454682589, 0.002472199033945799, 0.010300245136022568, 0.008321430534124374, 0.003318079514428973, 0.00048655219143256545, -0.0008885062416084111, 0.000750542851164937, 0.00019072022405453026, -0.0068397847935557365, 0.004798412788659334, 0.00028069817926734686, 0.0008526633610017598, -0.0017819864442571998, 0.003368115285411477, 0.0018941292073577642, 0.004106958396732807, -0.0007910355343483388, 0.0005218247533775866, -0.0044128564186394215, -0.008924219757318497, 0.011247371323406696, 0.0041405255906283855, 0.008900552056729794, 0.007069536484777927, 0.0036424659192562103, 0.010802464559674263, 0.00673158373683691, 0.0005293494905345142, -0.005564691033214331, -0.004715772345662117, -0.00878206267952919, 9.430546197108924e-05, -0.005584948696196079, -0.009252335876226425, 0.0009188239928334951, -0.007999819703400135, 0.004349447786808014, 0.0005355074536055326, 0.00036568951327353716, -0.0007451839046552777, 0.0014263865305110812, -0.007539833430200815, 0.007747275289148092, 0.001923249219544232, -0.01686159521341324, -0.004137758165597916, 0.00020857350318692625, 0.009960138238966465, 0.008365918882191181, -0.005264930427074432, 0.01535479724407196, 0.006247473880648613, -0.0003581417549867183, 0.0017116551753133535, 0.0004205564328003675, 0.014238185249269009, 0.0014260015450417995, 0.0024419203400611877, 0.003589094616472721, -0.0026575950905680656, -0.013397488743066788, 0.005784683395177126, -0.0004805982462130487, -0.003156401216983795, 0.0054850284941494465, 0.012773515656590462, -0.0030136683490127325, -0.0031722383573651314, 0.0014960190746933222, 5.2479925216175616e-05, 0.0005322063807398081, -0.014756808988749981, 0.00351281207986176, -0.004090717062354088, 0.0026822250802069902, 0.0006566839874722064, 0.004127268213778734, 0.005056065507233143, -0.004774823319166899, -0.014260849915444851, -0.00943701807409525, -0.012588072568178177, -0.0017261188477277756, 0.0042761205695569515, -0.0029464450199157, -0.014021509326994419, -0.0012698331847786903, -0.00832398608326912, 0.004598092753440142, -0.007155491970479488, 0.003526930697262287, -0.002757134148851037, -0.012328915297985077, 0.013968446291983128, -0.00857166014611721, -0.0020576375536620617, 0.002738156821578741, 0.00611578393727541, 0.012789296917617321, -0.004155679140239954, -0.015522228553891182, -0.0028520270716398954, -0.001270168460905552, 3.7370558857219294e-05, 0.0027626343071460724, -0.0005267917294986546, -0.0012438693083822727, -0.0017081605037674308, -0.007351564709097147, 0.0005807011621072888, -0.0037157817278057337, 0.009252484887838364, 0.0060411193408071995, 4.569707380142063e-05, 0.0009319971431978047, -0.016938388347625732, -0.005556299816817045, -0.003672483842819929, 0.009027424268424511, 8.692351548234001e-05, -0.002819000743329525, -0.005557759199291468, -0.003047429956495762, 0.0022376615088433027, -0.0035060574300587177, 0.007259231526404619, -0.0024249826092272997, 0.009860793128609657, 0.0014535938389599323, -0.0068729352205991745, 0.008619418367743492, 0.0014811535365879536, 0.023425402119755745, -0.0030220162589102983, 0.004889074247330427, 0.005441427696496248, -0.0012137049343436956, 0.0020305488724261522, -0.003346298122778535, -0.006682130042463541, 0.004434186965227127, 0.006860308814793825, -0.011701341718435287, 0.0014528814936056733, 0.0037769866175949574, -0.0013979662908241153, 0.001983472378924489, -0.006222219206392765, -0.008197256363928318, 0.01677713543176651, 0.00034763323492370546, 0.00667874701321125, 0.002931059105321765, 0.0017269857926294208, -0.0006226853583939373, 0.0022955420427024364, 0.0007752376841381192, -0.0007464982918463647, 0.004237492568790913, -0.006027897819876671, -0.018520046025514603, -0.0020203881431370974, -0.0023967651650309563, -0.00495545007288456, 0.003703388851135969, -0.010029671713709831, 0.0011004360858350992, 0.0075274682603776455, -0.0024278454948216677, -0.0014045198913663626, -0.0004974842304363847, -0.004134213086217642, -0.004692670423537493, 0.005485054571181536, 0.001477960729971528, 0.0030664512887597084, 0.003361470066010952, 0.001000060816295445, 0.013401586562395096, 0.0017817291663959622, -0.011573445051908493, 0.008691557683050632, -0.007542070467025042, -0.0064596254378557205, 0.0026719579473137856, 0.0035520216915756464, 0.005472295917570591, -0.005905559286475182, 0.0015946677885949612, -0.0062680933624506, 0.0034478940069675446, -0.0051599838770926, 0.0059101395308971405, -0.005579072050750256, 0.004099772311747074, -0.000868427858222276, -0.013488104566931725, 0.004511896055191755, 0.0007902061915956438, -0.011786330491304398, 0.005234314128756523, 0.01209996361285448, -0.006913370918482542, -0.006775446701794863, 0.0036539253778755665, 0.027520110830664635, 0.004927074536681175, 0.006050151772797108, -0.009522361680865288, 0.007001857738941908, 0.007516109384596348, 0.010610215365886688, -0.0009637955226935446, 0.00912920106202364, 0.010572821833193302, 0.0024580243043601513, -0.0022998256608843803, 0.000880132953170687, 0.002502769697457552, 0.0019785205367952585, 0.003837360767647624, 0.008021773770451546, -0.0015920645091682673, 0.0092683220282197, 0.0010867886012420058, 0.0014316168380901217, -0.004836550448089838, -0.01051578763872385, -0.002539481036365032, -0.0020985500887036324, 0.009552226401865482, -0.0058153667487204075, -0.008969285525381565, -0.0035068218130618334, -0.007476242259144783, 0.0004052319563925266, 0.005178476218134165, -0.0004995636409148574, -0.013632182963192463, -0.013681136071681976, 0.0008912729099392891, 0.013713725842535496, 0.002194873057305813, -0.006351089105010033, 0.004135162103921175, -0.011061633005738258, 0.00686769699677825, 0.006151522975414991, -0.002190847648307681, 0.0031985919922590256, 0.0007212833734229207, 0.003341359319165349, 0.00235906895250082, -0.00012366929149720818, -0.016553319990634918, 0.002051722491160035, 0.0005371420411393046, -0.0030661665368825197, -0.001789494534023106, -0.008599630557000637, -0.01577001065015793, 0.009372436441481113, -0.0009173194412142038, 0.0070108044892549515], [-0.00033010003971867263, -0.007055153604596853, 0.00764428311958909, 0.0018414065707474947, 0.003726519411429763, -0.0022237813100218773, 0.005128322634845972, -0.0019498614128679037, 0.00039284402737393975, -0.007372564170509577, 0.014782610349357128, 0.0003076043794862926, -0.009440142661333084, 0.005742915906012058, 0.0022492357529699802, 0.011127782054245472, 0.0006210693391039968, 0.00026120879920199513, -0.011648714542388916, 0.007039995864033699, -0.00647173635661602, 0.011489391326904297, 0.00021485269826371223, -0.01179939042776823, 0.0004891825374215841, -0.0007266702014021575, 0.0057960981503129005, 0.0005367280100472271, 0.010335023514926434, -0.011435207910835743, 0.0036622867919504642, 0.002574953017756343, 0.004920795559883118, -0.005191082134842873, 0.025413870811462402, 0.017189305275678635, 0.004414067137986422, -0.008665141649544239, 0.014935439452528954, -0.005843304563313723, -0.008806634694337845, -0.0010219666874036193, -0.007075427565723658, -0.0025144899263978004, -0.0061800191178917885, 0.007481287699192762, 0.008308838121592999, 0.013924811035394669, 0.0005637886351905763, -0.0015225982060655951, -0.0028577845077961683, 0.001871149754151702, -0.0101168192923069, 0.003312799846753478, 0.004807089921087027, 0.002653565490618348, -0.008044695481657982, 0.004036659374833107, -0.004495248664170504, -5.306396633386612e-05, -0.0017572393408045173, -0.001622843323275447, 0.005519028287380934, -0.00651557045057416, -0.004233967047184706, 0.004912286531180143, -0.00418976042419672, 0.002378548728302121, -0.009541008621454239, 0.006921125575900078, -0.00916364323347807, 0.007744233589619398, 0.01111812423914671, 0.009556565433740616, 0.006386061664670706, 0.005584408529102802, -0.005268420558422804, -0.011625225655734539, 0.008371134288609028, -0.0002826173440553248, 0.008214594796299934, 0.011207254603505135, 0.0018741366220638156, 0.003594299079850316, 0.007622888311743736, -0.0022649583406746387, -0.009279697202146053, 0.0018472060328349471, 0.004080106969922781, 0.0003273179172538221, -0.0016449954127892852, -0.0022199295926839113, -5.3498522902373224e-05, 0.004153842106461525, 0.00707782618701458, -0.007083534263074398, -0.0008696696604602039, 0.004334303084760904, 0.0036907822359353304, -0.0010947659611701965, 0.007358213420957327, 0.0001678426779108122, -0.005147869233042002, -0.0012201390927657485, 0.0030417216476053, 0.0005161987501196563, -0.0018128828378394246, 0.0309740100055933, 0.003364834701642394, 0.002933283569291234, 0.007541290950030088, 0.010077012702822685, 0.0011754949809983373, -0.0060846442356705666, 0.008929797448217869, 0.0028547083493322134, -0.007482744287699461, -0.0015476006083190441, -0.0037511426489800215, -0.012330572120845318, -0.0006463634199462831, 0.0085023557767272, -0.005093640182167292, 0.0016598273068666458, -0.0019222485134378076, 0.0036890285555273294, 0.00045163853792473674, -0.004873813129961491, -0.004085711669176817, -0.00747324014082551, 0.001591135049238801, 0.003961420152336359, 0.009442278183996677, -0.01118125207722187, -0.0003892605018336326, 0.005216971039772034, -0.01275202352553606, 0.0010927598923444748, 0.0021802091505378485, -0.01551852561533451, -0.0028575588949024677, 0.010226271115243435, -0.006998131517320871, 0.005617136601358652, 0.00422709109261632, -0.0074288551695644855, 0.0021169399842619896, 0.002125716768205166, 0.0007413087296299636, 0.014977353624999523, 0.0016236226074397564, -0.008101524785161018, -0.00414742436259985, -0.01602492667734623, -0.015157978050410748, 0.0037415737751871347, 0.012718802317976952, -0.0023536200169473886, 0.01234471146017313, -0.0030525538604706526, 0.005527769681066275, -0.0049820574931800365, 0.006149131339043379, 0.008459317497909069, -0.00161116907838732, -0.005312803201377392, -0.008191068656742573, -0.01353470329195261, -0.011923749931156635, 0.004491713363677263, -0.011760508641600609, -0.010102441534399986, 0.015458543784916401, -0.0035761729814112186, 0.002414337359368801, 0.0006007991614751518, 0.0006615663296543062, -0.0058039650321006775, 0.0030520842410624027, -0.0066664195619523525, -0.0027523706667125225, -0.0025525714736431837, -0.01402917131781578, 0.008442029356956482, -0.017478199675679207, 0.005325905978679657, -0.00738176703453064, -0.007818503305315971, 0.0031138435006141663, -0.003413856029510498, 0.012849000282585621, -0.003918536007404327, 2.9623881346196868e-05, -0.007821779698133469, 0.005430714227259159, -0.013346192426979542, 0.0004895730526186526, -0.006417653523385525, -0.007451163604855537, -0.002483435207977891, -0.015743110328912735, -0.006125173065811396, -0.0031512698624283075, 0.003657006658613682, 0.0021583843044936657, -0.003115489613264799, 0.00742885610088706, 0.002519608475267887, -0.0019300369312986732, -0.012196281924843788, 0.005285309161990881, 0.007255950942635536, 0.0011224545305594802, -0.009058311581611633, 0.012186272069811821, 0.002594730816781521, 0.00826812069863081, 0.003812682582065463, 0.0001435290469089523, 0.007335345260798931, 0.008227076381444931, 0.0035945733543485403, -0.00254334369674325, 0.004705263301730156, 0.008801030926406384, -0.0006908390787430108, -0.0015970326494425535, -0.00028789901989512146, 0.0008045125869102776, 0.007956968620419502, 0.0010192441986873746, 0.0013579174410551786, 0.005442949943244457, -0.008138843812048435, 0.0035828049294650555, 0.009894357062876225, -0.007038257550448179, -0.009247277863323689, -0.006218926981091499, 0.00258121476508677, -0.0040418910793960094, -0.0026091421023011208, -0.0033873049542307854, -0.003733208170160651, 0.0018501922022551298, -0.0035035728942602873, -0.0029044607654213905, 0.005382203031331301, -0.008285381831228733, -0.0026275168638676405, -0.014453606680035591, 0.00666929641738534, -0.00881258025765419, 0.007289862260222435, -0.0005283660138957202, -0.005959988106042147, 0.0068971565924584866, -0.012341607362031937, 0.00327154784463346, 0.006742067169398069, 0.0008211489766836166, -0.0057769776321947575, 0.0145394466817379, -0.0026349301915615797, -0.001698229694738984, -0.003265773644670844, -0.0008857662905938923, -0.0059778024442493916, 0.008146116510033607, 0.0043927445076406, -0.009089081548154354, -0.015024105086922646, 0.010405399836599827, -0.006323962472379208, -0.006214707158505917, 0.00810258463025093, -0.0013590691378340125, 0.018066061660647392, -0.012737109325826168, -0.005066952668130398, 0.0025134598836302757, -0.015979142859578133, 0.00875729788094759, -0.00442740460857749, 0.009658411145210266, 0.007083460222929716, -0.0026632200460880995, -0.0001685115712461993, 0.007502084132283926, 0.012219881638884544, 0.005376538727432489, -0.0007537329220212996, 0.0015106803039088845, -0.0034357940312474966, -0.0056521049700677395, -0.004595133941620588, 0.006024807691574097, -0.01029891986399889, -0.0023930822499096394, -0.0019109061686322093, -0.007399575784802437, -0.00754903256893158, -0.006226891186088324, 0.0018309532897546887, 0.0025541780050843954, -0.004832194186747074, 0.002071525901556015, 0.002378865610808134, 0.009628432802855968, 0.0054667191579937935, -0.014140298590064049, 0.00837487168610096, -0.002462751232087612, 0.004248290788382292, -0.007115533109754324, -0.006902651861310005, -0.008753271773457527, -0.009219024330377579, -0.00014650021330453455, -0.013556904159486294, 0.009095674380660057, -0.003242977662011981, -0.010326067917048931, 0.0009533977136015892, -0.008091973140835762, 0.006856411229819059, -0.006549214944243431, -0.004671759903430939, -0.003386249067261815, 0.002690057037398219, -0.0027745356783270836, -0.004586709197610617, 0.0006662725354544818, 0.006822677794843912, 0.005510689690709114, 0.00766353402286768, -0.002539505483582616, -0.00422213738784194, -0.006974904797971249, -0.0033222606871277094, 0.000562275992706418, 0.009343507699668407, 0.01010853610932827, -0.0016483981162309647, -0.009710561484098434, 0.00021689488494303077, 0.0038877842016518116, 4.917055775877088e-05, 0.0058786291629076, 0.014707762748003006, -0.008768562227487564, -0.012218602932989597, 0.0058638607151806355, -0.0022611322347074747, -0.00574250565841794, 0.02567521668970585, 0.011758615262806416, 0.011062204837799072, -0.0018338896334171295, -0.004755151923745871, -0.0026523966807872057, 0.0017470009624958038, 0.010374031029641628, -0.005593667272478342, -0.003989430144429207, -0.004845591727644205, 0.0041526323184370995, -0.0017719923052936792, -0.01089446246623993, -0.006832245271652937, 0.003960588481277227, 0.0019931388087570667, -0.004740118980407715, -0.006121695041656494, 0.001043610624037683, -0.017415475100278854, -0.003372818697243929, -0.0039117117412388325, -0.004023164510726929, 0.005731884855777025, -0.007333941757678986, 0.0019353367388248444, 0.005901701748371124, 0.007026145700365305, 0.003888305276632309, -0.0030509040225297213, 1.677436193858739e-05, 0.005981838330626488, 0.013205921277403831, -0.006535709369927645, -0.0005774814635515213, -0.0012027238262817264, 0.012154478579759598, 0.003263831604272127, -0.0010850286344066262, 9.150368714472279e-05, -0.007765620946884155, 0.008664035238325596, -0.001606848556548357, 0.0006344694411382079, -0.008764606900513172, 0.005934393499046564, -0.0027790034655481577, 0.010733830742537975, -0.016234995797276497, -0.0052927699871361256, -0.009348856285214424, 0.0023859988432377577, 0.012795998714864254, 0.018545527011156082, -0.00034927084925584495, -0.0008847375866025686, 0.01687805913388729, 0.01257595606148243, -0.0013079068157821894, -0.0014050363097339869, 0.007016561925411224, 0.0034848114009946585, 0.0010103388922289014, -0.0035894487518817186, 0.005701136309653521, -0.006909077987074852, -0.007219867315143347, -0.010863262228667736, -0.010593344457447529, 0.00349035975523293, -0.00522282999008894, 0.004623894114047289, -0.004530343227088451, 0.0027415077202022076, 0.0027523685712367296, 0.007469962816685438, 0.00599264819175005, 0.008522024378180504, -0.006277536042034626, -0.004207100253552198, 0.012361236847937107, 0.010706346482038498, 0.0028164584655314684, -0.007287024054676294, -0.0007473929435946047, 0.0018057989655062556, 0.013613470830023289, -0.0012507053324952722, -0.012922372668981552, 0.0038275860715657473, 0.0006950048264116049, -0.004654397256672382, 0.006853810045868158, -0.0069122337736189365, -0.0033369946759194136, 0.0011946114245802164, 0.001182649633847177, 0.005722003988921642, -0.001814216491766274, 0.003419602056965232, -0.011703947558999062, -0.0030502851586788893, 0.008650366216897964, -0.004751513712108135, -0.0022096713073551655, 0.010124285705387592, 0.0030688056722283363, 5.182443783269264e-05, -0.0014382068766281009, 0.00486890971660614, -0.0026400641072541475, -0.006293504033237696, -0.0038490050937980413, 0.0026751041878014803, 0.0015796194784343243, 0.008328517898917198, 0.005916535388678312, -0.001626497134566307, 0.002086218912154436, 0.010348987765610218, 0.003825054271146655, 0.009663938544690609, -0.0004792457621078938, -0.005520121660083532, 0.0021576816216111183, 3.0232592962420313e-06, -0.0004820431931875646, -0.0161536056548357, -0.014008457772433758, -0.007396014407277107, 0.0023301660548895597, 0.007740546949207783, 0.007616299670189619, 0.009007572196424007, -0.008930732496082783, -0.003742411732673645, -0.001905115321278572, -0.004038045182824135, -0.004618159960955381, -0.005684988107532263, -0.00031252633198164403, -0.00019087179680354893, -0.0015046781627461314, 0.010165821760892868, 0.001701042172499001, 0.004191847052425146, -0.0027589367236942053, 0.0003000828728545457, -0.004165567457675934, -0.0011339375050738454, -0.007746522314846516, 0.008080109022557735, -0.012848328799009323, 0.00810366403311491, -0.0043530454859137535, 0.0024456223472952843, -0.008073233999311924, 0.004854542203247547, 0.009466658346354961, 0.0006525701028294861, 0.005927910562604666, -0.002667967928573489, -0.006035512778908014, 0.0038976205978542566, -0.008275322616100311, 0.006822518538683653, 0.0009037411655299366, -0.0010232734493911266, 0.008985957130789757, -0.0070646824315190315, -0.01035737432539463, 0.00224020192399621, -0.002133171772584319, -0.008658030070364475, 0.0064922054298222065, -0.0015790433390066028, 0.0003260644734837115, 0.008083777502179146, -0.0026140199042856693, 0.002096444135531783, 0.0007500670617446303, 0.006339163985103369, 0.003016159636899829, 0.0017008185386657715, -0.002812437480315566, -0.005550736095756292, -0.002191191306337714, 0.011440157890319824, -0.003620319301262498, 0.005671508144587278, 0.0005372703890316188, -0.015581921674311161, 0.005310214590281248, 0.0007684110314585268, -0.005643234588205814, -0.00538434274494648, -0.007584304548799992, 0.0006748146843165159, 0.009566465392708778, 0.001413943711668253, -0.0033751039300113916, -0.00034177303314208984, 0.0044074528850615025, -0.0025944351218640804, 0.002656735945492983, 0.0021264643874019384, -0.0016628301236778498, -0.0024077813141047955, 0.0004704478778876364, -0.0007491536089219153, -0.002788111800327897, 0.016292350366711617, 0.006137239746749401, -0.0004392590490169823, -0.0037932260893285275, 0.001544992090202868, 0.005877842660993338, -0.00768442964181304, -0.004274642560631037, 0.001083927578292787, -0.0036486561875790358, -0.010554010048508644, 0.0050832731649279594, 0.002223100746050477, 0.009581023827195168, -0.006003186106681824, -0.0008094679797068238, 0.004333584103733301, -0.01100520696491003, 0.0072966632433235645, 0.009933975525200367, 0.01156709622591734, 0.0026203787419945, -0.009465872310101986, 0.009580240584909916, 0.0059983753599226475, 0.004522738512605429, 0.010598810389637947, 0.006993383169174194, -0.00989750400185585, -0.000910807924810797, 0.0071936254389584064, 0.0010771306697279215, 0.0025569708086550236, 0.010031408630311489, 0.007192644290626049, 0.007144898641854525, -0.001238481723703444, 0.00024021552235353738, -0.010848023928701878, -0.005738736595958471, -0.0003270162851549685, -0.005065402016043663, -0.0014548498438671231, 0.003727390430867672, 0.0012801002012565732, -0.008932065218687057, -0.005393202882260084, 0.003902287920936942, -0.006590810604393482, 0.003483639331534505, -0.0033421863336116076, 0.001961262198165059, -0.008087437599897385, 0.0036799763329327106, 0.00724317179992795, 0.0017375588649883866, -0.010724320076406002, -0.005294848699122667, -0.0029731537215411663, 0.002186649478971958, -0.005067811813205481, 0.0033640319015830755, -0.007699909154325724, 0.00575359957292676, 0.0011513123754411936, -0.0049784500151872635, -0.0015834267251193523, 0.007673902902752161, -0.0046926760114729404, -0.004335171543061733, -0.002447259146720171, -0.003790927119553089, -0.006318989209830761, -0.0006309698219411075, -0.004122093785554171, 0.004646382760256529, 0.010683932341635227, 0.007806337904185057, 0.01467702817171812, 0.0004437372263055295, -0.008988560177385807, -0.0028231660835444927, 0.011578340083360672, -0.0017802166985347867, -0.00114814518019557, -0.012041034176945686, 0.011084537953138351, 0.04285828769207001, -0.005920558236539364, -4.274932143744081e-05, 0.005713225807994604, -0.011406725272536278, 0.0005592579836957157, -0.004573144018650055, -0.0007355624693445861, -0.008709702640771866, 0.005080473143607378, 0.0012012140359729528, -0.00770940724760294, 0.010767847299575806, -0.012040122412145138, -0.0017601358704268932, 0.0033964167814701796, -0.005979989655315876, -0.007429798599332571, 0.008298344910144806, -0.020798949524760246, 0.005739490035921335, 0.005374900531023741, 0.0032544133719056845, 0.0006891319062560797, -0.004066226072609425, -0.003726924303919077, -0.010279734618961811, -0.0012303588446229696, 0.004374529700726271, 0.002069528214633465, 0.007746579125523567, 0.004284524824470282, -4.4337288272799924e-05, 0.005512688774615526, 0.0037564048543572426, 0.004285996779799461, -0.008596197701990604, -0.006869289558380842, 0.008788423612713814, 0.00016915392188820988, -0.0030762325040996075, -0.010750466026365757, 0.0018093831604346633, 0.0002726178790908307, -0.009880718775093555, 0.014224580489099026, -0.012528285384178162, 0.0010691252537071705, 0.0016992607852444053, -0.0037514311261475086, 0.013114255852997303, 0.008467932231724262, 0.0016746988985687494, -0.005048167891800404, -0.007059342227876186, 0.0004518424393609166, -0.01003294251859188, 0.0023361905477941036, -0.0024077589623630047, -0.013095304369926453, -0.0032225095201283693, 0.0018185985973104835, -0.01621970720589161, -0.007556986529380083, 0.002224626252427697, -0.008157795295119286, -0.0026727968361228704, 0.0073617128655314445, 0.009946177713572979, -0.0010392626281827688, 0.0013552058953791857, 0.0038603239227086306, 0.0022816213313490152, 0.00497120525687933, -0.009839357808232307, -0.010704588145017624, -0.0010880368063226342, 0.002766682766377926, -0.001774867414496839, 0.007980051450431347, 0.012758475728332996, 0.002325792098417878, -0.0006026008632034063, -0.0044165318831801414, -0.011286837048828602, -0.0013112317537888885, 0.0034783727023750544, 0.001048681209795177, -0.01439390517771244, 0.008565378375351429, 0.0037808690685778856, 0.002913727657869458, 0.0037999222986400127, 0.0008761858334764838, 0.0002222038892796263, 0.01024703774601221, 0.012757658958435059, 0.00659360783174634, 0.004857887513935566, 0.0024202619679272175, 0.0010517697082832456, -0.0029278993606567383, -0.004455350339412689, -0.00889760721474886, -0.007054632063955069, -0.008200613781809807, -0.0031888221856206656, 0.009565235115587711, -0.001621582661755383, 0.0023478150833398104, -0.017961803823709488, -0.001668945187702775, -0.011995017528533936, -0.012358659878373146, 0.01063848752528429, 0.0037196879275143147, -0.004078940488398075, -0.0029799207113683224, -0.0027765154372900724, 0.0028469515964388847, -0.002181626856327057, 0.008215686306357384, 0.0020982096903026104, 0.004792376887053251, -0.013140986673533916, -0.008040119893848896, 0.004284074995666742, -0.004812605679035187, -0.010367963463068008, -0.0022180902305990458, 0.0003072280378546566, -0.010579511523246765, -0.0005126049509271979, 0.0008513677748851478, 9.067328937817365e-05, -0.0049875290133059025, 0.013883373700082302, -0.011341431178152561, -0.0062099662609398365, 0.0014482722617685795, -0.003189287381246686, -0.00028642136021517217, -0.007828916423022747, 0.016203515231609344, -0.001717810402624309, -0.0009971942054107785, 0.005946348886936903, -0.011918638832867146, -0.0016364043112844229, 0.0027524561155587435, -0.007364011835306883, 0.004928728099912405, -0.0004569786542560905, -0.0002215882414020598, -0.00759881641715765, 0.006662165280431509, 3.572472633095458e-05, -0.0020604566670954227, 0.011478832922875881, 0.0012461428996175528, 0.0024761646054685116, -0.014962451532483101, -0.01037772186100483, -0.008525479584932327, 0.009466350078582764, -0.006616042461246252, -0.007249326445162296, 0.015743007883429527, -0.0034138699993491173, 0.0004574810154736042, 0.0019257899839431047, -0.0038646284956485033, -0.010581925511360168, -0.007369096856564283, 0.0076150414533913136, 0.006238364614546299, -0.0014024035772308707, -0.0014403158565983176, 0.0023527105804532766, -0.005164646077901125, 0.009011374786496162, 0.010085860267281532, -0.009535149671137333, 0.00502391904592514, 0.005323139019310474, 0.0021201721392571926, 0.011864091269671917, 0.0007847546366974711, -0.003729390911757946, -0.01212064828723669, 0.0035471366718411446, 0.0029662896413356066, 0.001795826363377273, 0.0020440041553229094, -0.004412037320435047, -0.011733168736100197, -0.002459645038470626, -0.00785048957914114, -0.005393113009631634, -0.00768957519903779, 0.002765574026852846, -0.004902997985482216, 0.004312464501708746, -0.0023285308852791786, 0.0071272761560976505, 0.004497632384300232, -0.002028755145147443, -0.005206684116274118, -0.005147628486156464, 0.007673249579966068, 0.010130301117897034, 0.004977172706276178, 0.008251131512224674, -0.0005816428456455469, -0.0034629921428859234, 0.005369939841330051, -0.008551676757633686, 0.004365795757621527, -0.0016123914392665029, -0.008539306931197643, 0.0012782656121999025, -0.007831623777747154, 0.0035751413088291883, 0.007633177563548088, -0.005564211402088404, -0.001520974445156753, 0.006291338708251715, 0.006207031663507223, -0.012259419076144695, 0.008604117669165134, 0.0035847541876137257, -0.0020145894959568977, 0.002874731319025159, 0.002541261026635766, -6.14779710303992e-05, 0.005456923507153988, -0.0026248402427881956, -0.005450928118079901, 0.004749695770442486, -0.006142601370811462, -0.005323612596839666, 0.00700386380776763, -0.01352409366518259, -0.01197896245867014, -0.000863666704390198, 0.005711243487894535, 0.0034127612598240376, 0.0059267557226121426, 0.0009621336357668042, -0.008915027603507042, -0.002707467647269368, -0.002774809719994664, 0.012660026550292969, 0.00035903972457163036, 0.00321084912866354, -0.0009651175932958722, 0.0018382844282314181, -0.012157059274613857, -0.011052543297410011, -0.004169808700680733, 0.002363897394388914, -0.004905406851321459, 0.008251234889030457, -0.011559579521417618, -0.006347609218209982, 0.011491070501506329, 0.0009688148275017738, -0.0066606635227799416, 0.00451604463160038, -0.0016705095767974854, 0.008133907802402973, -0.01734246499836445, 0.007892466150224209, -0.003283516736701131, -0.008556348271667957, -0.00755701307207346, 0.001934561412781477, -0.005964264739304781, -0.0031638003420084715, -0.003035391913726926, -0.007739278953522444, -0.0012697505299001932, -0.002122330479323864, -0.0005194956320337951, 0.0025928488466888666, -0.007163929753005505, -0.007786502595990896, 0.009291877038776875, -0.0030813729390501976, 0.012683392502367496, -0.0006406616885215044, -0.001610529376193881, -0.0002329743729205802, 0.004022164270281792, -0.0032083450350910425, 0.0017303359927609563, -0.004147021099925041, -0.007981760427355766, -0.006250782869756222, -0.0010245653102174401, -0.014859089627861977, -0.0014072413323447108, -0.008772010914981365, 0.008880745619535446, -0.0011660431046038866, -0.01145227812230587, 0.013667753897607327, 0.009342295117676258, 0.00322403060272336, -0.005866636522114277, 0.017425252124667168, 0.026903579011559486, 0.005791639443486929, -0.0004714200913440436, -0.0032076602801680565, -0.0036687597166746855, -0.00026934928609989583, 0.0005728117539547384, 0.0008502926793880761, -0.008353511802852154, 0.005482879001647234, 0.015958672389388084, -0.0017905662534758449, 0.005677002016454935, -0.0019137015333399177, 0.0048388284631073475, -0.0008030194439925253, -0.0016056260792538524, -0.005006303079426289, -0.00989106297492981, -0.00043092816486023366, -0.013932276517152786, -0.0011404603719711304, -0.002739672316238284, -0.002993942704051733, -0.013035661540925503, 0.004370513372123241, 0.0055106994695961475, -0.01857144385576248, 0.00799780897796154, 0.0008408713038079441, 0.0008538889233022928, -0.005533705931156874, 0.011980067938566208, -6.951193063287064e-05, 0.010146704502403736, -0.004446826875209808, -0.0016383094480261207, -0.0067455642856657505, -0.0007656196248717606, 0.007747336756438017, 0.001378494780510664, 0.018559375777840614, 0.007486133836209774, 0.0005256769363768399, 0.0020163555163890123, 0.010929146781563759, -0.002644053427502513, -0.004507826175540686, 0.004346631001681089, -0.002102647675201297, 0.0025466391816735268, 0.0086744399741292, 0.009210252203047276, -0.004400627687573433, -0.007794836536049843, -0.003793231677263975, 0.005492598749697208, 0.0022255207877606153, -0.008256588131189346]]
)
For advanced examples of usage, please take a look at the readme in https://github.com/facebookresearch/SONAR.
- Downloads last month
- 53