2
0

models.json 269 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369
  1. [
  2. {
  3. "type": "_",
  4. "target": "boolean.onnx",
  5. "source": "https://github.com/lutzroeder/netron/files/8985631/boolean.onnx.zip[boolean.onnx]",
  6. "error": "Unsupported Pickle content in 'boolean.onnx'.",
  7. "link": "https://github.com/lutzroeder/netron/issues/458"
  8. },
  9. {
  10. "type": "_",
  11. "target": "config.json",
  12. "source": "https://github.com/lutzroeder/netron/files/5398758/config.json.zip[config.json]",
  13. "error": "Invalid file content. File contains keras-yolo2 configuration.",
  14. "link": "https://github.com/lutzroeder/netron/issues/458"
  15. },
  16. {
  17. "type": "_",
  18. "target": "config.pbtxt",
  19. "source": "https://github.com/lutzroeder/netron/files/5398767/config.pbtxt.zip[config.pbtxt]",
  20. "error": "Invalid file content. File contains Triton Inference Server configuration.",
  21. "link": "https://github.com/NVIDIA/triton-inference-server"
  22. },
  23. {
  24. "type": "_",
  25. "target": "coreml_invalid_file.mlmodel",
  26. "source": "https://github.com/lutzroeder/netron/files/3219681/coreml_invalid_file.mlmodel.zip",
  27. "error": "Archive contains no model files in 'coreml_invalid_file.mlmodel'.",
  28. "format": "Core ML v1",
  29. "link": "https://github.com/lutzroeder/netron/issues/193"
  30. },
  31. {
  32. "type": "_",
  33. "target": "empty.zip",
  34. "source": "https://github.com/lutzroeder/netron/files/5581087/empty.zip",
  35. "error": "Archive contains no model files in 'empty.zip'.",
  36. "link": "https://github.com/lutzroeder/netron/issues/458"
  37. },
  38. {
  39. "type": "_",
  40. "target": "haarcascade_mcs_nose.xml",
  41. "source": "https://github.com/lutzroeder/netron/files/7403702/haarcascade_mcs_nose.xml.zip[haarcascade_mcs_nose.xml]",
  42. "error": "Invalid file content. File contains OpenCV storage data.",
  43. "link": "https://github.com/lutzroeder/netron/issues/458"
  44. },
  45. {
  46. "type": "_",
  47. "target": "imagenet_2012_challenge_label_map_proto.pbtxt",
  48. "source": "https://raw.githubusercontent.com/dmlc/web-data/master/tensorflow/models/InceptionV1/imagenet_2012_challenge_label_map_proto.pbtxt",
  49. "error": "Invalid file content. File contains ImageNet LabelMap data."
  50. },
  51. {
  52. "type": "_",
  53. "target": "keras_metadata.pb",
  54. "source": "https://github.com/lutzroeder/netron/files/6751650/keras_metadata.pb.zip[keras_metadata.pb]",
  55. "error": "The file 'saved_model.pb' does not exist in 'keras_metadata.pb'.",
  56. "link": "https://github.com/lutzroeder/netron/issues/458"
  57. },
  58. {
  59. "type": "_",
  60. "target": "keras2onnx.onnx",
  61. "source": "https://github.com/lutzroeder/netron/files/5738366/keras2onnx.onnx.zip[keras2onnx.onnx]",
  62. "error": "File format is not onnx.ModelProto (Unexpected end of file) in 'keras2onnx.onnx'.",
  63. "link": "https://github.com/lutzroeder/netron/issues/6"
  64. },
  65. {
  66. "type": "_",
  67. "target": "knift_index.pb",
  68. "error": "Invalid file content. File contains mediapipe.BoxDetectorIndex data.",
  69. "source": "https://github.com/lutzroeder/netron/files/6308301/knift_index.pb.zip[knift_index.pb]"
  70. },
  71. {
  72. "type": "_",
  73. "target": "labelmap.pbtxt",
  74. "source": "https://github.com/lutzroeder/netron/files/5398649/labelmap.zip[labelmap.pbtxt]",
  75. "error": "Invalid file content. File contains StringIntLabelMapProto data.",
  76. "link": "https://github.com/lutzroeder/netron/issues/458"
  77. },
  78. {
  79. "type": "_",
  80. "target": "gzip_invalid_archive.tar.gz",
  81. "source": "https://github.com/lutzroeder/netron/files/5468427/gzip_invalid_archive.tar.gz",
  82. "error": "Unsupported file content (ff000000000000000000000000000000) for extension '.gz' in 'gzip_invalid_archive.tar.gz'.",
  83. "link": "https://github.com/lutzroeder/netron/issues/249"
  84. },
  85. {
  86. "type": "_",
  87. "target": "gzip_invalid_compression.tar.gz",
  88. "source": "https://github.com/lutzroeder/netron/files/3027193/gzip_invalid_compression.tar.gz",
  89. "error": "Invalid compression method '1' in 'gzip_invalid_compression.tar.gz'.",
  90. "link": "https://github.com/lutzroeder/netron/issues/249"
  91. },
  92. {
  93. "type": "_",
  94. "target": "invalid_git_lfs.mlmodel",
  95. "source": "https://github.com/lutzroeder/netron/files/4432767/invalid_git_lfs.mlmodel.zip[invalid_git_lfs.mlmodel]",
  96. "error": "Invalid file content. File contains Git LFS header.",
  97. "link": "https://github.com/lutzroeder/netron/issues/458"
  98. },
  99. {
  100. "type": "_",
  101. "target": "invalid_html.mlmodel.zip",
  102. "source": "https://github.com/lutzroeder/netron/files/4432768/invalid_html.mlmodel.zip",
  103. "error": "Invalid file content. File contains HTML markup.",
  104. "link": "https://github.com/lutzroeder/netron/issues/458"
  105. },
  106. {
  107. "type": "_",
  108. "target": "invalid_html.tflite",
  109. "source": "https://github.com/lutzroeder/netron/files/4432789/invalid_html.tflite.zip[invalid_html.tflite]",
  110. "error": "Invalid file content. File contains HTML markup.",
  111. "link": "https://github.com/lutzroeder/netron/issues/458"
  112. },
  113. {
  114. "type": "_",
  115. "target": "onnx-metadata.json",
  116. "source": "https://raw.githubusercontent.com/lutzroeder/netron/main/source/onnx-metadata.json",
  117. "error": "Invalid file content. File contains Netron metadata.",
  118. "link": "https://github.com/lutzroeder/netron/blob/main/source/onnx-metadata.json"
  119. },
  120. {
  121. "type": "_",
  122. "target": "ops.pbtxt",
  123. "source": "https://raw.githubusercontent.com/tensorflow/tensorflow/master/tensorflow/core/ops/ops.pbtxt",
  124. "error": "Invalid file content. File contains TensorFlow OpList data.",
  125. "link": "https://github.com/tensorflow/tensorflow/blob/master/tensorflow/core/ops/ops.pbtxt"
  126. },
  127. {
  128. "type": "_",
  129. "target": "random.onnx",
  130. "source": "https://github.com/lutzroeder/netron/files/7449479/random.onnx.zip[random.onnx]",
  131. "error": "Unsupported file content (746d6c20786d6c6e733d22687474703a) for extension '.onnx' in 'random.onnx'.",
  132. "link": "https://github.com/lutzroeder/netron/issues/458"
  133. },
  134. {
  135. "type": "_",
  136. "target": "spm_char.model",
  137. "source": "https://github.com/lutzroeder/netron/files/6611189/covost2_en_asr_vocab_char.zip[spm_char.model]",
  138. "error": "Invalid file content. File contains sentencepiece.ModelProto data.",
  139. "link": "https://github.com/lutzroeder/netron/issues/748"
  140. },
  141. {
  142. "type": "_",
  143. "target": "vk_swiftshader_icd.json",
  144. "source": "https://github.com/lutzroeder/netron/files/5398770/vk_swiftshader_icd.json.zip[vk_swiftshader_icd.json]",
  145. "error": "Invalid file content. File contains Vulkan SwiftShader ICD manifest.",
  146. "link": "https://github.com/lutzroeder/netron/issues/458"
  147. },
  148. {
  149. "type": "_",
  150. "target": "yolo-1c.meta",
  151. "source": "https://github.com/lutzroeder/netron/files/5398632/yolo-1c.meta.zip[yolo-1c.meta]",
  152. "error": "Invalid file content. File contains Darkflow metadata.",
  153. "link": "https://github.com/lutzroeder/netron/issues/458"
  154. },
  155. {
  156. "type": "_",
  157. "target": "universal_encoder_8k_spm.model.model",
  158. "source": "https://github.com/lutzroeder/netron/files/7232403/universal_encoder_8k_spm.model.zip[universal_encoder_8k_spm.model]",
  159. "error": "Invalid file content. File contains sentencepiece.ModelProto data.",
  160. "link": "https://github.com/lutzroeder/netron/issues/748"
  161. },
  162. {
  163. "type": "_",
  164. "target": "zip_invalid_archive.zip",
  165. "source": "https://github.com/lutzroeder/netron/files/5468425/zip_invalid_archive.zip",
  166. "error": "Unsupported file content (ff000000000000000000000000000000) for extension '.zip' in 'zip_invalid_archive.zip'.",
  167. "link": "https://github.com/lutzroeder/netron/issues/250"
  168. },
  169. {
  170. "type": "acuity",
  171. "target": "inception_v1.json",
  172. "source": "https://raw.githubusercontent.com/VeriSilicon/acuity-models/master/models/inception_v1/inception_v1.json",
  173. "link": "https://github.com/VeriSilicon/acuity-models"
  174. },
  175. {
  176. "type": "armnn",
  177. "target": "simple_network.armnn",
  178. "source": "https://github.com/lutzroeder/netron/files/4951689/simple_network.zip[simple_network.armnn]",
  179. "format": "Arm NN",
  180. "link": "https://github.com/lutzroeder/netron/issues/515"
  181. },
  182. {
  183. "type": "armnn",
  184. "target": "ssd_mobilenet_v1.armnn",
  185. "source": "https://raw.githubusercontent.com/ARM-software/armnn/master/samples/serialized/ssd_mobilenet_v1.armnn",
  186. "format": "Arm NN",
  187. "link": "https://github.com/ARM-software/armnn"
  188. },
  189. {
  190. "type": "armnn",
  191. "target": "ssd_mobilenet_v3_small_coco_2019_08_14_q8.armnn",
  192. "source": "https://github.com/lutzroeder/netron/files/3839429/samples.zip[ssd_mobilenet_v3_small_coco_2019_08_14_q8.armnn]",
  193. "format": "Arm NN",
  194. "link": "https://github.com/lutzroeder/netron/issues/515"
  195. },
  196. {
  197. "type": "armnn",
  198. "target": "ssd_mobilenet_v3_small_coco_2019_08_14_q8.json",
  199. "source": "https://github.com/lutzroeder/netron/files/4945145/ssd_mobilenet_v3_small_coco_2019_08_14_q8.zip[ssd_mobilenet_v3_small_coco_2019_08_14_q8.json]",
  200. "format": "Arm NN",
  201. "link": "https://github.com/lutzroeder/netron/issues/515"
  202. },
  203. {
  204. "type": "armnn",
  205. "target": "ssd_mobilenet_v3_small_coco_2019_08_14_q16.armnn",
  206. "source": "https://github.com/lutzroeder/netron/files/3839429/samples.zip[ssd_mobilenet_v3_small_coco_2019_08_14_q16.armnn]",
  207. "format": "Arm NN",
  208. "link": "https://github.com/lutzroeder/netron/issues/515"
  209. },
  210. {
  211. "type": "barracuda",
  212. "target": "3DBallHardLearning.nn",
  213. "source": "https://raw.githubusercontent.com/reinforcement-learning-kr/rl_bootcamp/master/UnitySDK/Assets/ML-Agents/Examples/3DBall/TFModels/3DBallHardLearning.nn",
  214. "format": "Barracuda v16",
  215. "link": "https://github.com/reinforcement-learning-kr/rl_bootcamp"
  216. },
  217. {
  218. "type": "barracuda",
  219. "target": "mobilenet_v2.nn",
  220. "source": "https://raw.githubusercontent.com/Syn-McJ/TFClassify-Unity-Barracuda/master/Assets/Resources/mobilenet_v2.nn",
  221. "format": "Barracuda v16",
  222. "link": "https://github.com/Syn-McJ/TFClassify-Unity-Barracuda"
  223. },
  224. {
  225. "type": "barracuda",
  226. "target": "HighQualityTrainedModel.nn",
  227. "source": "https://digital-standard.com/threedpose/models/HighQualityTrainedModel.nn",
  228. "format": "Barracuda v16",
  229. "link": "https://github.com/digista-tanaka/ThreeDPoseTracker"
  230. },
  231. {
  232. "type": "bigdl",
  233. "target": "analytics-zoo_squeezenet-quantize_imagenet_0.1.0.model",
  234. "source": "https://github.com/lutzroeder/netron/files/5891323/analytics-zoo_squeezenet-quantize_imagenet_0.1.0.model.zip[analytics-zoo_squeezenet-quantize_imagenet_0.1.0.model]",
  235. "format": "BigDL v0.5.0",
  236. "link": "https://github.com/lutzroeder/netron/issues/355"
  237. },
  238. {
  239. "type": "caffe",
  240. "target": "1D_lstm.prototxt",
  241. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/1D_lstm.prototxt",
  242. "format": "Caffe v2",
  243. "link": "https://github.com/cwlacewe/netscope"
  244. },
  245. {
  246. "type": "caffe",
  247. "target": "age_net.caffemodel",
  248. "source": "https://raw.githubusercontent.com/eveningglow/age-and-gender-classification/master/model/age_net.caffemodel",
  249. "format": "Caffe v1",
  250. "link": "https://github.com/eveningglow/age-and-gender-classification"
  251. },
  252. {
  253. "type": "caffe",
  254. "target": "alexnet.prototxt",
  255. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/alexnet.prototxt",
  256. "format": "Caffe v2",
  257. "link": "https://github.com/cwlacewe/netscope"
  258. },
  259. {
  260. "type": "caffe",
  261. "target": "AlexNet_SalObjSub_deploy.prototxt",
  262. "source": "https://raw.githubusercontent.com/natanielruiz/net-archive/master/salient-object-alexnet/deploy.prototxt",
  263. "format": "Caffe v1",
  264. "link": "https://github.com/natanielruiz/net-archive/tree/master/salient-object-alexnet"
  265. },
  266. {
  267. "type": "caffe",
  268. "target": "autocolorize.prototxt",
  269. "source": "https://github.com/lutzroeder/netron/files/4923194/autocolorize.zip[autocolorize.prototxt]",
  270. "format": "Caffe v2",
  271. "link": "https://github.com/lutzroeder/netron/issues/276"
  272. },
  273. {
  274. "type": "caffe",
  275. "target": "bvlc_alexnet.caffemodel",
  276. "source": "http://dl.caffe.berkeleyvision.org/bvlc_alexnet.caffemodel",
  277. "format": "Caffe v1",
  278. "link": "https://github.com/BVLC/caffe/tree/master/models/bvlc_alexnet"
  279. },
  280. {
  281. "type": "caffe",
  282. "target": "bvlc_caffenet_full_conv.prototxt",
  283. "source": "https://raw.githubusercontent.com/BVLC/caffe/master/examples/net_surgery/bvlc_caffenet_full_conv.prototxt",
  284. "format": "Caffe v2",
  285. "link": "https://github.com/BVLC/caffe/tree/master/examples/net_surgery"
  286. },
  287. {
  288. "type": "caffe",
  289. "target": "bvlc_alexnet_deploy.prototxt",
  290. "source": "https://raw.githubusercontent.com/BVLC/caffe/master/models/bvlc_alexnet/deploy.prototxt",
  291. "format": "Caffe v2",
  292. "link": "https://github.com/BVLC/caffe/tree/master/models/bvlc_alexnet"
  293. },
  294. {
  295. "type": "caffe",
  296. "target": "bvlc_googlenet.caffemodel",
  297. "source": "http://dl.caffe.berkeleyvision.org/bvlc_googlenet.caffemodel",
  298. "format": "Caffe v1",
  299. "link": "https://github.com/BVLC/caffe/tree/master/models/bvlc_googlenet"
  300. },
  301. {
  302. "type": "caffe",
  303. "target": "caffe_array.prototxt",
  304. "source": "https://github.com/lutzroeder/netron/files/3288816/caffe_examples.zip[caffe_array.prototxt]",
  305. "format": "Caffe v2",
  306. "link": "https://github.com/lutzroeder/netron/issues/276"
  307. },
  308. {
  309. "type": "caffe",
  310. "target": "caffe_invalid_file.caffemodel",
  311. "source": "https://github.com/lutzroeder/netron/files/3288816/caffe_examples.zip[caffe_invalid_file.caffemodel]",
  312. "error": "File format is not caffe.NetParameter (Invalid type 4 at offset 11) in 'caffe_invalid_file.caffemodel'.",
  313. "link": "https://github.com/lutzroeder/netron/issues/276"
  314. },
  315. {
  316. "type": "caffe",
  317. "target": "caffe_invalid_semicolon.prototxt",
  318. "source": "https://github.com/lutzroeder/netron/files/3288816/caffe_examples.zip[caffe_invalid_semicolon.prototxt]",
  319. "error": "File text format is not caffe.NetParameter (Unexpected token ';' at 7:18) in 'caffe_invalid_semicolon.prototxt'.",
  320. "link": "https://github.com/lutzroeder/netron/issues/276"
  321. },
  322. {
  323. "type": "caffe",
  324. "target": "caffe_semicolon.prototxt",
  325. "source": "https://github.com/lutzroeder/netron/files/3288816/caffe_examples.zip[caffe_semicolon.prototxt]",
  326. "format": "Caffe v2",
  327. "link": "https://github.com/lutzroeder/netron/issues/276"
  328. },
  329. {
  330. "type": "caffe",
  331. "target": "caffenet.prototxt",
  332. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/caffenet.prototxt",
  333. "format": "Caffe v2",
  334. "link": "https://github.com/cwlacewe/netscope"
  335. },
  336. {
  337. "type": "caffe",
  338. "target": "cifar10_full_sigmoid_solver_bn.prototxt,cifar10_full_sigmoid_train_test_bn.prototxt",
  339. "source": "https://raw.githubusercontent.com/BVLC/caffe/master/examples/cifar10/cifar10_full_sigmoid_solver_bn.prototxt,https://raw.githubusercontent.com/BVLC/caffe/master/examples/cifar10/cifar10_full_sigmoid_train_test_bn.prototxt",
  340. "format": "Caffe v2",
  341. "link": "https://github.com/BVLC/caffe/tree/master/examples/cifar10"
  342. },
  343. {
  344. "type": "caffe",
  345. "target": "cityscapes_713_pspnet.prototxt",
  346. "source": "https://github.com/lutzroeder/netron/files/6543206/cityscapes_713_pspnet.prototxt.zip[cityscapes_713_pspnet.prototxt]",
  347. "format": "Caffe v2",
  348. "link": "https://github.com/lutzroeder/netron/issues/276"
  349. },
  350. {
  351. "type": "caffe",
  352. "target": "conv.prototxt",
  353. "source": "https://raw.githubusercontent.com/BVLC/caffe/master/examples/net_surgery/conv.prototxt",
  354. "format": "Caffe v2",
  355. "link": "https://github.com/BVLC/caffe/tree/master/examples/net_surgery"
  356. },
  357. {
  358. "type": "caffe",
  359. "target": "deepyeast.caffemodel",
  360. "source": "https://kodu.ut.ee/~leopoldp/2016_DeepYeast/code/caffe_model/HOwt_png_vgg_A_bn_iter_130000.caffemodel",
  361. "format": "Caffe v2",
  362. "link": "https://github.com/BVLC/caffe/wiki/Model-Zoo#deepyeast"
  363. },
  364. {
  365. "type": "caffe",
  366. "target": "DenseNet_169.prototxt",
  367. "source": "https://raw.githubusercontent.com/shicai/DenseNet-Caffe/master/DenseNet_169.prototxt",
  368. "format": "Caffe v2",
  369. "link": "https://github.com/shicai/DenseNet-Caffe"
  370. },
  371. {
  372. "type": "caffe",
  373. "target": "deploy_iResNet_ROB.tpl.prototxt",
  374. "source": "https://raw.githubusercontent.com/leonzfa/iResNet/master/models/model/deploy_iResNet_ROB.tpl.prototxt",
  375. "error": "File text format is not caffe.NetParameter (Couldn't parse float '$SCALE_WIDTH' at 727:47) in 'deploy_iResNet_ROB.tpl.prototxt'.",
  376. "link": "https://github.com/leonzfa/iResNet"
  377. },
  378. {
  379. "type": "caffe",
  380. "target": "faster_rcnn_train_test_21cls.pt",
  381. "source": "https://raw.githubusercontent.com/sanghoon/pva-faster-rcnn/master/models/pvanet/pva9.1/faster_rcnn_train_test_21cls.pt",
  382. "format": "Caffe v2",
  383. "link": "https://github.com/sanghoon/pva-faster-rcnn"
  384. },
  385. {
  386. "type": "caffe",
  387. "target": "fasterRCNN_AlexNet.prototxt",
  388. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/fasterRCNN_AlexNet.prototxt",
  389. "format": "Caffe v2",
  390. "link": "https://github.com/cwlacewe/netscope"
  391. },
  392. {
  393. "type": "caffe",
  394. "target": "fasterRCNN_ResNet.prototxt",
  395. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/fasterRCNN_ResNet.prototxt",
  396. "format": "Caffe v2",
  397. "link": "https://github.com/cwlacewe/netscope"
  398. },
  399. {
  400. "type": "caffe",
  401. "target": "fasterRCNN_VGG.prototxt",
  402. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/fasterRCNN_VGG.prototxt",
  403. "format": "Caffe v2",
  404. "link": "https://github.com/cwlacewe/netscope"
  405. },
  406. {
  407. "type": "caffe",
  408. "target": "fasterRCNN_ZynqNet.prototxt",
  409. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/fasterRCNN_ZynqNet.prototxt",
  410. "format": "Caffe v2",
  411. "link": "https://github.com/cwlacewe/netscope"
  412. },
  413. {
  414. "type": "caffe",
  415. "target": "fcn-16s.prototxt",
  416. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/fcn-16s.prototxt",
  417. "format": "Caffe v1",
  418. "link": "https://github.com/cwlacewe/netscope"
  419. },
  420. {
  421. "type": "caffe",
  422. "target": "fcn-8s-pascal-deploy.prototxt",
  423. "source": "https://raw.githubusercontent.com/HyeonwooNoh/DeconvNet/master/model/FCN/fcn-8s-pascal-deploy.prototxt",
  424. "format": "Caffe v1",
  425. "link": "https://github.com/HyeonwooNoh/DeconvNet"
  426. },
  427. {
  428. "type": "caffe",
  429. "target": "feat_ext_C3D_examples_imagenet_alexnet_train.prototxt",
  430. "source": "https://github.com/lutzroeder/netron/files/5534696/feat_ext_C3D_examples_imagenet_alexnet_train.prototxt.zip[feat_ext_C3D_examples_imagenet_alexnet_train.prototxt]",
  431. "format": "Caffe v1",
  432. "link": "https://github.com/lutzroeder/netron/issues/276"
  433. },
  434. {
  435. "type": "caffe",
  436. "target": "googlenet.prototxt",
  437. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/googlenet.prototxt",
  438. "format": "Caffe v2",
  439. "link": "https://github.com/cwlacewe/netscope"
  440. },
  441. {
  442. "type": "caffe",
  443. "target": "inceptionv3.prototxt",
  444. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/inceptionv3.prototxt",
  445. "format": "Caffe v2",
  446. "link": "https://github.com/cwlacewe/netscope"
  447. },
  448. {
  449. "type": "caffe",
  450. "target": "inceptionv3_orig.prototxt",
  451. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/inceptionv3_orig.prototxt",
  452. "format": "Caffe v2",
  453. "link": "https://github.com/cwlacewe/netscope"
  454. },
  455. {
  456. "type": "caffe",
  457. "target": "inceptionv4.prototxt",
  458. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/inceptionv4.prototxt",
  459. "format": "Caffe v2",
  460. "link": "https://github.com/cwlacewe/netscope"
  461. },
  462. {
  463. "type": "caffe",
  464. "target": "inceptionv4_resnet.prototxt",
  465. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/inceptionv4_resnet.prototxt",
  466. "format": "Caffe v2",
  467. "link": "https://github.com/cwlacewe/netscope"
  468. },
  469. {
  470. "type": "caffe",
  471. "target": "inceptionv4_resnet.prototxt",
  472. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/inceptionv4_resnet.prototxt",
  473. "format": "Caffe v2",
  474. "link": "https://github.com/cwlacewe/netscope"
  475. },
  476. {
  477. "type": "caffe",
  478. "target": "lenet_consolidated_solver.prototxt",
  479. "source": "https://raw.githubusercontent.com/BVLC/caffe/master/examples/mnist/lenet_consolidated_solver.prototxt",
  480. "format": "Caffe v1",
  481. "link": "https://github.com/BVLC/caffe/tree/master/examples/mnist"
  482. },
  483. {
  484. "type": "caffe",
  485. "target": "lenet.prototxt",
  486. "source": "https://raw.githubusercontent.com/BVLC/caffe/master/examples/mnist/lenet.prototxt",
  487. "format": "Caffe v2",
  488. "link": "https://github.com/BVLC/caffe/tree/master/examples/mnist"
  489. },
  490. {
  491. "type": "caffe",
  492. "target": "linreg.prototxt",
  493. "source": "https://raw.githubusercontent.com/BVLC/caffe/master/examples/pycaffe/linreg.prototxt",
  494. "format": "Caffe v2",
  495. "link": "https://github.com/BVLC/caffe/tree/master/examples/pycaffe"
  496. },
  497. {
  498. "type": "caffe",
  499. "target": "lstm.prototxt",
  500. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/lstm.prototxt",
  501. "format": "Caffe v2",
  502. "link": "https://github.com/cwlacewe/netscope"
  503. },
  504. {
  505. "type": "caffe",
  506. "target": "mobilenet.caffemodel",
  507. "source": "https://raw.githubusercontent.com/shicai/MobileNet-Caffe/master/mobilenet.caffemodel",
  508. "format": "Caffe v2",
  509. "link": "https://github.com/shicai/MobileNet-Caffe"
  510. },
  511. {
  512. "type": "caffe",
  513. "target": "mobilenet_deploy.prototxt",
  514. "source": "https://raw.githubusercontent.com/shicai/MobileNet-Caffe/master/mobilenet_deploy.prototxt",
  515. "format": "Caffe v2",
  516. "link": "https://github.com/shicai/MobileNet-Caffe"
  517. },
  518. {
  519. "type": "caffe",
  520. "target": "mobilenet_yolov3_lite_train.prototxt",
  521. "source": "https://raw.githubusercontent.com/eric612/Caffe-YOLOv3-Windows/master/models/yolov3/mobilenet_yolov3_lite_train.prototxt",
  522. "format": "Caffe v2",
  523. "link": "https://github.com/eric612/Caffe-YOLOv3-Windows"
  524. },
  525. {
  526. "type": "caffe",
  527. "target": "mobilenet_yolov3_solver.prototxt,mobilenet_yolov3_train.prototxt",
  528. "source": "https://raw.githubusercontent.com/eric612/Caffe-YOLOv3-Windows/master/models/yolov3/mobilenet_yolov3_solver.prototxt,https://raw.githubusercontent.com/eric612/Caffe-YOLOv3-Windows/master/models/yolov3/mobilenet_yolov3_train.prototxt",
  529. "format": "Caffe v2",
  530. "link": "https://github.com/eric612/Caffe-YOLOv3-Windows"
  531. },
  532. {
  533. "type": "caffe",
  534. "target": "mobilenet_v2.caffemodel",
  535. "source": "https://raw.githubusercontent.com/shicai/MobileNet-Caffe/master/mobilenet_v2.caffemodel",
  536. "format": "Caffe v2",
  537. "link": "https://github.com/shicai/MobileNet-Caffe"
  538. },
  539. {
  540. "type": "caffe",
  541. "target": "mobilenet_v2_deploy.prototxt",
  542. "source": "https://raw.githubusercontent.com/shicai/MobileNet-Caffe/master/mobilenet_v2_deploy.prototxt",
  543. "format": "Caffe v2",
  544. "link": "https://github.com/shicai/MobileNet-Caffe"
  545. },
  546. {
  547. "type": "caffe",
  548. "target": "MobileNetSSD_train.prototxt",
  549. "source": "https://github.com/lutzroeder/netron/files/3771164/MobileNetSSD_train.prototxt.txt",
  550. "format": "Caffe v2",
  551. "link": "https://github.com/lutzroeder/netron/issues/358"
  552. },
  553. {
  554. "type": "caffe",
  555. "target": "MobileNetSSD_train_template.prototxt",
  556. "source": "https://raw.githubusercontent.com/chuanqi305/MobileNet-SSD/master/template/MobileNetSSD_train_template.prototxt",
  557. "format": "Caffe v2",
  558. "link": "https://github.com/chuanqi305/MobileNet-SSD"
  559. },
  560. {
  561. "type": "caffe",
  562. "target": "mnist_siamese_solver.prototxt,mnist_siamese_train_test.prototxt",
  563. "source": "https://raw.githubusercontent.com/BVLC/caffe/master/examples/siamese/mnist_siamese_solver.prototxt,https://raw.githubusercontent.com/BVLC/caffe/master/examples/siamese/mnist_siamese_train_test.prototxt",
  564. "format": "Caffe v2",
  565. "link": "https://github.com/BVLC/caffe/tree/master/examples/siamese"
  566. },
  567. {
  568. "type": "caffe",
  569. "target": "netron_issue_306.prototxt",
  570. "source": "https://github.com/lutzroeder/netron/files/3440457/netron_issue_306.zip[netron_issue_306.pbtxt]",
  571. "format": "Caffe v2",
  572. "link": "https://github.com/lutzroeder/netron/issues/306"
  573. },
  574. {
  575. "type": "caffe",
  576. "target": "nin.prototxt",
  577. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/nin.prototxt",
  578. "format": "Caffe v1",
  579. "link": "https://github.com/cwlacewe/netscope"
  580. },
  581. {
  582. "type": "caffe",
  583. "target": "ORION_extended_trainval.prototxt",
  584. "source": "https://raw.githubusercontent.com/lmb-freiburg/orion/master/net_archs/modelnet10/ORION_extended_trainval.prototxt",
  585. "format": "Caffe v2",
  586. "link": "https://github.com/lmb-freiburg/orion"
  587. },
  588. {
  589. "type": "caffe",
  590. "target": "panoramic_object_detection_deploy_crop.prototxt.prototxt",
  591. "source": "https://raw.githubusercontent.com/gdlg/panoramic-object-detection/master/examples/inference/deploy_crop.prototxt",
  592. "format": "Caffe v2",
  593. "link": "https://github.com/gdlg/panoramic-object-detection/tree/master/examples/inference"
  594. },
  595. {
  596. "type": "caffe",
  597. "target": "ResNet-18-deploy.prototxt",
  598. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/ResNet-18-deploy.prototxt",
  599. "format": "Caffe v2",
  600. "link": "https://github.com/cwlacewe/netscope"
  601. },
  602. {
  603. "type": "caffe",
  604. "target": "ResNet-34.prototxt",
  605. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/ResNet-34.prototxt",
  606. "format": "Caffe v2",
  607. "link": "https://github.com/cwlacewe/netscope"
  608. },
  609. {
  610. "type": "caffe",
  611. "target": "resnet-50.prototxt",
  612. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/resnet-50.prototxt",
  613. "format": "Caffe v2",
  614. "link": "https://github.com/cwlacewe/netscope"
  615. },
  616. {
  617. "type": "caffe",
  618. "target": "ResNet-50-deploy.prototxt",
  619. "source": "https://deepdetect.com/models/resnet/ResNet-50-deploy.prototxt",
  620. "format": "Caffe v2",
  621. "link": "https://deepdetect.com/models/resnet/"
  622. },
  623. {
  624. "type": "caffe",
  625. "target": "ResNet-50_merged.qconv.winograd.cwl.prototxt",
  626. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/ResNet-50_merged.qconv.winograd.cwl.prototxt",
  627. "link": "https://github.com/cwlacewe/netscope"
  628. },
  629. {
  630. "type": "caffe",
  631. "target": "ResNet-152-deploy.prototxt",
  632. "source": "https://deepdetect.com/models/resnet/ResNet-152-deploy.prototxt",
  633. "format": "Caffe v2",
  634. "link": "https://deepdetect.com/models/resnet/"
  635. },
  636. {
  637. "type": "caffe",
  638. "target": "resnet-152.prototxt",
  639. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/resnet-152.prototxt",
  640. "format": "Caffe v2",
  641. "link": "https://github.com/cwlacewe/netscope"
  642. },
  643. {
  644. "type": "caffe",
  645. "target": "seq2seq_train_ep7_tar.prototxt",
  646. "source": "https://raw.githubusercontent.com/jasjeetIM/Seq2Seq/master/models/s2s/train_ep7_tar.prototxt",
  647. "format": "Caffe v2",
  648. "link": "https://github.com/jasjeetIM/Seq2Seq"
  649. },
  650. {
  651. "type": "caffe",
  652. "target": "se_resnet_50_v1_deploy.prototxt",
  653. "source": "https://raw.githubusercontent.com/shicai/SENet-Caffe/master/se_resnet_50_v1_deploy.prototxt",
  654. "format": "Caffe v2",
  655. "link": "https://github.com/shicai/SENet-Caffe"
  656. },
  657. {
  658. "type": "caffe",
  659. "target": "segnet_basic_inference.prototxt",
  660. "source": "https://raw.githubusercontent.com/alexgkendall/SegNet-Tutorial/master/Models/segnet_basic_inference.prototxt",
  661. "format": "Caffe v2",
  662. "link": "https://github.com/alexgkendall/SegNet-Tutorial"
  663. },
  664. {
  665. "type": "caffe",
  666. "target": "shufflenet_1x_g3_train.prototxt",
  667. "source": "https://raw.githubusercontent.com/Ewenwan/ShuffleNet-2/master/shufflenet_1x_g3_train.prototxt",
  668. "format": "Caffe v2",
  669. "link": "https://github.com/Ewenwan/ShuffleNet-2"
  670. },
  671. {
  672. "type": "caffe",
  673. "target": "squeezenet_v1.1.caffemodel",
  674. "source": "https://raw.githubusercontent.com/DeepScale/SqueezeNet/master/SqueezeNet_v1.1/squeezenet_v1.1.caffemodel",
  675. "format": "Caffe v2",
  676. "link": "https://github.com/DeepScale/SqueezeNet"
  677. },
  678. {
  679. "type": "caffe",
  680. "target": "sq11b2a_e3.prototxt",
  681. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/sq11b2a_e3.prototxt",
  682. "format": "Caffe v2",
  683. "link": "https://github.com/cwlacewe/netscope"
  684. },
  685. {
  686. "type": "caffe",
  687. "target": "squeezenet.prototxt",
  688. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/squeezenet.prototxt",
  689. "format": "Caffe v2",
  690. "link": "https://github.com/cwlacewe/netscope"
  691. },
  692. {
  693. "type": "caffe",
  694. "target": "squeezenet_v11.prototxt",
  695. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/squeezenet_v11.prototxt",
  696. "format": "Caffe v2",
  697. "link": "https://github.com/cwlacewe/netscope"
  698. },
  699. {
  700. "type": "caffe",
  701. "target": "ssd_16nodes_512_batch_train.prototxt",
  702. "source": "https://raw.githubusercontent.com/intel/caffe/master/models/intel_optimized_models/multinode/ssd_16nodes_512_batch/train.prototxt",
  703. "format": "Caffe v2",
  704. "link": "https://github.com/intel/caffe"
  705. },
  706. {
  707. "type": "caffe",
  708. "target": "SSD300.prototxt",
  709. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/SSD300.prototxt",
  710. "format": "Caffe v2",
  711. "link": "https://github.com/cwlacewe/netscope"
  712. },
  713. {
  714. "type": "caffe",
  715. "target": "tsn_bn_inception_flow_deploy.prototxt",
  716. "source": "https://raw.githubusercontent.com/yjxiong/temporal-segment-networks/master/models/hmdb51/tsn_bn_inception_flow_deploy.prototxt",
  717. "format": "Caffe v2",
  718. "link": "https://github.com/yjxiong/temporal-segment-networks"
  719. },
  720. {
  721. "type": "caffe",
  722. "target": "vanillaCNN.caffemodel",
  723. "source": "https://raw.githubusercontent.com/ishay2b/VanillaCNN/master/ZOO/vanillaCNN.caffemodel",
  724. "format": "Caffe v2",
  725. "link": "https://gist.github.com/ishay2b/58248e5f3c3bf575ac40"
  726. },
  727. {
  728. "type": "caffe",
  729. "target": "vgg-16.prototxt",
  730. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/vgg-16.prototxt",
  731. "format": "Caffe v1",
  732. "link": "https://github.com/cwlacewe/netscope"
  733. },
  734. {
  735. "type": "caffe",
  736. "target": "VGG_CNN_M_2048_deploy.prototxt",
  737. "source": "https://raw.githubusercontent.com/natanielruiz/net-archive/master/vgg_cnn_m_2048/VGG_CNN_M_2048_deploy.prototxt",
  738. "format": "Caffe v1",
  739. "link": "https://github.com/natanielruiz/net-archive"
  740. },
  741. {
  742. "type": "caffe",
  743. "target": "VGG_VOC0712Plus_SSD_300x300_ft_deploy.prototxt",
  744. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/VGG_VOC0712Plus_SSD_300x300_ft_deploy.prototxt",
  745. "format": "Caffe v2",
  746. "link": "https://github.com/cwlacewe/netscope"
  747. },
  748. {
  749. "type": "caffe",
  750. "target": "YOLO.prototxt",
  751. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/YOLO.prototxt",
  752. "format": "Caffe v2",
  753. "link": "https://github.com/cwlacewe/netscope"
  754. },
  755. {
  756. "type": "caffe",
  757. "target": "yolov3_gen.prototext.txt",
  758. "source": "https://github.com/lutzroeder/netron/files/5615031/yolov3_gen.prototext.txt.zip[yolov3_gen.prototext.txt]",
  759. "format": "Caffe v2",
  760. "link": "https://github.com/lutzroeder/netron/issues/276"
  761. },
  762. {
  763. "type": "caffe",
  764. "target": "yolov3-tiny.prototxt",
  765. "source": "https://raw.githubusercontent.com/eric612/MobileNet-YOLO/master/models/darknet_yolov3/yolov3-tiny.prototxt",
  766. "format": "Caffe v2",
  767. "link": "https://github.com/eric612/MobileNet-YOLO/tree/master/models/darknet_yolov3"
  768. },
  769. {
  770. "type": "caffe",
  771. "target": "yolov3-spp.prototxt",
  772. "source": "https://raw.githubusercontent.com/eric612/MobileNet-YOLO/master/models/darknet_yolov3/yolov3-spp.prototxt",
  773. "format": "Caffe v2",
  774. "link": "https://github.com/eric612/MobileNet-YOLO/tree/master/models/darknet_yolov3"
  775. },
  776. {
  777. "type": "caffe",
  778. "target": "zynqnet.prototxt",
  779. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/zynqnet.prototxt",
  780. "format": "Caffe v2",
  781. "link": "https://github.com/cwlacewe/netscope"
  782. },
  783. {
  784. "type": "caffe2",
  785. "target": "bvlc_alexnet/predict_net.pb,bvlc_alexnet/init_net.pb",
  786. "source": "https://s3.amazonaws.com/download.caffe2.ai/models/bvlc_alexnet/predict_net.pb,https://s3.amazonaws.com/download.caffe2.ai/models/bvlc_alexnet/init_net.pb",
  787. "format": "Caffe2",
  788. "link": "https://github.com/caffe2/models"
  789. },
  790. {
  791. "type": "caffe2",
  792. "target": "bvlc_alexnet/init_net.pb",
  793. "source": "https://s3.amazonaws.com/download.caffe2.ai/models/bvlc_alexnet/init_net.pb",
  794. "format": "Caffe2",
  795. "link": "https://github.com/caffe2/models"
  796. },
  797. {
  798. "type": "caffe2",
  799. "target": "bvlc_alexnet/predict_net.pbtxt,bvlc_alexnet/init_net.pb",
  800. "source": "https://raw.githubusercontent.com/caffe2/models/master/bvlc_alexnet/predict_net.pbtxt,https://s3.amazonaws.com/download.caffe2.ai/models/bvlc_alexnet/init_net.pb",
  801. "format": "Caffe2",
  802. "link": "https://github.com/caffe2/models"
  803. },
  804. {
  805. "type": "caffe2",
  806. "target": "bvlc_googlenet/predict_net.pb,bvlc_googlenet/init_net.pb",
  807. "source": "https://s3.amazonaws.com/download.caffe2.ai/models/bvlc_googlenet/predict_net.pb,https://s3.amazonaws.com/download.caffe2.ai/models/bvlc_googlenet/init_net.pb",
  808. "format": "Caffe2",
  809. "link": "https://github.com/caffe2/models"
  810. },
  811. {
  812. "type": "caffe2",
  813. "target": "densenet121/predict_net.pb,densenet121/init_net.pb",
  814. "source": "https://s3.amazonaws.com/download.caffe2.ai/models/densenet121/predict_net.pb,https://s3.amazonaws.com/download.caffe2.ai/models/densenet121/init_net.pb",
  815. "format": "Caffe2",
  816. "link": "https://github.com/caffe2/models"
  817. },
  818. {
  819. "type": "caffe2",
  820. "target": "FBNet-A-int8/model.pbtxt,FBNet-A-int8/model_init.pb",
  821. "source": "https://dl.fbaipublicfiles.com/fbnet/models/FBNet_caffe2.zip[FBNet/FBNet-A/int8/model.pbtxt,FBNet/FBNet-A/int8/model_init.pb]",
  822. "format": "Caffe2",
  823. "link": "https://github.com/facebookresearch/mobile-vision"
  824. },
  825. {
  826. "type": "caffe2",
  827. "target": "generalized_rcnn/net.pbtxt",
  828. "source": "https://github.com/lutzroeder/netron/files/2801714/net.pbtxt.txt",
  829. "format": "Caffe2",
  830. "action": "skip-render",
  831. "link": "https://github.com/lutzroeder/netron/issues/223"
  832. },
  833. {
  834. "type": "caffe2",
  835. "target": "generalized_rcnn/predict_net.pbtxt",
  836. "source": "https://github.com/lutzroeder/netron/files/2802044/predict_net.pbtxt.txt",
  837. "format": "Caffe2",
  838. "link": "https://github.com/lutzroeder/netron/issues/223"
  839. },
  840. {
  841. "type": "caffe2",
  842. "target": "inception_v2/predict_net.pb,inception_v2/init_net.pb",
  843. "source": "https://s3.amazonaws.com/download.caffe2.ai/models/inception_v2/predict_net.pb,https://s3.amazonaws.com/download.caffe2.ai/models/inception_v2/init_net.pb",
  844. "format": "Caffe2",
  845. "link": "https://github.com/caffe2/models"
  846. },
  847. {
  848. "type": "caffe2",
  849. "target": "lenet/predict_net.pbtxt,lenet/init_net.pbtxt",
  850. "source": "https://raw.githubusercontent.com/jolibrain/deepdetect/master/templates/caffe2/lenet/predict_net.pbtxt,https://raw.githubusercontent.com/jolibrain/deepdetect/master/templates/caffe2/lenet/init_net.pbtxt",
  851. "format": "Caffe2",
  852. "link": "https://github.com/jolibrain/deepdetect/tree/master/templates/caffe2"
  853. },
  854. {
  855. "type": "caffe2",
  856. "target": "mask_rcnn_2go/model.pbtxt",
  857. "source": "https://raw.githubusercontent.com/caffe2/models/master/mask_rcnn_2go/model/fp32/model.pbtxt",
  858. "format": "Caffe2",
  859. "link": "https://github.com/lutzroeder/netron/issues/168"
  860. },
  861. {
  862. "type": "caffe2",
  863. "target": "mobilenet_v2/predict_net.pb,mobilenet_v2/init_net.pb",
  864. "source": "https://s3.amazonaws.com/download.caffe2.ai/models/mobilenet_v2/predict_net.pb,https://s3.amazonaws.com/download.caffe2.ai/models/mobilenet_v2/init_net.pb",
  865. "format": "Caffe2",
  866. "link": "https://github.com/caffe2/models"
  867. },
  868. {
  869. "type": "caffe2",
  870. "target": "mobilenet_v2/predict_net.pb",
  871. "source": "https://s3.amazonaws.com/download.caffe2.ai/models/mobilenet_v2/predict_net.pb",
  872. "format": "Caffe2",
  873. "link": "https://github.com/caffe2/models"
  874. },
  875. {
  876. "type": "caffe2",
  877. "target": "mobilenet_v2_quantized/predict_net.pb,mobilenet_v2_quantized/init_net.pb",
  878. "source": "https://s3.amazonaws.com/download.caffe2.ai/models/mobilenet_v2_1.0_224_quant/predict_net.pb,https://s3.amazonaws.com/download.caffe2.ai/models/mobilenet_v2_1.0_224_quant/init_net.pb",
  879. "format": "Caffe2",
  880. "link": "https://github.com/caffe2/models"
  881. },
  882. {
  883. "type": "caffe2",
  884. "target": "resnet50_quantized/resnet50_quantized_predict_net.pb,resnet50_quantized/resnet50_quantized_init_net.pb",
  885. "source": "https://s3.amazonaws.com/download.caffe2.ai/models/resnet50_quantized/resnet50_quantized_predict_net.pb,https://s3.amazonaws.com/download.caffe2.ai/models/resnet50_quantized/resnet50_quantized_init_net.pb",
  886. "format": "Caffe2",
  887. "link": "https://github.com/caffe2/models/tree/master/resnet50_quantized"
  888. },
  889. {
  890. "type": "caffe2",
  891. "target": "onnx_while/predict_net.pb,onnx_while/inits_net.pb",
  892. "source": "https://github.com/lutzroeder/netron/files/2522635/onnxwhile.zip[predict_net.pb,init_net.pb]",
  893. "format": "Caffe2",
  894. "link": "https://github.com/lutzroeder/netron/issues/168"
  895. },
  896. {
  897. "type": "caffe2",
  898. "target": "resnet50/predict_net.pb,resnet50/init_net.pb",
  899. "source": "https://s3.amazonaws.com/download.caffe2.ai/models/resnet50/predict_net.pb,https://s3.amazonaws.com/download.caffe2.ai/models/resnet50/init_net.pb",
  900. "format": "Caffe2",
  901. "link": "https://github.com/caffe2/models"
  902. },
  903. {
  904. "type": "caffe2",
  905. "target": "squeezenet/squeezenet.pb,squeezenet/init_net.pb",
  906. "source": "https://s3.amazonaws.com/download.caffe2.ai/models/squeezenet/predict_net.pb,https://s3.amazonaws.com/download.caffe2.ai/models/squeezenet/init_net.pb",
  907. "format": "Caffe2",
  908. "link": "https://github.com/caffe2/models"
  909. },
  910. {
  911. "type": "cambricon",
  912. "target": "deepsort_4c4b_bgr_270_v140.cambricon",
  913. "source": "https://github.com/lutzroeder/netron/files/8783170/deepsort_4c4b_bgr_270_v140.cambricon.zip[deepsort_4c4b_bgr_270_v140.cambricon]",
  914. "format": "Cambricon",
  915. "error": "File contains undocumented Cambricon data in 'deepsort_4c4b_bgr_270_v140.cambricon'.",
  916. "link": "https://github.com/lutzroeder/netron/issues/917"
  917. },
  918. {
  919. "type": "cambricon",
  920. "target": "SR_face_x3_530x530.cambricon",
  921. "source": "https://github.com/lutzroeder/netron/files/8783172/SR_face_x3_530x530.cambricon.zip[SR_face_x3_530x530.cambricon]",
  922. "format": "Cambricon",
  923. "error": "File contains undocumented Cambricon data in 'SR_face_x3_530x530.cambricon'.",
  924. "link": "https://github.com/lutzroeder/netron/issues/917"
  925. },
  926. {
  927. "type": "circle",
  928. "target": "ArgMax_001.circle",
  929. "source": "https://github.com/lutzroeder/netron/files/7489768/circle_model_samples.zip[ArgMax_001.circle]",
  930. "format": "Circle v0",
  931. "link": "https://github.com/lutzroeder/netron/issues/790"
  932. },
  933. {
  934. "type": "circle",
  935. "target": "FullyConnected_002.circle",
  936. "source": "https://github.com/lutzroeder/netron/files/7489768/circle_model_samples.zip[FullyConnected_002.circle]",
  937. "format": "Circle v0",
  938. "link": "https://github.com/lutzroeder/netron/issues/790"
  939. },
  940. {
  941. "type": "cntk",
  942. "target": "01_OneHidden.dnn",
  943. "source": "https://raw.githubusercontent.com/Microsoft/CNTK/master/Tests/UnitTests/NetworkTests/Models/01_OneHidden.dnn",
  944. "format": "CNTK v1.18",
  945. "link": "https://github.com/Microsoft/CNTK"
  946. },
  947. {
  948. "type": "cntk",
  949. "target": "cifar10.pretrained.cmf",
  950. "source": "https://raw.githubusercontent.com/Microsoft/CNTK/master/Tutorials/ImageHandsOn/cifar10.pretrained.cmf",
  951. "format": "CNTK v1.14",
  952. "link": "https://github.com/Microsoft/CNTK"
  953. },
  954. {
  955. "type": "cntk",
  956. "target": "cifar10.ResNet.cmf",
  957. "source": "https://raw.githubusercontent.com/Microsoft/CNTK/master/Tutorials/ImageHandsOn/cifar10.ResNet.cmf",
  958. "format": "CNTK v1.10",
  959. "link": "https://github.com/Microsoft/CNTK"
  960. },
  961. {
  962. "type": "cntk",
  963. "target": "cntkSpeechFF.dnn",
  964. "source": "https://github.com/lutzroeder/netron/files/3243442/cntkSpeechFF.dnn.zip[cntkSpeechFF.dnn]",
  965. "format": "CNTK v1.31",
  966. "link": "https://github.com/lutzroeder/netron/issues/153"
  967. },
  968. {
  969. "type": "cntk",
  970. "target": "ResNet_18.model",
  971. "source": "https://www.cntk.ai/Models/ResNet/ResNet_18.model",
  972. "format": "CNTK v1.17"
  973. },
  974. {
  975. "type": "cntk",
  976. "target": "ResNet20_CIFAR10_DataAug.dnn",
  977. "source": "https://raw.githubusercontent.com/Microsoft/CNTK/master/Tests/UnitTests/NetworkTests/Models/ResNet20_CIFAR10_DataAug.dnn",
  978. "format": "CNTK v1.18",
  979. "link": "https://github.com/Microsoft/CNTK"
  980. },
  981. {
  982. "type": "cntk",
  983. "target": "slu.forward.backward.cmf",
  984. "source": "https://raw.githubusercontent.com/Microsoft/CNTK/master/Tutorials/SLUHandsOn/slu.forward.backward.cmf",
  985. "format": "CNTK v1.14",
  986. "link": "https://github.com/Microsoft/CNTK"
  987. },
  988. {
  989. "type": "cntk",
  990. "target": "slu.forward.cmf",
  991. "source": "https://raw.githubusercontent.com/Microsoft/CNTK/master/Tutorials/SLUHandsOn/slu.forward.cmf",
  992. "format": "CNTK v1.14",
  993. "link": "https://github.com/Microsoft/CNTK"
  994. },
  995. {
  996. "type": "cntk",
  997. "target": "slu.forward.nobn.cmf",
  998. "source": "https://raw.githubusercontent.com/Microsoft/CNTK/master/Tutorials/SLUHandsOn/slu.forward.nobn.cmf",
  999. "format": "CNTK v1.14",
  1000. "link": "https://github.com/Microsoft/CNTK"
  1001. },
  1002. {
  1003. "type": "cntk",
  1004. "target": "slu.forward.lookahead.cmf",
  1005. "source": "https://raw.githubusercontent.com/Microsoft/CNTK/master/Tutorials/SLUHandsOn/slu.forward.lookahead.cmf",
  1006. "format": "CNTK v1.14",
  1007. "link": "https://github.com/Microsoft/CNTK"
  1008. },
  1009. {
  1010. "type": "cntk",
  1011. "target": "Bean.cntk",
  1012. "source": "https://media.githubusercontent.com/media/Microsoft/ELL-models/master/models/ILSVRC2012/Bean/Bean.cntk.zip[Bean.cntk]",
  1013. "format": "CNTK v2",
  1014. "link": "https://github.com/Microsoft/ELL-models"
  1015. },
  1016. {
  1017. "type": "cntk",
  1018. "target": "BNInception_ImageNet_Caffe.model",
  1019. "source": "https://www.cntk.ai/Models/Caffe_Converted/BNInception_ImageNet_Caffe.model",
  1020. "format": "CNTK v2",
  1021. "link": "https://github.com/Microsoft/CNTK/blob/master/PretrainedModels/download_model.py"
  1022. },
  1023. {
  1024. "type": "cntk",
  1025. "target": "d_I160x160x3CMCMCMCMCMCMC1AS.model",
  1026. "source": "https://media.githubusercontent.com/media/Microsoft/ELL-models/master/models/ILSVRC2012/d_I160x160x3CMCMCMCMCMCMC1AS/d_I160x160x3CMCMCMCMCMCMC1AS.cntk.zip[d_I160x160x3CMCMCMCMCMCMC1AS.cntk]",
  1027. "format": "CNTK v2",
  1028. "link": "https://github.com/Microsoft/ELL-models/tree/master/models/ILSVRC2012/d_I160x160x3CMCMCMCMCMCMC1AS"
  1029. },
  1030. {
  1031. "type": "cntk",
  1032. "target": "DRNN.model",
  1033. "source": "https://www.cntk.ai/Models/SuperResolution/DRNN.model",
  1034. "format": "CNTK v2",
  1035. "link": "https://cntk.ai/pythondocs/CNTK_302A_Evaluation_of_Pretrained_Super-resolution_Models.html"
  1036. },
  1037. {
  1038. "type": "cntk",
  1039. "target": "initial_policy_network.dnn",
  1040. "source": "https://raw.githubusercontent.com/Microsoft/CNTK/master/bindings/python/cntk/contrib/deeprl/tests/data/initial_policy_network.dnn",
  1041. "format": "CNTK v2",
  1042. "link": "https://github.com/Microsoft/CNTK"
  1043. },
  1044. {
  1045. "type": "cntk",
  1046. "target": "InceptionV3_ImageNet_CNTK.model",
  1047. "source": "https://www.cntk.ai/Models/CNTK_Pretrained/InceptionV3_ImageNet_CNTK.model",
  1048. "format": "CNTK v2",
  1049. "link": "https://github.com/Microsoft/MMdnn/blob/master/mmdnn/conversion/examples/cntk/extract_model.py"
  1050. },
  1051. {
  1052. "type": "cntk",
  1053. "target": "ResNet18_ImageNet_CNTK.model",
  1054. "source": "https://www.cntk.ai/Models/CNTK_Pretrained/ResNet18_ImageNet_CNTK.model",
  1055. "format": "CNTK v2",
  1056. "link": "https://github.com/Microsoft/CNTK/blob/master/PretrainedModels/Image.md"
  1057. },
  1058. {
  1059. "type": "cntk",
  1060. "target": "ResNet20_CIFAR10_CNTK.model",
  1061. "source": "https://www.cntk.ai/Models/CNTK_Pretrained/ResNet20_CIFAR10_CNTK.model",
  1062. "format": "CNTK v2",
  1063. "link": "https://github.com/Microsoft/CNTK/blob/master/PretrainedModels/Image.md"
  1064. },
  1065. {
  1066. "type": "cntk",
  1067. "target": "ResNet110_CIFAR10_CNTK.model",
  1068. "source": "https://www.cntk.ai/Models/CNTK_Pretrained/ResNet110_CIFAR10_CNTK.model",
  1069. "format": "CNTK v2",
  1070. "link": "https://github.com/Microsoft/CNTK/blob/master/PretrainedModels/Image.md"
  1071. },
  1072. {
  1073. "type": "cntk",
  1074. "target": "SRGAN.model",
  1075. "source": "https://www.cntk.ai/Models/SuperResolution/SRGAN.model",
  1076. "format": "CNTK v2",
  1077. "link": "https://cntk.ai/pythondocs/CNTK_302A_Evaluation_of_Pretrained_Super-resolution_Models.html"
  1078. },
  1079. {
  1080. "type": "cntk",
  1081. "target": "tutorial_103b_mnist.model",
  1082. "source": "https://github.com/lutzroeder/netron/files/2591620/tutorial_models.zip[tutorial_103b_mnist.model]",
  1083. "format": "CNTK v2",
  1084. "link": "https://github.com/lutzroeder/netron/issues/153"
  1085. },
  1086. {
  1087. "type": "cntk",
  1088. "target": "tutorial_103c_mnist.model",
  1089. "source": "https://github.com/lutzroeder/netron/files/2591620/tutorial_models.zip[tutorial_103c_mnist.model]",
  1090. "format": "CNTK v2",
  1091. "link": "https://github.com/lutzroeder/netron/issues/153"
  1092. },
  1093. {
  1094. "type": "cntk",
  1095. "target": "tutorial_103d_mnist.model",
  1096. "source": "https://github.com/lutzroeder/netron/files/2591620/tutorial_models.zip[tutorial_103d_mnist.model]",
  1097. "format": "CNTK v2",
  1098. "link": "https://github.com/lutzroeder/netron/issues/153"
  1099. },
  1100. {
  1101. "type": "cntk",
  1102. "target": "tutorial_106a_lstm.model",
  1103. "source": "https://github.com/lutzroeder/netron/files/2591620/tutorial_models.zip[tutorial_106a_lstm.model]",
  1104. "format": "CNTK v2",
  1105. "link": "https://github.com/lutzroeder/netron/issues/153"
  1106. },
  1107. {
  1108. "type": "cntk",
  1109. "target": "VDSR.model",
  1110. "source": "https://www.cntk.ai/Models/SuperResolution/VDSR.model",
  1111. "format": "CNTK v2",
  1112. "link": "https://cntk.ai/pythondocs/CNTK_302A_Evaluation_of_Pretrained_Super-resolution_Models.html"
  1113. },
  1114. {
  1115. "type": "coreml",
  1116. "target": "BERTSQUADFP16.mlmodel",
  1117. "source": "https://docs-assets.developer.apple.com/coreml/models/Text/QuestionAnswering/BERT_SQUAD/BERTSQUADFP16.mlmodel",
  1118. "format": "Core ML v4",
  1119. "link": "https://developer.apple.com/machine-learning/models"
  1120. },
  1121. {
  1122. "type": "coreml",
  1123. "target": "DocumentClassification.mlmodel",
  1124. "source": "https://raw.githubusercontent.com/toddkramer/DocumentClassifier/master/Sources/DocumentClassification.mlmodel",
  1125. "format": "Core ML v1",
  1126. "link": "https://github.com/toddkramer/DocumentClassifier"
  1127. },
  1128. {
  1129. "type": "coreml",
  1130. "target": "DeepLabV3.pb",
  1131. "source": "https://docs-assets.developer.apple.com/coreml/models/Image/ImageSegmentation/DeepLabV3/DeepLabV3.mlmodel",
  1132. "format": "Core ML v3",
  1133. "link": "https://developer.apple.com/machine-learning/models"
  1134. },
  1135. {
  1136. "type": "coreml",
  1137. "target": "EfficientNetB0.mlpackage,EfficientNetB0.mlpackage/Manifest.json,EfficientNetB0.mlpackage/Data/com.apple.CoreML/model.mlmodel,EfficientNetB0.mlpackage/Data/com.apple.CoreML/weights/weight.bin",
  1138. "source": "https://github.com/lutzroeder/netron/files/6636195/EfficientNetB0.mlpackage.zip[.,EfficientNetB0.mlpackage/Manifest.json,EfficientNetB0.mlpackage/Data/com.apple.CoreML/model.mlmodel,EfficientNetB0.mlpackage/Data/com.apple.CoreML/weights/weight.bin]",
  1139. "format": "Core ML Package v6",
  1140. "link": "https://github.com/lutzroeder/netron/issues/751"
  1141. },
  1142. {
  1143. "type": "coreml",
  1144. "target": "EfficientNetB0.mlpackage.zip",
  1145. "source": "https://github.com/lutzroeder/netron/files/6636195/EfficientNetB0.mlpackage.zip",
  1146. "format": "Core ML Package v6",
  1147. "link": "https://github.com/lutzroeder/netron/issues/751"
  1148. },
  1149. {
  1150. "type": "coreml",
  1151. "target": "EnvSceneClassification.mlmodel",
  1152. "source": "https://raw.githubusercontent.com/anujdutt9/iOS-Audio-Classification/cdf5b72dc351a83168369d0afbd0eeba9ecae448/RealTimeSoundClassifier/RealTimeSoundClassifier/EnvSceneClassification.mlmodel",
  1153. "format": "Core ML v3",
  1154. "link": "https://github.com/anujdutt9/iOS-Audio-Classification"
  1155. },
  1156. {
  1157. "type": "coreml",
  1158. "target": "Exermote.mlmodel",
  1159. "source": "https://raw.githubusercontent.com/Lausbert/Exermote/master/ExermoteInference/ExermoteCoreML/ExermoteCoreML/Model/Exermote.mlmodel",
  1160. "format": "Core ML v1"
  1161. },
  1162. {
  1163. "type": "coreml",
  1164. "target": "faces_model.mlmodel",
  1165. "source": "https://github.com/NovaTecConsulting/FaceRecognition-in-ARKit/files/1526806/faces_model.mlmodel.zip[faces_model.mlmodel]",
  1166. "format": "Core ML v1",
  1167. "link": "https://github.com/NovaTecConsulting/FaceRecognition-in-ARKit/issues/3"
  1168. },
  1169. {
  1170. "type": "coreml",
  1171. "target": "float16.mlmodel",
  1172. "source": "https://github.com/lutzroeder/netron/files/2382815/model.zip[model.mlmodel]",
  1173. "format": "Core ML v2",
  1174. "link": "https://github.com/lutzroeder/netron/issues/149"
  1175. },
  1176. {
  1177. "type": "coreml",
  1178. "target": "FNS-Candy.mlmodel",
  1179. "source": "https://raw.githubusercontent.com/ileafsolutions/StyleArt/master/StyleArt/CoreMLModels/FNS-Candy.mlmodel",
  1180. "link": "https://github.com/ileafsolutions/StyleArt"
  1181. },
  1182. {
  1183. "type": "coreml",
  1184. "target": "food.mlmodel",
  1185. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food.mlmodel",
  1186. "format": "Core ML v1",
  1187. "link": "https://github.com/kingreza/quantization"
  1188. },
  1189. {
  1190. "type": "coreml",
  1191. "target": "food_kmeans_1.mlmodel",
  1192. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_kmeans_1.mlmodel",
  1193. "format": "Core ML v3",
  1194. "link": "https://github.com/kingreza/quantization"
  1195. },
  1196. {
  1197. "type": "coreml",
  1198. "target": "food_kmeans_2.mlmodel",
  1199. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_kmeans_2.mlmodel",
  1200. "format": "Core ML v3",
  1201. "link": "https://github.com/kingreza/quantization"
  1202. },
  1203. {
  1204. "type": "coreml",
  1205. "target": "food_kmeans_3.mlmodel",
  1206. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_kmeans_3.mlmodel",
  1207. "format": "Core ML v3",
  1208. "link": "https://github.com/kingreza/quantization"
  1209. },
  1210. {
  1211. "type": "coreml",
  1212. "target": "food_kmeans_4.mlmodel",
  1213. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_kmeans_4.mlmodel",
  1214. "format": "Core ML v3",
  1215. "link": "https://github.com/kingreza/quantization"
  1216. },
  1217. {
  1218. "type": "coreml",
  1219. "target": "food_kmeans_5.mlmodel",
  1220. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_kmeans_5.mlmodel",
  1221. "format": "Core ML v3",
  1222. "link": "https://github.com/kingreza/quantization"
  1223. },
  1224. {
  1225. "type": "coreml",
  1226. "target": "food_kmeans_6.mlmodel",
  1227. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_kmeans_6.mlmodel",
  1228. "format": "Core ML v3",
  1229. "link": "https://github.com/kingreza/quantization"
  1230. },
  1231. {
  1232. "type": "coreml",
  1233. "target": "food_kmeans_7.mlmodel",
  1234. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_kmeans_7.mlmodel",
  1235. "format": "Core ML v3",
  1236. "link": "https://github.com/kingreza/quantization"
  1237. },
  1238. {
  1239. "type": "coreml",
  1240. "target": "food_kmeans_8.mlmodel",
  1241. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_kmeans_8.mlmodel",
  1242. "format": "Core ML v3",
  1243. "link": "https://github.com/kingreza/quantization"
  1244. },
  1245. {
  1246. "type": "coreml",
  1247. "target": "food_kmeans_16.mlmodel",
  1248. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_kmeans_16.mlmodel",
  1249. "format": "Core ML v2",
  1250. "link": "https://github.com/kingreza/quantization"
  1251. },
  1252. {
  1253. "type": "coreml",
  1254. "target": "food_linear_1.mlmodel",
  1255. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_1.mlmodel",
  1256. "format": "Core ML v3",
  1257. "link": "https://github.com/kingreza/quantization"
  1258. },
  1259. {
  1260. "type": "coreml",
  1261. "target": "food_linear_2.mlmodel",
  1262. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_2.mlmodel",
  1263. "format": "Core ML v3",
  1264. "link": "https://github.com/kingreza/quantization"
  1265. },
  1266. {
  1267. "type": "coreml",
  1268. "target": "food_linear_3.mlmodel",
  1269. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_3.mlmodel",
  1270. "format": "Core ML v3",
  1271. "link": "https://github.com/kingreza/quantization"
  1272. },
  1273. {
  1274. "type": "coreml",
  1275. "target": "food_linear_4.mlmodel",
  1276. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_4.mlmodel",
  1277. "format": "Core ML v3",
  1278. "link": "https://github.com/kingreza/quantization"
  1279. },
  1280. {
  1281. "type": "coreml",
  1282. "target": "food_linear_5.mlmodel",
  1283. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_5.mlmodel",
  1284. "format": "Core ML v3",
  1285. "link": "https://github.com/kingreza/quantization"
  1286. },
  1287. {
  1288. "type": "coreml",
  1289. "target": "food_linear_6.mlmodel",
  1290. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_6.mlmodel",
  1291. "format": "Core ML v3",
  1292. "link": "https://github.com/kingreza/quantization"
  1293. },
  1294. {
  1295. "type": "coreml",
  1296. "target": "food_linear_7.mlmodel",
  1297. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_7.mlmodel",
  1298. "format": "Core ML v3",
  1299. "link": "https://github.com/kingreza/quantization"
  1300. },
  1301. {
  1302. "type": "coreml",
  1303. "target": "food_linear_8.mlmodel",
  1304. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_8.mlmodel",
  1305. "format": "Core ML v3",
  1306. "link": "https://github.com/kingreza/quantization"
  1307. },
  1308. {
  1309. "type": "coreml",
  1310. "target": "food_linear_16.mlmodel",
  1311. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_16.mlmodel",
  1312. "format": "Core ML v2",
  1313. "link": "https://github.com/kingreza/quantization"
  1314. },
  1315. {
  1316. "type": "coreml",
  1317. "target": "food_linear_lut_1.mlmodel",
  1318. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_lut_1.mlmodel",
  1319. "format": "Core ML v3",
  1320. "link": "https://github.com/kingreza/quantization"
  1321. },
  1322. {
  1323. "type": "coreml",
  1324. "target": "food_linear_lut_2.mlmodel",
  1325. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_lut_2.mlmodel",
  1326. "format": "Core ML v3",
  1327. "link": "https://github.com/kingreza/quantization"
  1328. },
  1329. {
  1330. "type": "coreml",
  1331. "target": "food_linear_lut_3.mlmodel",
  1332. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_lut_3.mlmodel",
  1333. "format": "Core ML v3",
  1334. "link": "https://github.com/kingreza/quantization"
  1335. },
  1336. {
  1337. "type": "coreml",
  1338. "target": "food_linear_lut_4.mlmodel",
  1339. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_lut_4.mlmodel",
  1340. "format": "Core ML v3",
  1341. "link": "https://github.com/kingreza/quantization"
  1342. },
  1343. {
  1344. "type": "coreml",
  1345. "target": "food_linear_lut_5.mlmodel",
  1346. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_lut_5.mlmodel",
  1347. "format": "Core ML v3",
  1348. "link": "https://github.com/kingreza/quantization"
  1349. },
  1350. {
  1351. "type": "coreml",
  1352. "target": "food_linear_lut_6.mlmodel",
  1353. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_lut_6.mlmodel",
  1354. "format": "Core ML v3",
  1355. "link": "https://github.com/kingreza/quantization"
  1356. },
  1357. {
  1358. "type": "coreml",
  1359. "target": "food_linear_lut_7.mlmodel",
  1360. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_lut_7.mlmodel",
  1361. "format": "Core ML v3",
  1362. "link": "https://github.com/kingreza/quantization"
  1363. },
  1364. {
  1365. "type": "coreml",
  1366. "target": "food_linear_lut_8.mlmodel",
  1367. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_lut_8.mlmodel",
  1368. "format": "Core ML v3",
  1369. "link": "https://github.com/kingreza/quantization"
  1370. },
  1371. {
  1372. "type": "coreml",
  1373. "target": "food_linear_lut_16.mlmodel",
  1374. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_lut_16.mlmodel",
  1375. "format": "Core ML v2",
  1376. "link": "https://github.com/kingreza/quantization"
  1377. },
  1378. {
  1379. "type": "coreml",
  1380. "target": "GoogLeNetPlaces.mlmodel",
  1381. "source": "https://docs-assets.developer.apple.com/coreml/models/GoogLeNetPlaces.mlmodel"
  1382. },
  1383. {
  1384. "type": "coreml",
  1385. "target": "HED_so.mlmodel",
  1386. "source": "https://raw.githubusercontent.com/s1ddok/HED-CoreML/master/HED-CoreML/Models/HED_so.mlmodel",
  1387. "link": "https://github.com/s1ddok/HED-CoreML"
  1388. },
  1389. {
  1390. "type": "coreml",
  1391. "target": "HED_so3.mlmodel",
  1392. "source": "https://raw.githubusercontent.com/s1ddok/HED-CoreML/master/HED-CoreML/Models/HED_so3.mlmodel",
  1393. "link": "https://github.com/s1ddok/HED-CoreML"
  1394. },
  1395. {
  1396. "type": "coreml",
  1397. "target": "imdb_lstm.mlmodel",
  1398. "source": "https://github.com/lutzroeder/netron/files/2591614/imdb_lstm.mlmodel.zip[imdb_lstm.mlmodel]",
  1399. "format": "Core ML v1",
  1400. "link": "https://github.com/lutzroeder/netron/issues/149"
  1401. },
  1402. {
  1403. "type": "coreml",
  1404. "target": "imdb_bidirectional_lstm.mlmodel",
  1405. "source": "https://github.com/lutzroeder/netron/files/2591615/imdb_bidirectional_lstm.mlmodel.zip[imdb_bidirectional_lstm.mlmodel]",
  1406. "format": "Core ML v1",
  1407. "link": "https://github.com/lutzroeder/netron/issues/149"
  1408. },
  1409. {
  1410. "type": "coreml",
  1411. "target": "Inceptionv3.mlmodel",
  1412. "source": "https://docs-assets.developer.apple.com/coreml/models/Inceptionv3.mlmodel"
  1413. },
  1414. {
  1415. "type": "coreml",
  1416. "target": "iris.mlmodel",
  1417. "source": "https://raw.githubusercontent.com/gavi/Iris/master/Iris/iris.mlmodel",
  1418. "format": "Core ML v1",
  1419. "link": "https://github.com/gavi/Iris"
  1420. },
  1421. {
  1422. "type": "coreml",
  1423. "target": "LinkedUpdatableTinyDrawingClassifier.mlmodel",
  1424. "source": "https://github.com/lutzroeder/netron/files/4500539/LinkedUpdatableTinyDrawingClassifier.zip[LinkedUpdatableTinyDrawingClassifier.mlmodel]",
  1425. "format": "Core ML v4",
  1426. "link": "https://github.com/lutzroeder/netron/issues/193"
  1427. },
  1428. {
  1429. "type": "coreml",
  1430. "target": "lstm_model.mlpackage.zip",
  1431. "source": "https://github.com/lutzroeder/netron/files/7406821/lstm_model.mlpackage.zip",
  1432. "format": "Core ML Package v6",
  1433. "link": "https://github.com/lutzroeder/netron/issues/832"
  1434. },
  1435. {
  1436. "type": "coreml",
  1437. "target": "MessageClassifier.mlmodel",
  1438. "source": "https://raw.githubusercontent.com/llSourcell/A_guide_to_coreML/master/MessageClassifier.mlmodel",
  1439. "link": "https://github.com/llSourcell/A_guide_to_coreML"
  1440. },
  1441. {
  1442. "type": "coreml",
  1443. "target": "MNIST.mlmodel",
  1444. "source": "https://github.com/ph1ps/MNIST-CoreML/raw/master/MNISTPrediction/MNIST.mlmodel",
  1445. "link": "https://github.com/SwiftBrain/awesome-CoreML-models"
  1446. },
  1447. {
  1448. "type": "coreml",
  1449. "target": "MNISTClassifier.mlmodel",
  1450. "source": "https://docs-assets.developer.apple.com/coreml/models/Image/DrawingClassification/MNISTClassifier/MNISTClassifier.mlmodel",
  1451. "format": "Core ML v1",
  1452. "link": "https://developer.apple.com/machine-learning/models"
  1453. },
  1454. {
  1455. "type": "coreml",
  1456. "target": "MobileNet.mlmodel",
  1457. "source": "https://docs-assets.developer.apple.com/coreml/models/MobileNet.mlmodel"
  1458. },
  1459. {
  1460. "type": "coreml",
  1461. "target": "mobilenet_v2_1.4_224.mlmodel",
  1462. "source": "https://github.com/tf-coreml/tf-coreml/files/2575260/mobilenet_v2_1.4_224.mlmodel.zip[mobilenet_v2_1.4_224.mlmodel]",
  1463. "format": "Core ML v1",
  1464. "link": "https://github.com/tf-coreml/tf-coreml/issues/252"
  1465. },
  1466. {
  1467. "type": "coreml",
  1468. "target": "mobilenet_v2_not_working_netron.mlpackage.zip",
  1469. "source": "https://github.com/lutzroeder/netron/files/7197761/mobilenet_v2_not_working_netron.mlpackage.zip",
  1470. "format": "Core ML Package v6",
  1471. "link": "https://github.com/lutzroeder/netron/issues/812"
  1472. },
  1473. {
  1474. "type": "coreml",
  1475. "target": "MovieRecommender.mlmodel",
  1476. "source": "https://raw.githubusercontent.com/anupamchugh/iowncode/master/CoreMLRecommender/CoreMLRecommender/MovieRecommender.mlmodel",
  1477. "format": "Core ML v4",
  1478. "link": "https://github.com/anupamchugh/iowncode/tree/master/CoreMLRecommender"
  1479. },
  1480. {
  1481. "type": "coreml",
  1482. "target": "NamesDT.mlmodel",
  1483. "source": "https://github.com/cocoa-ai/NamesCoreMLDemo/raw/master/Names/Resources/NamesDT.mlmodel",
  1484. "link": "https://github.com/SwiftBrain/awesome-CoreML-models"
  1485. },
  1486. {
  1487. "type": "coreml",
  1488. "target": "onehot_simple.mlmodel",
  1489. "source": "https://raw.githubusercontent.com/onnx/onnxmltools/master/tests/data/onehot_simple.mlmodel",
  1490. "link": "https://github.com/onnx/onnxmltools/tree/master/tests/data"
  1491. },
  1492. {
  1493. "type": "coreml",
  1494. "target": "PoseEstimationForMobile.mlmodel",
  1495. "source": "https://raw.githubusercontent.com/edvardHua/PoseEstimationForMobile/master/release/cpm_model/model.mlmodel",
  1496. "format": "Core ML v1",
  1497. "link": "https://github.com/edvardHua/PoseEstimationForMobile"
  1498. },
  1499. {
  1500. "type": "coreml",
  1501. "target": "ProductTagger.mlmodel",
  1502. "source": "https://raw.githubusercontent.com/aidev1065/CustomEntityRecognition/master/ProductTagger.mlmodel",
  1503. "format": "Core ML v3",
  1504. "link": "https://github.com/aidev1065/CustomEntityRecognition"
  1505. },
  1506. {
  1507. "type": "coreml",
  1508. "target": "ProgrammingLanguageClassifier.mlmodel",
  1509. "source": "https://raw.githubusercontent.com/Flight-School/Programming-Language-Classifier/master/ProgrammingLanguageClassifier.mlmodel",
  1510. "format": "Core ML v3",
  1511. "link": "https://github.com/Flight-School/Programming-Language-Classifier"
  1512. },
  1513. {
  1514. "type": "coreml",
  1515. "target": "ReadTheRoom.mlmodel",
  1516. "source": "https://raw.githubusercontent.com/CapTechMobile/blogfest-coreml/d8e8c15d33e9591c9e81cb18e5ea4b2fb6972503/ReadTheRoom/ReadTheRoom.mlmodel",
  1517. "format": "Core ML v4",
  1518. "link": "https://github.com/CapTechMobile/blogfest-coreml"
  1519. },
  1520. {
  1521. "type": "coreml",
  1522. "target": "SentimentPolarity.mlmodel",
  1523. "source": "https://github.com/cocoa-ai/SentimentCoreMLDemo/raw/master/SentimentPolarity/Resources/SentimentPolarity.mlmodel",
  1524. "link": "https://github.com/SwiftBrain/awesome-CoreML-models"
  1525. },
  1526. {
  1527. "type": "coreml",
  1528. "target": "sentiment_model.mlmodel",
  1529. "source": "https://github.com/lutzroeder/netron/files/2591618/sentiment_model.mlmodel.zip[sentiment_model.mlmodel]",
  1530. "format": "Core ML v1",
  1531. "link": "https://github.com/lutzroeder/netron/issues/149"
  1532. },
  1533. {
  1534. "type": "coreml",
  1535. "target": "SqueezeNet.mlmodel",
  1536. "source": "https://docs-assets.developer.apple.com/coreml/models/Image/ImageClassification/SqueezeNet/SqueezeNet.mlmodel",
  1537. "format": "Core ML v1",
  1538. "link": "https://developer.apple.com/machine-learning/models"
  1539. },
  1540. {
  1541. "type": "coreml",
  1542. "target": "SqueezeNetFP16.mlmodel",
  1543. "source": "https://docs-assets.developer.apple.com/coreml/models/Image/ImageClassification/SqueezeNet/SqueezeNetFP16.mlmodel",
  1544. "format": "Core ML v2",
  1545. "link": "https://developer.apple.com/machine-learning/models"
  1546. },
  1547. {
  1548. "type": "coreml",
  1549. "target": "SqueezeNetInt8LUT.mlmodel",
  1550. "source": "https://docs-assets.developer.apple.com/coreml/models/Image/ImageClassification/SqueezeNet/SqueezeNetInt8LUT.mlmodel",
  1551. "format": "Core ML v3",
  1552. "link": "https://developer.apple.com/machine-learning/models"
  1553. },
  1554. {
  1555. "type": "coreml",
  1556. "target": "test_categorical_imputer.mlmodel",
  1557. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_categorical_imputer.mlmodel]",
  1558. "format": "Core ML v1",
  1559. "link": "https://github.com/lutzroeder/netron/issues/193"
  1560. },
  1561. {
  1562. "type": "coreml",
  1563. "target": "test_keras_embedding_model.mlmodel",
  1564. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_keras_embedding_model.mlmodel]",
  1565. "format": "Core ML v1",
  1566. "link": "https://github.com/lutzroeder/netron/issues/193"
  1567. },
  1568. {
  1569. "type": "coreml",
  1570. "target": "test_linear_regressor.mlmodel",
  1571. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_linear_regressor.mlmodel]",
  1572. "format": "Core ML v1",
  1573. "link": "https://github.com/lutzroeder/netron/issues/193"
  1574. },
  1575. {
  1576. "type": "coreml",
  1577. "target": "test_normalizer_boston.mlmodel",
  1578. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_normalizer_boston.mlmodel]",
  1579. "format": "Core ML v1",
  1580. "link": "https://github.com/lutzroeder/netron/issues/193"
  1581. },
  1582. {
  1583. "type": "coreml",
  1584. "target": "test_normalizer_random.mlmodel",
  1585. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_normalizer_random.mlmodel]",
  1586. "format": "Core ML v1",
  1587. "link": "https://github.com/lutzroeder/netron/issues/193"
  1588. },
  1589. {
  1590. "type": "coreml",
  1591. "target": "test_one_hot_encoder_many_columns.mlmodel",
  1592. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_one_hot_encoder_many_columns.mlmodel]",
  1593. "format": "Core ML v1",
  1594. "link": "https://github.com/lutzroeder/netron/issues/193"
  1595. },
  1596. {
  1597. "type": "coreml",
  1598. "target": "test_one_hot_encoder_one_column_of_several.mlmodel",
  1599. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_one_hot_encoder_one_column_of_several.mlmodel]",
  1600. "format": "Core ML v1",
  1601. "link": "https://github.com/lutzroeder/netron/issues/193"
  1602. },
  1603. {
  1604. "type": "coreml",
  1605. "target": "test_one_hot_encoder_pipeline.mlmodel",
  1606. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_one_hot_encoder_pipeline.mlmodel]",
  1607. "format": "Core ML v1",
  1608. "link": "https://github.com/lutzroeder/netron/issues/193"
  1609. },
  1610. {
  1611. "type": "coreml",
  1612. "target": "test_random_forest_classifier.mlmodel",
  1613. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_random_forest_classifier.mlmodel]",
  1614. "format": "Core ML v1",
  1615. "link": "https://github.com/lutzroeder/netron/issues/193"
  1616. },
  1617. {
  1618. "type": "coreml",
  1619. "target": "test_random_forest_regressor.mlmodel",
  1620. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_random_forest_regressor.mlmodel]",
  1621. "format": "Core ML v1",
  1622. "link": "https://github.com/lutzroeder/netron/issues/193"
  1623. },
  1624. {
  1625. "type": "coreml",
  1626. "target": "test_support_vector_classifier.mlmodel",
  1627. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_support_vector_classifier.mlmodel]",
  1628. "format": "Core ML v1",
  1629. "link": "https://github.com/lutzroeder/netron/issues/193"
  1630. },
  1631. {
  1632. "type": "coreml",
  1633. "target": "test_support_vector_regressor.mlmodel",
  1634. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_support_vector_regressor.mlmodel]",
  1635. "format": "Core ML v1",
  1636. "link": "https://github.com/lutzroeder/netron/issues/193"
  1637. },
  1638. {
  1639. "type": "coreml",
  1640. "target": "test_tree_regressor.mlmodel",
  1641. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_tree_regressor.mlmodel]",
  1642. "format": "Core ML v1",
  1643. "link": "https://github.com/lutzroeder/netron/issues/193"
  1644. },
  1645. {
  1646. "type": "coreml",
  1647. "target": "UpdatableKNN.mlmodel",
  1648. "source": "https://github.com/lutzroeder/netron/files/3424578/UpdatableKNN.zip[UpdatableKNN.mlmodel]",
  1649. "format": "Core ML v4",
  1650. "link": "https://github.com/lutzroeder/netron/issues/193"
  1651. },
  1652. {
  1653. "type": "coreml",
  1654. "target": "UpdatableMNISTDigitClassifier.mlmodel",
  1655. "source": "https://github.com/lutzroeder/netron/files/3424579/UpdatableMNISTDigitClassifier.zip[UpdatableMNISTDigitClassifier.mlmodel]",
  1656. "format": "Core ML v1",
  1657. "link": "https://github.com/lutzroeder/netron/issues/193"
  1658. },
  1659. {
  1660. "type": "coreml",
  1661. "target": "wave.mlmodel",
  1662. "source": "https://raw.githubusercontent.com/UnusualWolf/coreML/master/StyleArt-master/StyleArt/CoreMLModels/wave.mlmodel",
  1663. "format": "Core ML v1",
  1664. "link": "https://github.com/UnusualWolf/coreML"
  1665. },
  1666. {
  1667. "type": "coreml",
  1668. "target": "YOLOv3Tiny.mlmodel",
  1669. "source": "https://docs-assets.developer.apple.com/coreml/models/Image/ObjectDetection/YOLOv3Tiny/YOLOv3Tiny.mlmodel",
  1670. "format": "Core ML v3",
  1671. "link": "https://developer.apple.com/machine-learning/models"
  1672. },
  1673. {
  1674. "type": "darknet",
  1675. "target": "alexnet.cfg",
  1676. "source": "https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/alexnet.cfg",
  1677. "format": "Darknet",
  1678. "link": "https://pjreddie.com/darknet/imagenet"
  1679. },
  1680. {
  1681. "type": "darknet",
  1682. "target": "csresnext50-panet-spp.cfg",
  1683. "source": "https://raw.githubusercontent.com/WongKinYiu/CrossStagePartialNetworks/master/cfg/csresnext50-panet-spp.cfg",
  1684. "format": "Darknet",
  1685. "link": "https://github.com/lutzroeder/netron/issues/381"
  1686. },
  1687. {
  1688. "type": "darknet",
  1689. "target": "darknet_invalid_file.cfg",
  1690. "source": "https://github.com/lutzroeder/netron/files/3219696/darknet_invalid_file.cfg.zip[darknet_invalid_file.cfg]",
  1691. "error": "Invalid cfg 'xxxx' at line 4 in 'darknet_invalid_file.cfg'.",
  1692. "link": "https://github.com/lutzroeder/netron/issues/277"
  1693. },
  1694. {
  1695. "type": "darknet",
  1696. "target": "darknet53_448.weights,darknet53_448.cfg",
  1697. "source": "https://pjreddie.com/media/files/darknet53_448.weights,https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/darknet53_448.cfg",
  1698. "format": "Darknet",
  1699. "link": "https://pjreddie.com/darknet/imagenet"
  1700. },
  1701. {
  1702. "type": "darknet",
  1703. "target": "enet-coco.model",
  1704. "source": "https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/enet-coco.cfg",
  1705. "format": "Darknet",
  1706. "link": "https://github.com/lutzroeder/netron/issues/381"
  1707. },
  1708. {
  1709. "type": "darknet",
  1710. "target": "face_small_3.cfg",
  1711. "source": "https://raw.githubusercontent.com/zlmo/Face-Detection/master/cfg/face_small_3.cfg",
  1712. "format": "Darknet",
  1713. "link": "https://github.com/zlmo/Face-Detection"
  1714. },
  1715. {
  1716. "type": "darknet",
  1717. "target": "Gaussian_yolov3_BDD.cfg",
  1718. "source": "https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/Gaussian_yolov3_BDD.cfg",
  1719. "format": "Darknet",
  1720. "link": "https://github.com/AlexeyAB/darknet"
  1721. },
  1722. {
  1723. "type": "darknet",
  1724. "target": "go.cfg,go.weights",
  1725. "source": "https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/go.cfg,https://pjreddie.com/media/files/go.weights",
  1726. "format": "Darknet",
  1727. "link": "https://pjreddie.com/darknet/darkgo-go-in-darknet"
  1728. },
  1729. {
  1730. "type": "darknet",
  1731. "target": "grrm.cfg,grrm.weights",
  1732. "source": "https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/rnn.cfg,https://pjreddie.com/media/files/grrm.weights",
  1733. "format": "Darknet",
  1734. "link": "https://pjreddie.com/darknet/rnns-in-darknet"
  1735. },
  1736. {
  1737. "type": "darknet",
  1738. "target": "gru.cfg",
  1739. "source": "https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/gru.cfg",
  1740. "format": "Darknet",
  1741. "link": "https://pjreddie.com/darknet"
  1742. },
  1743. {
  1744. "type": "darknet",
  1745. "target": "jnet-conv.cfg,jnet-conv.weights",
  1746. "source": "https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/jnet-conv.cfg,https://pjreddie.com/media/files/jnet-conv.weights",
  1747. "format": "Darknet",
  1748. "link": "https://pjreddie.com/darknet/nightmare"
  1749. },
  1750. {
  1751. "type": "darknet",
  1752. "target": "lstm.train.cfg",
  1753. "source": "https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/lstm.train.cfg",
  1754. "format": "Darknet",
  1755. "link": "https://github.com/AlexeyAB/darknet"
  1756. },
  1757. {
  1758. "type": "darknet",
  1759. "target": "mixnet_m_gpu.cfg",
  1760. "source": "https://github.com/lutzroeder/netron/files/3935529/mixnet_m_gpu.cfg.txt",
  1761. "format": "Darknet",
  1762. "link": "https://github.com/lutzroeder/netron/issues/381"
  1763. },
  1764. {
  1765. "type": "darknet",
  1766. "target": "netron_issue_539_1.cfg",
  1767. "source": "https://github.com/lutzroeder/netron/files/5048435/netron_issue_539_1.zip[netron_issue_539_1.cfg]",
  1768. "format": "Darknet",
  1769. "link": "https://github.com/lutzroeder/netron/issues/539"
  1770. },
  1771. {
  1772. "type": "darknet",
  1773. "target": "netron_issue_539_2.cfg",
  1774. "source": "https://github.com/lutzroeder/netron/files/5048436/netron_issue_539_2.zip[netron_issue_539_2.cfg]",
  1775. "format": "Darknet",
  1776. "link": "https://github.com/lutzroeder/netron/issues/539"
  1777. },
  1778. {
  1779. "type": "darknet",
  1780. "target": "netron_issue_539_3.cfg",
  1781. "source": "https://github.com/lutzroeder/netron/files/5612917/netron_issue_539_3.zip[netron_issue_539_3.cfg]",
  1782. "format": "Darknet",
  1783. "link": "https://github.com/lutzroeder/netron/issues/539"
  1784. },
  1785. {
  1786. "type": "darknet",
  1787. "target": "netron_issue_541.cfg",
  1788. "source": "https://github.com/lutzroeder/netron/files/4968181/netron_issue_541.zip[netron_issue_541.cfg]",
  1789. "format": "Darknet",
  1790. "link": "https://github.com/lutzroeder/netron/issues/541"
  1791. },
  1792. {
  1793. "type": "darknet",
  1794. "target": "netron_issue_569.cfg",
  1795. "source": "https://github.com/lutzroeder/netron/files/5025566/netron_issue_569.zip[netron_issue_569.cfg]",
  1796. "format": "Darknet",
  1797. "link": "https://github.com/lutzroeder/netron/issues/569"
  1798. },
  1799. {
  1800. "type": "darknet",
  1801. "target": "resnet18.cfg,resnet18.weights",
  1802. "source": "https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/resnet18.cfg,https://pjreddie.com/media/files/resnet18.weights",
  1803. "format": "Darknet",
  1804. "link": "https://pjreddie.com/darknet/imagenet"
  1805. },
  1806. {
  1807. "type": "darknet",
  1808. "target": "tiny.cfg,tiny.weights",
  1809. "source": "https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/tiny.cfg,https://pjreddie.com/media/files/tiny.weights",
  1810. "format": "Darknet",
  1811. "link": "https://pjreddie.com/darknet/tiny-darknet"
  1812. },
  1813. {
  1814. "type": "darknet",
  1815. "target": "vgg_bn_ssd300.cfg",
  1816. "source": "https://github.com/lutzroeder/netron/files/5287397/vgg_bn_ssd300.cfg.zip[vgg_bn_ssd300.cfg]",
  1817. "error": "Unexpected '[convolutional]' section. First section must be [net] or [network] in 'vgg_bn_ssd300.cfg'.",
  1818. "link": "https://github.com/lutzroeder/netron/issues/277"
  1819. },
  1820. {
  1821. "type": "darknet",
  1822. "target": "xyolo.test.cfg",
  1823. "source": "https://github.com/lutzroeder/netron/files/6026689/xyolo.test.cfg.zip[xyolo.test.cfg]",
  1824. "format": "Darknet",
  1825. "link": "https://github.com/lutzroeder/netron/issues/277"
  1826. },
  1827. {
  1828. "type": "darknet",
  1829. "target": "yolo-coco.cfg",
  1830. "source": "https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/yolov1/yolo-coco.cfg",
  1831. "format": "Darknet",
  1832. "link": "https://github.com/AlexeyAB/darknet"
  1833. },
  1834. {
  1835. "type": "darknet",
  1836. "target": "yolo-voc.cfg",
  1837. "source": "https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/yolo-voc.cfg",
  1838. "format": "Darknet",
  1839. "link": "https://github.com/AlexeyAB/darknet"
  1840. },
  1841. {
  1842. "type": "darknet",
  1843. "target": "yolo.cfg",
  1844. "source": "https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/yolo.cfg",
  1845. "format": "Darknet",
  1846. "link": "https://github.com/AlexeyAB/darknet"
  1847. },
  1848. {
  1849. "type": "darknet",
  1850. "target": "yolo_v3_tiny_pan3_aa_ae_mixup_scale_giou.cfg",
  1851. "source": "https://github.com/lutzroeder/netron/files/4006371/yolo_v3_tiny_pan3_aa_ae_mixup_scale_giou.cfg.zip[yolo_v3_tiny_pan3_aa_ae_mixup_scale_giou.cfg]",
  1852. "format": "Darknet",
  1853. "link": "https://github.com/lutzroeder/netron/issues/277"
  1854. },
  1855. {
  1856. "type": "darknet",
  1857. "target": "yolo_v3_tiny_lstm.cfg",
  1858. "source": "https://github.com/lutzroeder/netron/files/4999065/yolo_v3_tiny_lstm.zip[yolo_v3_tiny_lstm.cfg]",
  1859. "format": "Darknet",
  1860. "link": "https://github.com/lutzroeder/netron/issues/562"
  1861. },
  1862. {
  1863. "type": "darknet",
  1864. "target": "yolov3-tiny.cfg,yolov3-tiny.weights",
  1865. "source": "https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/yolov3-tiny.cfg,https://pjreddie.com/media/files/yolov3-tiny.weights",
  1866. "format": "Darknet",
  1867. "link": "https://github.com/AlexeyAB/darknet"
  1868. },
  1869. {
  1870. "type": "darknet",
  1871. "target": "yolov3-tiny_default.cfg.txt",
  1872. "source": "https://github.com/lutzroeder/netron/files/5615015/yolov3-tiny_default.cfg.txt.zip[yolov3-tiny_default.cfg.txt]",
  1873. "format": "Darknet",
  1874. "link": "https://github.com/lutzroeder/netron/issues/277"
  1875. },
  1876. {
  1877. "type": "darknet",
  1878. "target": "yolov3-tiny_3l_shortcut_multilayer_per_feature_softmax.cfg",
  1879. "source": "https://github.com/lutzroeder/netron/files/4074756/yolov3-tiny_3l_shortcut_multilayer_per_feature_softmax.cfg.zip[yolov3-tiny_3l_shortcut_multilayer_per_feature_softmax.cfg]",
  1880. "format": "Darknet",
  1881. "link": "https://github.com/lutzroeder/netron/issues/410"
  1882. },
  1883. {
  1884. "type": "darknet",
  1885. "target": "yolov3_1088x608.cfg",
  1886. "source": "https://github.com/lutzroeder/netron/files/4391007/yolov3_1088x608.cfg.zip[yolov3_1088x608.cfg]",
  1887. "format": "Darknet",
  1888. "link": "https://github.com/lutzroeder/netron/issues/277"
  1889. },
  1890. {
  1891. "type": "darknet",
  1892. "target": "yolov4-tiny.cfg,yolov4-tiny.weights",
  1893. "source": "https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/yolov4-tiny.cfg,https://github.com/AlexeyAB/darknet/releases/download/darknet_yolo_v4_pre/yolov4-tiny.weights",
  1894. "format": "Darknet",
  1895. "link": "https://github.com/lutzroeder/netron/issues/531"
  1896. },
  1897. {
  1898. "type": "darknet",
  1899. "target": "yolo9000.cfg",
  1900. "source": "https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/yolo9000.cfg",
  1901. "format": "Darknet",
  1902. "link": "https://github.com/AlexeyAB/darknet"
  1903. },
  1904. {
  1905. "type": "darknet",
  1906. "target": "yolor_p6.cfg",
  1907. "source": "https://github.com/lutzroeder/netron/files/6767257/yolor_p6.cfg.zip[yolor_p6.cfg]",
  1908. "format": "Darknet",
  1909. "link": "https://github.com/lutzroeder/netron/issues/765"
  1910. },
  1911. {
  1912. "type": "dl4j",
  1913. "target": "lenet_dl4j_mnist_inference.zip",
  1914. "source": "https://dl4jdata.blob.core.windows.net/models/lenet_dl4j_mnist_inference.zip",
  1915. "format": "Deeplearning4j",
  1916. "link": "https://github.com/eclipse/deeplearning4j"
  1917. },
  1918. {
  1919. "type": "dl4j",
  1920. "target": "nasnetmobile_dl4j_inference.v1.zip",
  1921. "source": "https://dl4jdata.blob.core.windows.net/models/nasnetmobile_dl4j_inference.v1.zip",
  1922. "format": "Deeplearning4j",
  1923. "link": "https://github.com/eclipse/deeplearning4j"
  1924. },
  1925. {
  1926. "type": "dl4j",
  1927. "target": "squeezenet_dl4j_inference.v2.zip",
  1928. "source": "https://dl4jdata.blob.core.windows.net/models/squeezenet_dl4j_inference.v2.zip",
  1929. "format": "Deeplearning4j",
  1930. "link": "https://github.com/eclipse/deeplearning4j"
  1931. },
  1932. {
  1933. "type": "dl4j",
  1934. "target": "tiny-yolo-voc_dl4j_inference.v2.zip",
  1935. "source": "https://dl4jdata.blob.core.windows.net/models/tiny-yolo-voc_dl4j_inference.v2.zip",
  1936. "format": "Deeplearning4j",
  1937. "link": "https://github.com/eclipse/deeplearning4j"
  1938. },
  1939. {
  1940. "type": "dl4j",
  1941. "target": "unet_dl4j_segment_inference.v1.zip",
  1942. "source": "https://dl4jdata.blob.core.windows.net/models/unet_dl4j_segment_inference.v1.zip",
  1943. "format": "Deeplearning4j",
  1944. "link": "https://github.com/eclipse/deeplearning4j"
  1945. },
  1946. {
  1947. "type": "dl4j",
  1948. "target": "xception_dl4j_inference.v2.zip",
  1949. "source": "https://dl4jdata.blob.core.windows.net/models/xception_dl4j_inference.v2.zip",
  1950. "format": "Deeplearning4j",
  1951. "link": "https://github.com/eclipse/deeplearning4j"
  1952. },
  1953. {
  1954. "type": "dlc",
  1955. "target": "dmonitoring_model_q/model,dmonitoring_model_q/model.params",
  1956. "source": "https://github.com/lutzroeder/netron/files/8767267/dmonitoring_model_q.zip[model,model.params]",
  1957. "format": "DLC",
  1958. "link": "https://github.com/lutzroeder/netron/issues/640"
  1959. },
  1960. {
  1961. "type": "dlc",
  1962. "target": "dmonitoring_model_q.dlc",
  1963. "source": "https://github.com/lutzroeder/netron/files/8767255/dmonitoring_model_q.dlc.zip[dmonitoring_model_q.dlc]",
  1964. "format": "DLC",
  1965. "link": "https://github.com/lutzroeder/netron/issues/640"
  1966. },
  1967. {
  1968. "type": "dlc",
  1969. "target": "inception_v3_quantized.dlc",
  1970. "source": "https://github.com/lutzroeder/netron/files/5615377/inception_v3_quantized.dlc.zip[inception_v3_quantized.dlc]",
  1971. "format": "DLC",
  1972. "link": "https://github.com/lutzroeder/netron/issues/640"
  1973. },
  1974. {
  1975. "type": "dlc",
  1976. "target": "model_front_mibokeh_video.dlc",
  1977. "source": "https://github.com/lutzroeder/netron/files/8767521/model_front_mibokeh_video.dlc.zip[model_front_mibokeh_video.dlc]",
  1978. "format": "DLC",
  1979. "error": "File format is not dlc.NetParam (Offset is outside the bounds of the DataView) in 'model_front_mibokeh_video.dlc'.",
  1980. "link": "https://github.com/lutzroeder/netron/issues/640"
  1981. },
  1982. {
  1983. "type": "dlc",
  1984. "target": "mobile_mosaic_hta/model.params",
  1985. "source": "https://github.com/lutzroeder/netron/files/8767531/mobile_mosaic_hta.zip[model.params]",
  1986. "format": "DLC Weights",
  1987. "link": "https://github.com/lutzroeder/netron/issues/640"
  1988. },
  1989. {
  1990. "type": "dnn",
  1991. "target": "brows_model.dnn",
  1992. "source": "https://github.com/lutzroeder/netron/files/5118426/brows_model.zip[brows_model.dnn]",
  1993. "format": "SnapML v1",
  1994. "link": "https://github.com/lutzroeder/netron/issues/581"
  1995. },
  1996. {
  1997. "type": "flax",
  1998. "target": "flax_model.msgpack",
  1999. "source": "https://github.com/lutzroeder/netron/files/8567810/flax_model.msgpack.zip[flax_model.msgpack]",
  2000. "format": "Flax",
  2001. "link": "https://github.com/lutzroeder/netron/issues/850"
  2002. },
  2003. {
  2004. "type": "flux",
  2005. "target": "helloworld.bson",
  2006. "source": "https://github.com/lutzroeder/netron/files/3638212/helloworld.zip[helloworld.bson]",
  2007. "format": "Flux",
  2008. "link": "https://github.com/lutzroeder/netron/issues/334"
  2009. },
  2010. {
  2011. "type": "keras",
  2012. "target": "5_model_fold_0.h5",
  2013. "source": "https://github.com/lutzroeder/netron/files/6174822/5_model_fold_0.h5.zip[5_model_fold_0.h5]",
  2014. "format": "Keras v2.4.0",
  2015. "link": "https://github.com/lutzroeder/netron/issues/540"
  2016. },
  2017. {
  2018. "type": "keras",
  2019. "target": "babi_rnn.h5",
  2020. "source": "https://github.com/lutzroeder/netron/files/2592329/keras_models.zip[babi_rnn.h5]",
  2021. "format": "Keras v2.1.2",
  2022. "link": "https://github.com/lutzroeder/netron/issues/57"
  2023. },
  2024. {
  2025. "type": "keras",
  2026. "target": "betago.hdf5",
  2027. "source": "https://raw.githubusercontent.com/maxpumperla/deep_learning_and_the_game_of_go/master/code/agents/betago.hdf5",
  2028. "format": "Keras v2.0.8",
  2029. "link": "https://github.com/lutzroeder/netron/issues/57"
  2030. },
  2031. {
  2032. "type": "keras",
  2033. "target": "bidirectional_lstm.h5",
  2034. "source": "https://github.com/lutzroeder/netron/files/2592329/keras_models.zip[bidirectional_lstm.h5]",
  2035. "format": "Keras v2.1.2",
  2036. "link": "https://github.com/lutzroeder/netron/issues/57"
  2037. },
  2038. {
  2039. "type": "keras",
  2040. "target": "cats_and_dogs_small_1.h5",
  2041. "source": "https://raw.githubusercontent.com/wwells/CUNY_DATA_698/master/DL_Coursework/DLR/cats_and_dogs_small_1.h5",
  2042. "format": "Keras v2.1.5",
  2043. "link": "https://github.com/wwells/CUNY_DATA_698/tree/master/DL_Coursework/DLR"
  2044. },
  2045. {
  2046. "type": "keras",
  2047. "target": "cats_and_dogs_small_2.h5",
  2048. "source": "https://raw.githubusercontent.com/kylehamilton/deep-learning-with-r-notebooks/master/cats_and_dogs_small_2.h5",
  2049. "format": "Keras v2.0.9",
  2050. "link": "https://github.com/kylehamilton/deep-learning-with-r-notebooks"
  2051. },
  2052. {
  2053. "type": "keras",
  2054. "target": "cats_and_dogs_2_activation.h5",
  2055. "source": "https://github.com/lutzroeder/netron/files/2592329/keras_models.zip[cats_and_dogs_2_activation.h5]",
  2056. "format": "Keras v2.1.3",
  2057. "link": "https://github.com/lutzroeder/netron/issues/57"
  2058. },
  2059. {
  2060. "type": "keras",
  2061. "target": "cifar10_m4_iter_70000.caffemodel.h5",
  2062. "source": "https://raw.githubusercontent.com/ARM-software/ML-examples/d229d37863d69963f36e9da92dfd25f592925b9d/cmsisnn-cifar10/models/cifar10_m4_iter_70000.caffemodel.h5",
  2063. "format": "HDF5 Weights",
  2064. "link": "https://github.com/ARM-software/ML-examples"
  2065. },
  2066. {
  2067. "type": "keras",
  2068. "target": "CNN_SN_flaw1_v1.h5",
  2069. "source": "https://github.com/lutzroeder/netron/files/2452413/CNN_SN_flaw1_v1.h5.zip[CNN_SN_flaw1_v1.h5]",
  2070. "format": "Keras v2.2.3",
  2071. "link": "https://github.com/lutzroeder/netron/issues/157"
  2072. },
  2073. {
  2074. "type": "keras",
  2075. "target": "data_prediction.hdf5",
  2076. "source": "https://github.com/lutzroeder/netron/files/8694214/data_prediction.hdf5.zip[data_prediction.hdf5]",
  2077. "format": "HDF5 Weights",
  2078. "link": "https://github.com/lutzroeder/netron/issues/467"
  2079. },
  2080. {
  2081. "type": "keras",
  2082. "target": "DenseNet121.h5.zip",
  2083. "source": "https://github.com/lutzroeder/netron/files/6251712/DenseNet121.h5.zip",
  2084. "format": "Keras v2.4.0",
  2085. "link": "https://github.com/lutzroeder/netron/issues/57"
  2086. },
  2087. {
  2088. "type": "keras",
  2089. "target": "generating_images_with_vaes.h5",
  2090. "source": "https://github.com/lutzroeder/netron/files/2592326/generating_images_with_vaes.h5.zip[generating_images_with_vaes.h5]",
  2091. "format": "Keras v2.1.3",
  2092. "link": "https://github.com/fchollet/deep-learning-with-python-notebooks/blob/master/8.4-generating-images-with-vaes.ipynb"
  2093. },
  2094. {
  2095. "type": "keras",
  2096. "target": "generator_model.h5",
  2097. "source": "https://raw.githubusercontent.com/mattya/chainer-DCGAN/master/generator_model.h5",
  2098. "format": "HDF5 Weights",
  2099. "link": "https://github.com/mattya/chainer-DCGAN"
  2100. },
  2101. {
  2102. "type": "keras",
  2103. "target": "imdb_embedding.h5",
  2104. "source": "https://github.com/lutzroeder/netron/files/2592329/keras_models.zip[imdb_embedding.h5]",
  2105. "format": "Keras v2.1.3",
  2106. "link": "https://github.com/lutzroeder/netron/issues/57"
  2107. },
  2108. {
  2109. "type": "keras",
  2110. "target": "imdb_simplernn.h5",
  2111. "source": "https://github.com/lutzroeder/netron/files/2592329/keras_models.zip[imdb_simplernn.h5]",
  2112. "format": "Keras v2.1.3",
  2113. "link": "https://github.com/lutzroeder/netron/issues/57"
  2114. },
  2115. {
  2116. "type": "keras",
  2117. "target": "InceptionResNetV2.h5.zip",
  2118. "source": "https://github.com/lutzroeder/netron/files/6098150/InceptionResNetV2.h5.zip",
  2119. "format": "Keras v2.4.0",
  2120. "link": "https://github.com/lutzroeder/netron/issues/57"
  2121. },
  2122. {
  2123. "type": "keras",
  2124. "target": "InceptionV3.h5.zip",
  2125. "source": "https://github.com/lutzroeder/netron/files/6098151/InceptionV3.h5.zip",
  2126. "format": "Keras v2.4.0",
  2127. "link": "https://github.com/lutzroeder/netron/issues/57"
  2128. },
  2129. {
  2130. "type": "keras",
  2131. "target": "lstm_seq2seq.h5",
  2132. "source": "https://github.com/lutzroeder/netron/files/2592328/lstm_seq2seq.zip[lstm_seq2seq.h5]",
  2133. "format": "Keras v2.1.2",
  2134. "link": "https://github.com/lutzroeder/netron/issues/57"
  2135. },
  2136. {
  2137. "type": "keras",
  2138. "target": "lstm_seq2seq.json",
  2139. "source": "https://github.com/lutzroeder/netron/files/2592328/lstm_seq2seq.zip[lstm_seq2seq.json] ",
  2140. "format": "Keras",
  2141. "link": "https://github.com/lutzroeder/netron/issues/57"
  2142. },
  2143. {
  2144. "type": "keras",
  2145. "target": "mlp.h5",
  2146. "source": "https://github.com/lutzroeder/netron/files/3666244/mlp.zip[mlp.h5]",
  2147. "format": "HDF5 Weights",
  2148. "link": "https://github.com/lutzroeder/netron/issues/337"
  2149. },
  2150. {
  2151. "type": "keras",
  2152. "target": "mimo.h5",
  2153. "source": "https://github.com/lutzroeder/netron/files/2565761/mimo.h5.zip[mimo.h5]",
  2154. "format": "Keras v2.2.0",
  2155. "link": "https://github.com/lutzroeder/netron/issues/138"
  2156. },
  2157. {
  2158. "type": "keras",
  2159. "target": "mnist_float16.h5",
  2160. "source": "https://github.com/lutzroeder/netron/files/2592324/mnist.zip[mnist_float16.h5]",
  2161. "format": "Keras v2.1.2",
  2162. "link": "https://github.com/lutzroeder/netron/issues/57"
  2163. },
  2164. {
  2165. "type": "keras",
  2166. "target": "mnist_float32.h5",
  2167. "source": "https://github.com/lutzroeder/netron/files/2592324/mnist.zip[mnist_float32.h5]",
  2168. "format": "Keras v2.1.2",
  2169. "link": "https://github.com/lutzroeder/netron/issues/57"
  2170. },
  2171. {
  2172. "type": "keras",
  2173. "target": "mnist_float64.h5",
  2174. "source": "https://github.com/lutzroeder/netron/files/2592324/mnist.zip[mnist_float64.h5]",
  2175. "format": "Keras v2.1.2",
  2176. "link": "https://github.com/lutzroeder/netron/issues/57"
  2177. },
  2178. {
  2179. "type": "keras",
  2180. "target": "mobilenet.h5",
  2181. "source": "https://raw.githubusercontent.com/aio-libs/aiohttp-demos/master/demos/imagetagger/tests/data/mobilenet.h5",
  2182. "format": "Keras v2.2.2",
  2183. "link": "https://github.com/aio-libs/aiohttp-demos/tree/master/demos/imagetagger/tests/data"
  2184. },
  2185. {
  2186. "type": "keras",
  2187. "target": "mobilenet_v1_1.0_224_quant.hdf5",
  2188. "source": "https://github.com/lutzroeder/netron/files/4484451/mobilenet_v1_1.0_224_quant.zip[mobilenet_v1_1.0_224_quant.hdf5]",
  2189. "format": "HDF5 Weights",
  2190. "link": "https://github.com/lutzroeder/netron/issues/467"
  2191. },
  2192. {
  2193. "type": "keras",
  2194. "target": "MobileNetV2.h5.zip",
  2195. "source": "https://github.com/lutzroeder/netron/files/6098152/MobileNetV2.h5.zip",
  2196. "link": "https://github.com/lutzroeder/netron/issues/57"
  2197. },
  2198. {
  2199. "type": "keras",
  2200. "target": "model_denoise.h5",
  2201. "source": "https://github.com/lutzroeder/netron/files/8452765/model_denoise.h5.zip[model_denoise.h5]",
  2202. "format": "Keras v2.4.0",
  2203. "link": "https://github.com/lutzroeder/netron/issues/900"
  2204. },
  2205. {
  2206. "type": "keras",
  2207. "target": "model_float32.h5",
  2208. "source": "https://github.com/lutzroeder/netron/files/7759357/model_float32.h5.zip[model_float32.h5]",
  2209. "format": "Keras v2.7.0",
  2210. "link": "https://github.com/lutzroeder/netron/issues/540"
  2211. },
  2212. {
  2213. "type": "keras",
  2214. "target": "NASNetMobile.h5.zip",
  2215. "source": "https://github.com/lutzroeder/netron/files/6098153/NASNetMobile.h5.zip",
  2216. "format": "Keras v2.4.0",
  2217. "link": "https://github.com/lutzroeder/netron/issues/57"
  2218. },
  2219. {
  2220. "type": "keras",
  2221. "target": "nested_bidrectional.h5",
  2222. "source": "https://github.com/lutzroeder/netron/files/4304644/nested_bidrectional.zip[nested_bidrectional.h5]",
  2223. "format": "Keras v2.3.1",
  2224. "link": "https://github.com/lutzroeder/netron/issues/428"
  2225. },
  2226. {
  2227. "type": "keras",
  2228. "target": "nested_bidrectional.weights",
  2229. "source": "https://github.com/lutzroeder/netron/files/4304644/nested_bidrectional.zip[nested_bidrectional_weights.h5]",
  2230. "format": "Keras Weights v2.3.1",
  2231. "link": "https://github.com/lutzroeder/netron/issues/428"
  2232. },
  2233. {
  2234. "type": "keras",
  2235. "target": "netron_issue_326.json",
  2236. "source": "https://github.com/lutzroeder/netron/files/3563087/netron_issue_326.zip[netron_issue_326.json]",
  2237. "format": "Keras v2.2.4-tf",
  2238. "link": "https://github.com/lutzroeder/netron/issues/326"
  2239. },
  2240. {
  2241. "type": "keras",
  2242. "target": "netron_issue_428.h5",
  2243. "source": "https://github.com/lutzroeder/netron/files/4221535/netron_issue_428.zip[netron_issue_428.h5]",
  2244. "format": "Keras v2.2.4-tf",
  2245. "link": "https://github.com/lutzroeder/netron/issues/428"
  2246. },
  2247. {
  2248. "type": "keras",
  2249. "target": "netron_issue_435.h5",
  2250. "source": "https://github.com/lutzroeder/netron/files/4269953/netron_issue_435.zip[netron_issue_435.h5]",
  2251. "format": "Keras v2.2.4",
  2252. "link": "https://github.com/lutzroeder/netron/issues/435"
  2253. },
  2254. {
  2255. "type": "keras",
  2256. "target": "netron_issue_553.h5",
  2257. "source": "https://github.com/lutzroeder/netron/files/4979486/netron_issue_553.zip[netron_issue_553.h5]",
  2258. "format": "Keras v2.2.4-tf",
  2259. "link": "https://github.com/lutzroeder/netron/issues/553"
  2260. },
  2261. {
  2262. "type": "keras",
  2263. "target": "netron_issue_855.h5",
  2264. "source": "https://github.com/lutzroeder/netron/files/7729736/netron_issue_855.h5.zip[netron_issue_855.h5]",
  2265. "format": "Keras v2.7.0",
  2266. "link": "https://github.com/lutzroeder/netron/issues/855"
  2267. },
  2268. {
  2269. "type": "keras",
  2270. "target": "nietzsche.h5",
  2271. "source": "https://github.com/lutzroeder/netron/files/2592329/keras_models.zip[nietzsche.h5]",
  2272. "format": "Keras v2.1.3",
  2273. "link": "https://github.com/lutzroeder/netron/issues/57"
  2274. },
  2275. {
  2276. "type": "keras",
  2277. "target": "residual_cnn.h5",
  2278. "source": "https://github.com/lutzroeder/netron/files/2592329/keras_models.zip[residual_cnn.h5]",
  2279. "format": "Keras v2.1.2",
  2280. "link": "https://github.com/lutzroeder/netron/issues/57"
  2281. },
  2282. {
  2283. "type": "keras",
  2284. "target": "resnet50_weights_tf_dim_ordering_tf_kernels.h5",
  2285. "source": "https://github.com/fchollet/deep-learning-models/releases/download/v0.2/resnet50_weights_tf_dim_ordering_tf_kernels.h5",
  2286. "format": "Keras Weights"
  2287. },
  2288. {
  2289. "type": "keras",
  2290. "target": "resnet50_csv_16.json",
  2291. "source": "https://github.com/lutzroeder/netron/files/4202466/resnet50_csv_16.json.zip[resnet50_csv_16.json]",
  2292. "format": "Keras",
  2293. "link": "https://github.com/lutzroeder/netron/issues/426"
  2294. },
  2295. {
  2296. "type": "keras",
  2297. "target": "sentiment_model.h5",
  2298. "source": "https://github.com/lutzroeder/netron/files/2592329/keras_models.zip[sentiment_model.h5]",
  2299. "format": "Keras v2.1.3",
  2300. "link": "https://github.com/lutzroeder/netron/issues/57"
  2301. },
  2302. {
  2303. "type": "keras",
  2304. "target": "siamese_net.json",
  2305. "source": "https://github.com/lutzroeder/netron/files/2592353/siamese_net.json.zip[siamese_net.json]",
  2306. "format": "Keras",
  2307. "link": "https://github.com/lutzroeder/netron/issues/130"
  2308. },
  2309. {
  2310. "type": "keras",
  2311. "target": "snapshot_parent_0097.h5",
  2312. "source": "https://raw.githubusercontent.com/uber-research/deep-neuroevolution/master/visual_inspector/sample_data/mujoco/final_xy_bc/snapshots/snapshot_gen_0097/snapshot_parent_0097.h5",
  2313. "error": "File format is not HDF5 Weights in 'snapshot_parent_0097.h5'.",
  2314. "link": "https://github.com/uber-research/deep-neuroevolution"
  2315. },
  2316. {
  2317. "type": "keras",
  2318. "target": "tecogan_model.h5",
  2319. "source": "https://nnabla.org/pretrained-models/nnabla-examples/GANs/tecogan/tecogan_model.h5",
  2320. "format": "HDF5 Weights",
  2321. "link": "https://github.com/sony/nnabla-examples/issues/192"
  2322. },
  2323. {
  2324. "type": "keras",
  2325. "target": "time_distributed.h5",
  2326. "source": "https://github.com/lutzroeder/netron/files/2592329/keras_models.zip[time_distributed.h5]",
  2327. "format": "Keras v2.1.2",
  2328. "link": "https://github.com/lutzroeder/netron/issues/57"
  2329. },
  2330. {
  2331. "type": "keras",
  2332. "target": "thisnotworks.h5",
  2333. "source": "https://github.com/lutzroeder/netron/files/7764266/thisnotworks.h5.zip[thisnotworks.h5]",
  2334. "format": "Keras v2.4.0",
  2335. "runtime": "tensorflow",
  2336. "link": "https://github.com/lutzroeder/netron/issues/540"
  2337. },
  2338. {
  2339. "type": "keras",
  2340. "target": "tiny-yolo-voc.h5",
  2341. "source": "https://raw.githubusercontent.com/hollance/YOLO-CoreML-MPSNNGraph/master/Convert/yad2k/model_data/tiny-yolo-voc.h5",
  2342. "format": "Keras v1.2.2",
  2343. "link": "https://github.com/hollance/YOLO-CoreML-MPSNNGraph/tree/master/Convert/yad2k/model_data"
  2344. },
  2345. {
  2346. "type": "keras",
  2347. "target": "yolov3-tiny.h5",
  2348. "source": "https://github.com/lutzroeder/netron/files/5823763/yolov3-tiny.h5.zip[yolov3-tiny.h5]",
  2349. "format": "Keras v2.4.0",
  2350. "runtime": "tensorflow",
  2351. "link": "https://github.com/lutzroeder/netron/issues/540"
  2352. },
  2353. {
  2354. "type": "keras",
  2355. "target": "test11.h5",
  2356. "source": "https://github.com/lutzroeder/netron/files/7874228/test11.h5.zip[test11.h5]",
  2357. "format": "HDF5 Weights",
  2358. "link": "https://github.com/lutzroeder/netron/issues/467"
  2359. },
  2360. {
  2361. "type": "keras",
  2362. "target": "tiramisu_fc_dense103_model.json",
  2363. "source": "https://raw.githubusercontent.com/0bserver07/One-Hundred-Layers-Tiramisu/master/tiramisu_fc_dense103_model.json",
  2364. "format": "Keras v2.0.2",
  2365. "runtime": "tensorflow",
  2366. "link": "https://github.com/0bserver07/One-Hundred-Layers-Tiramisu"
  2367. },
  2368. {
  2369. "type": "keras",
  2370. "target": "VGG19.h5.zip",
  2371. "source": "https://github.com/lutzroeder/netron/files/6098155/VGG19.h5.zip",
  2372. "link": "https://github.com/lutzroeder/netron/issues/57"
  2373. },
  2374. {
  2375. "type": "kmodel",
  2376. "target": "cifar10.kmodel",
  2377. "source": "https://github.com/lutzroeder/netron/files/7965167/cifar10.kmodel.zip[cifar10.kmodel]",
  2378. "format": "kmodel v3",
  2379. "link": "https://github.com/lutzroeder/netron/issues/871"
  2380. },
  2381. {
  2382. "type": "kmodel",
  2383. "target": "deskv2beta4.kmodel",
  2384. "source": "https://github.com/lutzroeder/netron/files/9040640/deskv2beta4.kmodel.zip[deskv2beta4.kmodel]",
  2385. "format": "kmodel v4",
  2386. "link": "https://github.com/lutzroeder/netron/issues/871"
  2387. },
  2388. {
  2389. "type": "kmodel",
  2390. "target": "iris.kmodel",
  2391. "source": "https://github.com/lutzroeder/netron/files/8111178/iris.kmodel.zip[iris.kmodel]",
  2392. "format": "kmodel v4",
  2393. "link": "https://github.com/lutzroeder/netron/issues/871"
  2394. },
  2395. {
  2396. "type": "kmodel",
  2397. "target": "LPbox_1_branch.kmodel",
  2398. "source": "https://github.com/lutzroeder/netron/files/8402871/LPbox_1_branch.kmodel.zip[LPbox_1_branch.kmodel]",
  2399. "format": "kmodel v4",
  2400. "link": "https://github.com/lutzroeder/netron/issues/871"
  2401. },
  2402. {
  2403. "type": "kmodel",
  2404. "target": "mbnetv1.kmodel",
  2405. "source": "https://github.com/lutzroeder/netron/files/8111310/mbnetv1.kmodel.zip[mbnetv1.kmodel]",
  2406. "format": "kmodel v3",
  2407. "link": "https://github.com/lutzroeder/netron/issues/871"
  2408. },
  2409. {
  2410. "type": "kmodel",
  2411. "target": "mbnet75.kmodel",
  2412. "source": "https://github.com/lutzroeder/netron/files/9040676/mbnet75.kmodel.zip[mbnet75.kmodel]",
  2413. "format": "kmodel v4",
  2414. "link": "https://github.com/lutzroeder/netron/issues/871"
  2415. },
  2416. {
  2417. "type": "kmodel",
  2418. "target": "mobilenet_v2.kmodel",
  2419. "source": "https://github.com/lutzroeder/netron/files/7965168/mobilenet_v2.kmodel.zip[mobilenet_v2.kmodel]",
  2420. "format": "kmodel v5",
  2421. "link": "https://github.com/lutzroeder/netron/issues/871"
  2422. },
  2423. {
  2424. "type": "kmodel",
  2425. "target": "model.kmodel",
  2426. "source": "https://github.com/lutzroeder/netron/files/8111371/model.kmodel.zip[model.kmodel]",
  2427. "format": "kmodel v4",
  2428. "link": "https://github.com/lutzroeder/netron/issues/871"
  2429. },
  2430. {
  2431. "type": "kmodel",
  2432. "target": "mnist.kmodel",
  2433. "source": "https://github.com/lutzroeder/netron/files/8111312/mnist.kmodel.zip[mnist.kmodel]",
  2434. "format": "kmodel v5",
  2435. "link": "https://github.com/lutzroeder/netron/issues/871"
  2436. },
  2437. {
  2438. "type": "kmodel",
  2439. "target": "RFB-320.kmodel",
  2440. "source": "https://github.com/lutzroeder/netron/files/7965166/RFB-320.kmodel.zip[RFB-320.kmodel]",
  2441. "format": "kmodel v4",
  2442. "link": "https://github.com/lutzroeder/netron/issues/871"
  2443. },
  2444. {
  2445. "type": "kmodel",
  2446. "target": "test1.kmodel",
  2447. "source": "https://github.com/lutzroeder/netron/files/8568261/test1.kmodel.zip[test1.kmodel]",
  2448. "format": "kmodel v4",
  2449. "link": "https://github.com/lutzroeder/netron/issues/871"
  2450. },
  2451. {
  2452. "type": "kmodel",
  2453. "target": "ulffd_landmark.kmodel",
  2454. "source": "https://github.com/lutzroeder/netron/files/8111629/ulffd_landmark.kmodel.zip[ulffd_landmark.kmodel]",
  2455. "format": "kmodel v4",
  2456. "link": "https://github.com/lutzroeder/netron/issues/871"
  2457. },
  2458. {
  2459. "type": "kmodel",
  2460. "target": "yolofast.kmodel",
  2461. "source": "https://github.com/lutzroeder/netron/files/8758983/yolofast.kmodel.zip[yolofast.kmodel]",
  2462. "format": "kmodel v5",
  2463. "link": "https://github.com/lutzroeder/netron/issues/871"
  2464. },
  2465. {
  2466. "type": "kmodel",
  2467. "target": "yolox_nano_224.kmodel",
  2468. "source": "https://github.com/lutzroeder/netron/files/8695383/yolox_nano_224.kmodel.zip[yolox_nano_224.kmodel]",
  2469. "format": "kmodel v5",
  2470. "link": "https://github.com/lutzroeder/netron/issues/871"
  2471. },
  2472. {
  2473. "type": "lasagne",
  2474. "target": "net2.pkl",
  2475. "source": "https://raw.githubusercontent.com/Aabglov/LasaganeTest/master/results/net2.pkl",
  2476. "format": "Lasagne",
  2477. "link": "https://github.com/Aabglov/LasaganeTest"
  2478. },
  2479. {
  2480. "type": "lightgbm",
  2481. "target": "rf_classifier.model",
  2482. "source": "https://github.com/lutzroeder/netron/files/6329766/rf_classifier.model.zip[rf_classifier.model]",
  2483. "format": "LightGBM v3",
  2484. "link": "https://github.com/lutzroeder/netron/issues/669"
  2485. },
  2486. {
  2487. "type": "lightgbm",
  2488. "target": "simple_example.pkl",
  2489. "source": "https://github.com/lutzroeder/netron/files/5978325/simple_example.pkl.zip[simple_example.pkl]",
  2490. "format": "LightGBM Pickle v2",
  2491. "link": "https://github.com/lutzroeder/netron/issues/669"
  2492. },
  2493. {
  2494. "type": "lightgbm",
  2495. "target": "simple_example.txt",
  2496. "source": "https://github.com/lutzroeder/netron/files/5832361/simple_example.txt.zip[simple_example.txt]",
  2497. "format": "LightGBM v3",
  2498. "link": "https://github.com/lutzroeder/netron/issues/669"
  2499. },
  2500. {
  2501. "type": "mediapipe",
  2502. "target": "clipped_images_from_file_at_24fps.pbtxt",
  2503. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/graphs/media_sequence/clipped_images_from_file_at_24fps.pbtxt",
  2504. "format": "MediaPipe",
  2505. "link": "https://github.com/google/mediapipe"
  2506. },
  2507. {
  2508. "type": "mediapipe",
  2509. "target": "cpu_oss_hairsegment.pbtxt",
  2510. "source": "https://github.com/lutzroeder/netron/files/5760736/cpu_oss_hairsegment.pbtxt.zip[cpu_oss_hairsegment.pbtxt]",
  2511. "format": "MediaPipe",
  2512. "link": "https://github.com/lutzroeder/netron/issues/423"
  2513. },
  2514. {
  2515. "type": "mediapipe",
  2516. "target": "face_detection_mobile_cpu.pbtxt",
  2517. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/graphs/face_detection/face_detection_mobile_cpu.pbtxt",
  2518. "format": "MediaPipe",
  2519. "link": "https://github.com/google/mediapipe"
  2520. },
  2521. {
  2522. "type": "mediapipe",
  2523. "target": "face_landmarks_from_pose_cpu.pbtxt",
  2524. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/modules/holistic_landmark/face_landmarks_from_pose_cpu.pbtxt",
  2525. "format": "MediaPipe",
  2526. "link": "https://github.com/lutzroeder/netron/issues/550"
  2527. },
  2528. {
  2529. "type": "mediapipe",
  2530. "target": "hand_detection_mobile.pbtxt",
  2531. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/graphs/hand_tracking/hand_detection_mobile.pbtxt",
  2532. "format": "MediaPipe",
  2533. "link": "https://github.com/google/mediapipe"
  2534. },
  2535. {
  2536. "type": "mediapipe",
  2537. "target": "hand_tracking.pbtxt",
  2538. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/modules/holistic_landmark/hand_tracking.pbtxt",
  2539. "format": "MediaPipe",
  2540. "link": "https://github.com/lutzroeder/netron/issues/550"
  2541. },
  2542. {
  2543. "type": "mediapipe",
  2544. "target": "hand_tracking_mobile.pbtxt",
  2545. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/graphs/hand_tracking/hand_tracking_mobile.pbtxt",
  2546. "format": "MediaPipe",
  2547. "link": "https://github.com/google/mediapipe"
  2548. },
  2549. {
  2550. "type": "mediapipe",
  2551. "target": "object_detection_desktop_live.pbtxt",
  2552. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/examples/coral/graphs/object_detection_desktop_live.pbtxt",
  2553. "format": "MediaPipe",
  2554. "link": "https://github.com/google/mediapipe"
  2555. },
  2556. {
  2557. "type": "mediapipe",
  2558. "target": "object_occlusion_tracking.pbtxt",
  2559. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/graphs/object_detection_3d/object_occlusion_tracking.pbtxt",
  2560. "format": "MediaPipe",
  2561. "link": "https://github.com/lutzroeder/netron/issues/444"
  2562. },
  2563. {
  2564. "type": "mediapipe",
  2565. "target": "tvl1_flow_and_rgb_from_file.pbtxt",
  2566. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/graphs/media_sequence/tvl1_flow_and_rgb_from_file.pbtxt",
  2567. "format": "MediaPipe",
  2568. "link": "https://github.com/google/mediapipe"
  2569. },
  2570. {
  2571. "type": "mediapipe",
  2572. "target": "yt8m_dataset_model_inference.pbtxt",
  2573. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/graphs/youtube8m/yt8m_dataset_model_inference.pbtxt",
  2574. "format": "MediaPipe",
  2575. "link": "https://github.com/google/mediapipe"
  2576. },
  2577. {
  2578. "type": "mlnet",
  2579. "target": "BinaryClassification_AutoML_SentimentModel.zip",
  2580. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/BinaryClassification_AutoML/SentimentAnalysis/MLModels/SentimentModel.zip",
  2581. "format": "ML.NET v1.0.27701.1",
  2582. "link": "https://github.com/dotnet/machinelearning-samples"
  2583. },
  2584. {
  2585. "type": "mlnet",
  2586. "target": "BikeDemandForecasting.zip",
  2587. "source": "https://github.com/lutzroeder/netron/files/4042150/MLModel.zip",
  2588. "format": "ML.NET v1.4.28305.1",
  2589. "link": "https://github.com/dotnet/machinelearning-samples"
  2590. },
  2591. {
  2592. "type": "mlnet",
  2593. "target": "ep_model1.zip",
  2594. "source": "https://github.com/lutzroeder/netron/files/4216033/ep_model1.zip",
  2595. "format": "ML.NET v1.0.0.0",
  2596. "link": "https://github.com/lutzroeder/netron/issues/170"
  2597. },
  2598. {
  2599. "type": "mlnet",
  2600. "target": "ep_model3.zip",
  2601. "source": "https://github.com/lutzroeder/netron/files/4216304/ep_model3.zip",
  2602. "format": "ML.NET v1.0.0.0",
  2603. "link": "https://github.com/lutzroeder/netron/issues/170"
  2604. },
  2605. {
  2606. "type": "mlnet",
  2607. "target": "FastTreeModel.zip",
  2608. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/Regression_BikeSharingDemand/BikeSharingDemand/MLModels/FastTreeModel.zip",
  2609. "format": "ML.NET v1.0.0.0",
  2610. "link": "https://github.com/dotnet/machinelearning-samples"
  2611. },
  2612. {
  2613. "type": "mlnet",
  2614. "target": "FastTreeTweedieModel.zip",
  2615. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/Regression_BikeSharingDemand/BikeSharingDemand/MLModels/FastTreeTweedieModel.zip",
  2616. "format": "ML.NET v1.0.0.0",
  2617. "link": "https://github.com/dotnet/machinelearning-samples"
  2618. },
  2619. {
  2620. "type": "mlnet",
  2621. "target": "GitHubLabelerModel.zip",
  2622. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/end-to-end-apps/MulticlassClassification-GitHubLabeler/GitHubLabeler/MLModels/GitHubLabelerModel.zip",
  2623. "format": "ML.NET v1.0.27701.1",
  2624. "link": "https://github.com/dotnet/machinelearning-samples"
  2625. },
  2626. {
  2627. "type": "mlnet",
  2628. "target": "ImageClassification.Predict.imageClassifier.zip",
  2629. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/DeepLearning_TensorFlowEstimator/ImageClassification.Predict/assets/inputs/MLNETModel/imageClassifier.zip",
  2630. "format": "ML.NET v1.4.28230.4",
  2631. "link": "https://github.com/dotnet/machinelearning-samples"
  2632. },
  2633. {
  2634. "type": "mlnet",
  2635. "target": "IrisClassificationModel.zip",
  2636. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/MulticlassClassification_Iris/IrisClassification/MLModels/IrisClassificationModel.zip",
  2637. "format": "ML.NET v1.0.0.0",
  2638. "link": "https://github.com/dotnet/machinelearning-samples"
  2639. },
  2640. {
  2641. "type": "mlnet",
  2642. "target": "MovieRecommender_Model.zip",
  2643. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/end-to-end-apps/Recommendation-MovieRecommender/MovieRecommender_Model/Model/model.zip",
  2644. "format": "ML.NET v1.4.28230.4",
  2645. "link": "https://github.com/dotnet/machinelearning-samples"
  2646. },
  2647. {
  2648. "type": "mlnet",
  2649. "target": "ngram.zip",
  2650. "source": "https://github.com/lutzroeder/netron/files/4216079/ngram.zip?raw=true",
  2651. "format": "ML.NET v3.10.29.504",
  2652. "link": "https://github.com/lutzroeder/netron/issues/170"
  2653. },
  2654. {
  2655. "type": "mlnet",
  2656. "target": "PoissonModel.zip",
  2657. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/Regression_BikeSharingDemand/BikeSharingDemand/MLModels/PoissonModel.zip",
  2658. "format": "ML.NET v1.0.0.0",
  2659. "link": "https://github.com/dotnet/machinelearning-samples"
  2660. },
  2661. {
  2662. "type": "mlnet",
  2663. "target": "product_month_fastTreeTweedie.zip",
  2664. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/end-to-end-apps/Forecasting-Sales/src/eShopDashboard/Forecast/ModelFiles/product_month_fastTreeTweedie.zip",
  2665. "format": "ML.NET v1.3.28006.10",
  2666. "link": "https://github.com/dotnet/machinelearning-samples"
  2667. },
  2668. {
  2669. "type": "mlnet",
  2670. "target": "ProductSalesChangePointModel.zip",
  2671. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/end-to-end-apps/AnomalyDetection-Sales/SpikeDetectionE2EApp/MLModels/ProductSalesChangePointModel.zip",
  2672. "format": "ML.NET v1.4.28305.1",
  2673. "link": "https://github.com/dotnet/machinelearning-samples"
  2674. },
  2675. {
  2676. "type": "mlnet",
  2677. "target": "ProductSalesSpikeModel.zip",
  2678. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/end-to-end-apps/AnomalyDetection-Sales/SpikeDetectionE2EApp/MLModels/ProductSalesSpikeModel.zip",
  2679. "format": "ML.NET v1.4.28305.1",
  2680. "link": "https://github.com/dotnet/machinelearning-samples"
  2681. },
  2682. {
  2683. "type": "mlnet",
  2684. "target": "randomizedPca.zip",
  2685. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/AnomalyDetection_CreditCardFraudDetection/CreditCardFraudDetection.Predictor/assets/input/randomizedPca.zip",
  2686. "format": "ML.NET v1.2.27902.10",
  2687. "link": "https://github.com/dotnet/machinelearning-samples"
  2688. },
  2689. {
  2690. "type": "mlnet",
  2691. "target": "retailClustering.zip",
  2692. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/Clustering_CustomerSegmentation/CustomerSegmentation.Train/assets/outputs/retailClustering.zip",
  2693. "format": "ML.NET v1.0.27701.1",
  2694. "link": "https://github.com/dotnet/machinelearning-samples"
  2695. },
  2696. {
  2697. "type": "mlnet",
  2698. "target": "SDCAModel.zip",
  2699. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/Regression_BikeSharingDemand/BikeSharingDemand/MLModels/SDCAModel.zip",
  2700. "format": "ML.NET v1.0.0.0",
  2701. "link": "https://github.com/dotnet/machinelearning-samples"
  2702. },
  2703. {
  2704. "type": "mlnet",
  2705. "target": "TaxiFareModel.zip",
  2706. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/Regression_AutoML/TaxiFarePrediction/MLModels/TaxiFareModel.zip",
  2707. "format": "ML.NET v1.5.28926.5",
  2708. "link": "https://github.com/dotnet/machinelearning-samples"
  2709. },
  2710. {
  2711. "type": "mlnet",
  2712. "target": "termlookup_with_key.zip",
  2713. "source": "https://github.com/lutzroeder/netron/files/4216237/termlookup_with_key.zip?raw=true",
  2714. "format": "ML.NET v1.0.0.0",
  2715. "link": "https://github.com/lutzroeder/netron/issues/170"
  2716. },
  2717. {
  2718. "type": "mlnet",
  2719. "target": "TinyYoloModel.zip",
  2720. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/61b428c746f39069a9d1d92f9e0f819e6beb30f3/samples/csharp/end-to-end-apps/DeepLearning_ObjectDetection_Onnx/OnnxObjectDetectionE2EAPP/ML/MLNETModel/TinyYoloModel.zip",
  2721. "format": "ML.NET v1.0.27701.1"
  2722. },
  2723. {
  2724. "type": "mnn",
  2725. "target": "blazeface.mnn",
  2726. "source": "https://raw.githubusercontent.com/xindongzhang/MNN-APPLICATIONS/master/applications/blazeface/tensorflow/jni/blazeface.mnn",
  2727. "format": "MNN v2",
  2728. "link": "https://github.com/xindongzhang/MNN-APPLICATIONS"
  2729. },
  2730. {
  2731. "type": "mnn",
  2732. "target": "blazeface_quant.mnn",
  2733. "source": "https://raw.githubusercontent.com/xindongzhang/MNN-APPLICATIONS/master/applications/blazeface/tensorflow/jni/blazeface_quant.mnn",
  2734. "format": "MNN v2",
  2735. "link": "https://github.com/xindongzhang/MNN-APPLICATIONS"
  2736. },
  2737. {
  2738. "type": "mnn",
  2739. "target": "face_det.mnn",
  2740. "source": "https://raw.githubusercontent.com/xindongzhang/MNN-APPLICATIONS/master/applications/mssd/tflite/jni/face_det.mnn",
  2741. "format": "MNN v2",
  2742. "link": "https://github.com/xindongzhang/MNN-APPLICATIONS"
  2743. },
  2744. {
  2745. "type": "mnn",
  2746. "target": "Kmeans.mnn",
  2747. "source": "https://github.com/lutzroeder/netron/files/5405963/Kmeans.mnn.zip[Kmeans.mnn]",
  2748. "format": "MNN v2",
  2749. "link": "https://github.com/lutzroeder/netron/issues/341"
  2750. },
  2751. {
  2752. "type": "mnn",
  2753. "target": "inception-v3.mnn",
  2754. "source": "https://raw.githubusercontent.com/alibaba/MNN/master/benchmark/models/inception-v3.mnn",
  2755. "format": "MNN v2",
  2756. "link": "https://github.com/alibaba/MNN"
  2757. },
  2758. {
  2759. "type": "mnn",
  2760. "target": "inception-v3.mnn",
  2761. "source": "https://raw.githubusercontent.com/alibaba/MNN/master/benchmark/models/inception-v3.mnn",
  2762. "format": "MNN v2",
  2763. "link": "https://github.com/alibaba/MNN"
  2764. },
  2765. {
  2766. "type": "mnn",
  2767. "target": "mobilenet-v1-1.0.mnn",
  2768. "source": "https://raw.githubusercontent.com/alibaba/MNN/master/benchmark/models/mobilenet-v1-1.0.mnn",
  2769. "format": "MNN v2",
  2770. "link": "https://github.com/alibaba/MNN"
  2771. },
  2772. {
  2773. "type": "mnn",
  2774. "target": "MobileNetV2_224.mnn",
  2775. "source": "https://raw.githubusercontent.com/alibaba/MNN/master/benchmark/models/MobileNetV2_224.mnn",
  2776. "format": "MNN v2",
  2777. "link": "https://github.com/alibaba/MNN"
  2778. },
  2779. {
  2780. "type": "mnn",
  2781. "target": "resnet-v2-50.mnn",
  2782. "source": "https://raw.githubusercontent.com/alibaba/MNN/master/benchmark/models/resnet-v2-50.mnn",
  2783. "format": "MNN v2",
  2784. "link": "https://github.com/alibaba/MNN"
  2785. },
  2786. {
  2787. "type": "mnn",
  2788. "target": "simple.mnn",
  2789. "source": "https://github.com/lutzroeder/netron/files/3698466/simple.mnn.zip[simple.mnn]",
  2790. "format": "MNN v2",
  2791. "link": "https://github.com/lutzroeder/netron/issues/341"
  2792. },
  2793. {
  2794. "type": "mnn",
  2795. "target": "SqueezeNetV1.0.mnn",
  2796. "source": "https://raw.githubusercontent.com/alibaba/MNN/master/benchmark/models/SqueezeNetV1.0.mnn",
  2797. "format": "MNN v2",
  2798. "link": "https://github.com/alibaba/MNN"
  2799. },
  2800. {
  2801. "type": "mnn",
  2802. "target": "tf_body_det.mnn",
  2803. "source": "https://raw.githubusercontent.com/xindongzhang/MNN-APPLICATIONS/master/applications/mssd/tensorflow/jni/tf_body_det.mnn",
  2804. "format": "MNN v2",
  2805. "link": "https://github.com/xindongzhang/MNN-APPLICATIONS"
  2806. },
  2807. {
  2808. "type": "mslite",
  2809. "target": "blazeface_quant.ms",
  2810. "source": "https://github.com/lutzroeder/netron/files/6097966/blazeface_quant.ms.zip[blazeface_quant.ms]",
  2811. "error": "MSL0 format is deprecated.",
  2812. "link": "https://github.com/lutzroeder/netron/issues/600"
  2813. },
  2814. {
  2815. "type": "mslite",
  2816. "target": "control_flow_ut_while_0122.ms",
  2817. "source": "https://github.com/lutzroeder/netron/files/6097971/control_flow_ut_while_0122.ms.zip[control_flow_ut_while_0122.ms]",
  2818. "error": "MSL1 format is deprecated.",
  2819. "link": "https://github.com/lutzroeder/netron/issues/600"
  2820. },
  2821. {
  2822. "type": "mslite",
  2823. "target": "mnist.ms",
  2824. "source": "https://github.com/lutzroeder/netron/files/6128484/mnist.ms.zip[mnist.ms]",
  2825. "format": "MindSpore Lite v1.2.0",
  2826. "link": "https://github.com/lutzroeder/netron/issues/600"
  2827. },
  2828. {
  2829. "type": "mslite",
  2830. "target": "squeezenet1.1.ms",
  2831. "source": "https://github.com/lutzroeder/netron/files/6128485/squeezenet1.1.ms.zip[squeezenet1.1.ms]",
  2832. "format": "MindSpore Lite v1.2.0",
  2833. "link": "https://github.com/lutzroeder/netron/issues/600"
  2834. },
  2835. {
  2836. "type": "mxnet",
  2837. "target": "bvlc_alexnet-symbol.json,bvlc_alexnet-0000.params",
  2838. "source": "http://s3.amazonaws.com/store.carml.org/models/mxnet/bvlc_alexnet/bvlc_alexnet-symbol.json,http://s3.amazonaws.com/store.carml.org/models/mxnet/bvlc_alexnet/bvlc_alexnet-0000.params",
  2839. "format": "MXNet v0.10.0",
  2840. "link": "https://github.com/rai-project/mxnet/blob/master/builtin_models/BVLC-AlexNet.yml"
  2841. },
  2842. {
  2843. "type": "mxnet",
  2844. "target": "crepe.mar",
  2845. "source": "https://s3.amazonaws.com/model-server/model_archive_1.0/crepe.mar",
  2846. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2847. },
  2848. {
  2849. "type": "mxnet",
  2850. "target": "conv_weights_sharing.json",
  2851. "source": "https://github.com/lutzroeder/netron/files/3016064/conv_weights_sharing.json.zip[conv_weights_sharing.json]",
  2852. "format": "MXNet v1.3.0",
  2853. "link": "https://github.com/lutzroeder/netron/issues/245"
  2854. },
  2855. {
  2856. "type": "mxnet",
  2857. "target": "deep3d-symbol.json",
  2858. "source": "https://raw.githubusercontent.com/dmlc/mxnet-gtc-tutorial/master/deep3d/deep3d-symbol.json",
  2859. "format": "MXNet",
  2860. "link": "https://github.com/dmlc/mxnet-gtc-tutorial/tree/master/deep3d"
  2861. },
  2862. {
  2863. "type": "mxnet",
  2864. "target": "dpn68-symbol.json",
  2865. "source": "http://s3.amazonaws.com/store.carml.org/models/mxnet/dpn68/dpn68-symbol.json",
  2866. "format": "MXNet",
  2867. "link": "https://github.com/rai-project/mxnet/blob/master/builtin_models/DPN68.yml"
  2868. },
  2869. {
  2870. "type": "mxnet",
  2871. "target": "ferplus.model",
  2872. "source": "https://s3.amazonaws.com/model-server/models/FERPlus/ferplus.model",
  2873. "format": "MXNet Model Server v0.2",
  2874. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2875. },
  2876. {
  2877. "type": "mxnet",
  2878. "target": "inception_resnet_v2-symbol.json",
  2879. "source": "https://raw.githubusercontent.com/soeaver/mxnet-model/master/cls/inception/inception_resnet_v2-symbol.json",
  2880. "format": "MXNet v1.0.1",
  2881. "link": "https://github.com/soeaver/mxnet-model/tree/master/cls"
  2882. },
  2883. {
  2884. "type": "mxnet",
  2885. "target": "inception_v1.model",
  2886. "source": "https://s3.amazonaws.com/model-server/models/onnx-inception_v1/inception_v1.model",
  2887. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2888. },
  2889. {
  2890. "type": "mxnet",
  2891. "target": "inception_v3-symbol.json",
  2892. "source": "https://raw.githubusercontent.com/soeaver/mxnet-model/master/cls/inception/inception_v3-symbol.json",
  2893. "format": "MXNet v0.11.0",
  2894. "link": "https://github.com/soeaver/mxnet-model/tree/master/cls"
  2895. },
  2896. {
  2897. "type": "mxnet",
  2898. "target": "Inception-7-symbol.json",
  2899. "source": "https://raw.githubusercontent.com/bzshang/yelp-photo-classification/master/mxnet_model/inception_v3/Inception-7-symbol.json",
  2900. "format": "MXNet",
  2901. "link": "https://github.com/bzshang/yelp-photo-classification/tree/master/mxnet_model/inception_v3"
  2902. },
  2903. {
  2904. "type": "mxnet",
  2905. "target": "Inception-BN.model",
  2906. "source": "https://s3.amazonaws.com/model-server/models/inception-bn/Inception-BN.model"
  2907. },
  2908. {
  2909. "type": "mxnet",
  2910. "target": "Inception-BN-0126.params,Inception-BN-symbol.json",
  2911. "source": "http://data.mxnet.io/models/imagenet/inception-bn/Inception-BN-0126.params,http://data.mxnet.io/models/imagenet/inception-bn/Inception-BN-symbol.json",
  2912. "format": "MXNet",
  2913. "link": "https://mxnet.apache.org/model_zoo/index.html"
  2914. },
  2915. {
  2916. "type": "mxnet",
  2917. "target": "lstm_ptb.model",
  2918. "source": "https://s3.amazonaws.com/model-server/models/lstm_ptb/lstm_ptb.model",
  2919. "format": "MXNet Model Server v0.1",
  2920. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2921. },
  2922. {
  2923. "type": "mxnet",
  2924. "target": "lstm_ptb-symbol.json",
  2925. "source": "https://s3.amazonaws.com/model-server/models/lstm_ptb/lstm_ptb-symbol.json",
  2926. "format": "MXNet v0.11.0",
  2927. "link": "https://github.com/awslabs/mxnet-model-server/tree/master/examples/lstm_ptb"
  2928. },
  2929. {
  2930. "type": "mxnet",
  2931. "target": "mobilenet-v1-tvm.json",
  2932. "source": "https://github.com/lutzroeder/netron/files/2636924/mobilenet-v1-tvm.json.zip[mobilenet-v1-tvm.json]",
  2933. "format": "MXNet",
  2934. "producer": "TVM",
  2935. "link": "https://github.com/lutzroeder/netron/issues/199"
  2936. },
  2937. {
  2938. "type": "mxnet",
  2939. "target": "nin.model",
  2940. "source": "https://s3.amazonaws.com/model-server/models/nin/nin.model",
  2941. "format": "MXNet Model Server v0.1",
  2942. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2943. },
  2944. {
  2945. "type": "mxnet",
  2946. "target": "resnet-18.model",
  2947. "source": "https://s3.amazonaws.com/model-server/models/resnet-18/resnet-18.model",
  2948. "format": "MXNet Model Server v0.1",
  2949. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2950. },
  2951. {
  2952. "type": "mxnet",
  2953. "target": "resnet-50-0000.params",
  2954. "source": "http://data.mxnet.io/models/imagenet/resnet/50-layers/resnet-50-0000.params",
  2955. "format": "MXNet",
  2956. "link": "https://github.com/awslabs/deeplearning-benchmark/blob/master/image_classification/common/modelzoo.py"
  2957. },
  2958. {
  2959. "type": "mxnet",
  2960. "target": "resnet-101-symbol.json",
  2961. "source": "http://data.mxnet.io/models/imagenet/resnet/101-layers/resnet-101-symbol.json",
  2962. "format": "MXNet",
  2963. "link": "https://github.com/awslabs/deeplearning-benchmark/blob/master/image_classification/common/modelzoo.py"
  2964. },
  2965. {
  2966. "type": "mxnet",
  2967. "target": "resnet-152-symbol.json",
  2968. "source": "http://data.mxnet.io/models/imagenet/resnet/152-layers/resnet-152-symbol.json",
  2969. "format": "MXNet",
  2970. "link": "https://github.com/awslabs/deeplearning-benchmark/blob/master/image_classification/common/modelzoo.py"
  2971. },
  2972. {
  2973. "type": "mxnet",
  2974. "target": "resnext-101-64x4d.model",
  2975. "source": "https://github.com/lutzroeder/netron/files/6179250/resnext-101-64x4d.model.zip[resnext-101-64x4d.model]",
  2976. "format": "MXNet Model Server v0.1",
  2977. "runtime": "MXNet v0.12",
  2978. "link": "https://github.com/lutzroeder/netron/issues/286"
  2979. },
  2980. {
  2981. "type": "mxnet",
  2982. "target": "squeezenet_v1.1.model",
  2983. "source": "https://s3.amazonaws.com/model-server/models/squeezenet_v1.1/squeezenet_v1.1.model"
  2984. },
  2985. {
  2986. "type": "mxnet",
  2987. "target": "squeezenet_v1.1.mar",
  2988. "source": "https://s3.amazonaws.com/model-server/model_archive_1.0/squeezenet_v1.1.mar",
  2989. "format": "MXNet Model Archive v1.0",
  2990. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2991. },
  2992. {
  2993. "type": "mxnet",
  2994. "target": "vgg16.mar",
  2995. "source": "https://github.com/lutzroeder/netron/files/6179223/vgg16.mar.zip[vgg16.mar]",
  2996. "format": "MXNet Model Archive v1.0",
  2997. "link": "https://github.com/lutzroeder/netron/issues/286"
  2998. },
  2999. {
  3000. "type": "ncnn",
  3001. "target": "centerface.param,centerface.bin",
  3002. "source": "https://raw.githubusercontent.com/MirrorYuChen/ncnn_example/798f64b7d5f0b883e05cb994258d43658b0661b6/models/centerface.param,https://raw.githubusercontent.com/MirrorYuChen/ncnn_example/798f64b7d5f0b883e05cb994258d43658b0661b6/models/centerface.bin",
  3003. "format": "ncnn",
  3004. "link": "https://github.com/MirrorYuChen/ncnn_example"
  3005. },
  3006. {
  3007. "type": "ncnn",
  3008. "target": "darknet_yolov2.cfg.ncnn,darknet_yolov2.weights.ncnn",
  3009. "source": "https://github.com/00liujj/gen-ncnn-models/raw/master/tests/darknet_yolov2.cfg.ncnn,https://github.com/00liujj/gen-ncnn-models/raw/master/tests/darknet_yolov2.weights.ncnn",
  3010. "format": "ncnn",
  3011. "link": "https://github.com/00liujj/gen-ncnn-models"
  3012. },
  3013. {
  3014. "type": "ncnn",
  3015. "target": "faces_wider_squeezenet.param,faces_wider_squeezenet.bin",
  3016. "source": "https://deepdetect.com/models/init/embedded/images/detection/squeezenet_ssd_faces_ncnn.tar.gz[faces_wider_squeezenet.param,faces_wider_squeezenet.bin]",
  3017. "format": "ncnn",
  3018. "link": "https://www.deepdetect.com/models/faces_embedded_ncnn"
  3019. },
  3020. {
  3021. "type": "ncnn",
  3022. "target": "frozen.pb.cfg.ncnn,frozen.pb.weights.ncnn",
  3023. "source": "https://github.com/00liujj/gen-ncnn-models/raw/master/tests/frozen.pb.cfg.ncnn,https://github.com/00liujj/gen-ncnn-models/raw/master/tests/frozen.pb.weights.ncnn",
  3024. "format": "ncnn",
  3025. "link": "https://github.com/00liujj/gen-ncnn-models"
  3026. },
  3027. {
  3028. "type": "ncnn",
  3029. "target": "googlenet.param",
  3030. "source": "https://raw.githubusercontent.com/Tencent/ncnn/master/benchmark/googlenet.param",
  3031. "format": "ncnn",
  3032. "link": "https://github.com/Tencent/ncnn"
  3033. },
  3034. {
  3035. "type": "ncnn",
  3036. "target": "mnet-opt.param,mnet-opt.bin",
  3037. "source": "https://raw.githubusercontent.com/MirrorYuChen/ncnn_example/798f64b7d5f0b883e05cb994258d43658b0661b6/models/mnet-opt.param,https://raw.githubusercontent.com/MirrorYuChen/ncnn_example/798f64b7d5f0b883e05cb994258d43658b0661b6/models/mnet-opt.bin",
  3038. "format": "ncnn",
  3039. "link": "https://github.com/MirrorYuChen/ncnn_example"
  3040. },
  3041. {
  3042. "type": "ncnn",
  3043. "target": "mnet.25.zip",
  3044. "source": "https://github.com/lutzroeder/netron/files/6813063/mnet.25.zip",
  3045. "format": "ncnn",
  3046. "link": "https://github.com/MirrorYuChen/ncnn_example"
  3047. },
  3048. {
  3049. "type": "ncnn",
  3050. "target": "mobilefacenet.bin,mobilefacenet.param",
  3051. "source": "https://raw.githubusercontent.com/GRAYKEY/mobilefacenet_ncnn/master/models/mobilefacenet.bin,https://raw.githubusercontent.com/GRAYKEY/mobilefacenet_ncnn/master/models/mobilefacenet.param",
  3052. "format": "ncnn",
  3053. "link": "https://github.com/GRAYKEY/mobilefacenet_ncnn"
  3054. },
  3055. {
  3056. "type": "ncnn",
  3057. "target": "mobilenetv2_yolov3.param",
  3058. "source": "https://raw.githubusercontent.com/Tencent/ncnn/master/benchmark/mobilenetv2_yolov3.param",
  3059. "format": "ncnn",
  3060. "link": "https://github.com/Tencent/ncnn"
  3061. },
  3062. {
  3063. "type": "ncnn",
  3064. "target": "MobileNetSSD_deploy.param.bin,MobileNetSSD_deploy.bin",
  3065. "source": "https://raw.githubusercontent.com/chehongshu/ncnnforandroid_objectiondetection_Mobilenetssd/master/MobileNetSSD_demo/app/src/main/assets/MobileNetSSD_deploy.param.bin,https://raw.githubusercontent.com/chehongshu/ncnnforandroid_objectiondetection_Mobilenetssd/master/MobileNetSSD_demo/app/src/main/assets/MobileNetSSD_deploy.bin",
  3066. "format": "ncnn",
  3067. "link": "https://github.com/chehongshu/ncnnforandroid_objectiondetection_Mobilenetssd"
  3068. },
  3069. {
  3070. "type": "ncnn",
  3071. "target": "ncnn_yolo2_det3.bin,ncnn_yolo2_det3.param",
  3072. "source": "https://raw.githubusercontent.com/kyo055/ncnn_yolo2/master/models/det3.bin,https://raw.githubusercontent.com/kyo055/ncnn_yolo2/master/models/det3.param",
  3073. "format": "ncnn",
  3074. "link": "https://github.com/kyo055/ncnn_yolo2"
  3075. },
  3076. {
  3077. "type": "ncnn",
  3078. "target": "netron_issue_397.param",
  3079. "source": "https://github.com/lutzroeder/netron/files/3981934/det.txt",
  3080. "format": "ncnn",
  3081. "link": "https://github.com/lutzroeder/netron/issues/397"
  3082. },
  3083. {
  3084. "type": "ncnn",
  3085. "target": "proxylessnasnet.param",
  3086. "source": "https://raw.githubusercontent.com/Tencent/ncnn/master/benchmark/proxylessnasnet.param",
  3087. "format": "ncnn",
  3088. "link": "https://github.com/Tencent/ncnn"
  3089. },
  3090. {
  3091. "type": "ncnn",
  3092. "target": "resnet18_int8.param",
  3093. "source": "https://raw.githubusercontent.com/Tencent/ncnn/master/benchmark/resnet18_int8.param",
  3094. "format": "ncnn",
  3095. "link": "https://github.com/Tencent/ncnn"
  3096. },
  3097. {
  3098. "type": "ncnn",
  3099. "target": "rnn-lstm-gru.param,rnn-lstm-gru.bin",
  3100. "source": "https://github.com/lutzroeder/netron/files/5800011/rnn-lstm-gru.zip[rnn-lstm-gru.param,rnn-lstm-gru.bin]",
  3101. "format": "ncnn",
  3102. "link": "https://github.com/lutzroeder/netron/issues/296"
  3103. },
  3104. {
  3105. "type": "ncnn",
  3106. "target": "shufflenet.param",
  3107. "source": "https://raw.githubusercontent.com/Tencent/ncnn/master/benchmark/shufflenet.param",
  3108. "format": "ncnn",
  3109. "link": "https://github.com/Tencent/ncnn"
  3110. },
  3111. {
  3112. "type": "ncnn",
  3113. "target": "squeezenet.param",
  3114. "source": "https://raw.githubusercontent.com/Tencent/ncnn/master/benchmark/squeezenet.param",
  3115. "format": "ncnn",
  3116. "link": "https://github.com/Tencent/ncnn"
  3117. },
  3118. {
  3119. "type": "ncnn",
  3120. "target": "squeezenet_v1.1.param.bin,squeezenet_v1.1.bin",
  3121. "source": "https://raw.githubusercontent.com/nihui/ncnn-android-squeezenet/master/app/src/main/assets/squeezenet_v1.1.param.bin,https://raw.githubusercontent.com/nihui/ncnn-android-squeezenet/master/app/src/main/assets/squeezenet_v1.1.bin",
  3122. "format": "ncnn",
  3123. "link": "https://github.com/Tencent/ncnn"
  3124. },
  3125. {
  3126. "type": "ncnn",
  3127. "target": "squeezenet_v1.1.bin",
  3128. "source": "https://raw.githubusercontent.com/nihui/ncnn-android-squeezenet/master/app/src/main/assets/squeezenet_v1.1.bin",
  3129. "format": "ncnn",
  3130. "link": "https://github.com/Tencent/ncnn"
  3131. },
  3132. {
  3133. "type": "ncnn",
  3134. "target": "ssdmobilenet.param",
  3135. "source": "https://github.com/lutzroeder/netron/files/5165601/ssdmobilenet.zip[ssdmobilenet.param]",
  3136. "format": "ncnn",
  3137. "link": "https://github.com/lutzroeder/netron/issues/296"
  3138. },
  3139. {
  3140. "type": "ncnn",
  3141. "target": "test_nn_Conv1d.ncnn.param,test_nn_Conv1d.ncnn.bin",
  3142. "source": "https://github.com/lutzroeder/netron/files/7796942/ncnn-20211231.zip[test_nn_Conv3d.ncnn.param,test_nn_Conv3d.ncnn.bin]",
  3143. "format": "ncnn",
  3144. "link": "https://github.com/lutzroeder/netron/issues/296"
  3145. },
  3146. {
  3147. "type": "ncnn",
  3148. "target": "test_nn_Conv3d.ncnn.param,test_nn_Conv3d.ncnn.bin",
  3149. "source": "https://github.com/lutzroeder/netron/files/7796942/ncnn-20211231.zip[test_nn_Conv3d.ncnn.param,test_nn_Conv3d.ncnn.bin]",
  3150. "format": "ncnn",
  3151. "link": "https://github.com/lutzroeder/netron/issues/296"
  3152. },
  3153. {
  3154. "type": "ncnn",
  3155. "target": "test_nn_MultiheadAttention.ncnn.param,test_nn_MultiheadAttention.ncnn.bin",
  3156. "source": "https://github.com/lutzroeder/netron/files/7796942/ncnn-20211231.zip[test_nn_MultiheadAttention.ncnn.param,test_nn_MultiheadAttention.ncnn.bin]",
  3157. "format": "ncnn",
  3158. "link": "https://github.com/lutzroeder/netron/issues/296"
  3159. },
  3160. {
  3161. "type": "ncnn",
  3162. "target": "vgg16.param",
  3163. "source": "https://raw.githubusercontent.com/Tencent/ncnn/master/benchmark/vgg16.param",
  3164. "format": "ncnn",
  3165. "link": "https://github.com/Tencent/ncnn"
  3166. },
  3167. {
  3168. "type": "nnabla",
  3169. "target": "Resnet-18.nnp",
  3170. "source": "https://nnabla.org/pretrained-models/nnp_models/imagenet/Resnet-18/Resnet-18.nnp",
  3171. "format": "NNabla v0.1",
  3172. "link": "https://nnabla.readthedocs.io/en/latest/python/api/models/imagenet.html"
  3173. },
  3174. {
  3175. "type": "nnabla",
  3176. "target": "MobileNet-v2.nnp",
  3177. "source": "https://nnabla.org/pretrained-models/nnp_models/imagenet/MobileNet-v2/MobileNet-v2.nnp",
  3178. "format": "NNabla v0.1",
  3179. "link": "https://nnabla.readthedocs.io/en/latest/python/api/models/imagenet.html"
  3180. },
  3181. {
  3182. "type": "nnabla",
  3183. "target": "SqueezeNet-1.1.nnp",
  3184. "source": "https://nnabla.org/pretrained-models/nnp_models/imagenet/SqueezeNet-1.1/SqueezeNet-1.1.nnp",
  3185. "format": "NNabla v0.1",
  3186. "link": "https://nnabla.readthedocs.io/en/latest/python/api/models/imagenet.html"
  3187. },
  3188. {
  3189. "type": "nnabla",
  3190. "target": "NIN.nnp",
  3191. "source": "https://nnabla.org/pretrained-models/nnp_models/imagenet/NIN/NIN.nnp",
  3192. "format": "NNabla v0.1",
  3193. "link": "https://nnabla.readthedocs.io/en/latest/python/api/models/imagenet.html"
  3194. },
  3195. {
  3196. "type": "nnabla",
  3197. "target": "ShuffleNet-0.5x.nnp",
  3198. "source": "https://nnabla.org/pretrained-models/nnp_models/imagenet/ShuffleNet-0.5x/ShuffleNet-0.5x.nnp",
  3199. "format": "NNabla v0.1",
  3200. "link": "https://nnabla.readthedocs.io/en/latest/python/api/models/imagenet.html"
  3201. },
  3202. {
  3203. "type": "numpy",
  3204. "target": "cifar10-1w-1a.npz",
  3205. "source": "https://raw.githubusercontent.com/Xilinx/BNN-PYNQ/master/bnn/src/training/cifar10-1w-1a.npz",
  3206. "format": "NumPy Zip",
  3207. "link": "https://github.com/Xilinx/BNN-PYNQ"
  3208. },
  3209. {
  3210. "type": "numpy",
  3211. "target": "mlp.npz",
  3212. "source": "https://github.com/lutzroeder/netron/files/6225731/mlp.zip[mlp.npz]",
  3213. "format": "NumPy Zip",
  3214. "link": "https://github.com/lutzroeder/netron/issues/711"
  3215. },
  3216. {
  3217. "type": "numpy",
  3218. "target": "mobilenet_v2_normal_72820.pkl",
  3219. "source": "https://data.megengine.org.cn/models/weights/mobilenet_v2_normal_72820.pkl",
  3220. "format": "NumPy Weights",
  3221. "link": "https://github.com/MegEngine/Models/tree/master/official/quantization"
  3222. },
  3223. {
  3224. "type": "numpy",
  3225. "target": "numpy.array.pkl",
  3226. "source": "https://github.com/lutzroeder/netron/files/6233588/numpy.array.pkl.zip[numpy.array.pkl]",
  3227. "format": "NumPy NDArray",
  3228. "link": "https://github.com/lutzroeder/netron/issues/711"
  3229. },
  3230. {
  3231. "type": "numpy",
  3232. "target": "R-50.pkl",
  3233. "source": "https://dl.fbaipublicfiles.com/detectron/ImageNetPretrained/MSRA/R-50.pkl",
  3234. "format": "NumPy Weights",
  3235. "link": "https://github.com/facebookresearch/Detectron"
  3236. },
  3237. {
  3238. "type": "numpy",
  3239. "target": "tensor.npy",
  3240. "source": "https://github.com/lutzroeder/netron/files/6225732/tensor.npy.zip[tensor.npy]",
  3241. "format": "NumPy Array",
  3242. "link": "https://github.com/lutzroeder/netron/issues/711"
  3243. },
  3244. {
  3245. "type": "onnx",
  3246. "target": "arcface-resnet100.onnx",
  3247. "source": "https://s3.amazonaws.com/onnx-model-zoo/arcface/resnet100/resnet100.onnx",
  3248. "format": "ONNX v3",
  3249. "link": "https://github.com/onnx/models/tree/main/models/face_recognition/ArcFace"
  3250. },
  3251. {
  3252. "type": "onnx",
  3253. "target": "bidaf-9.onnx.zip",
  3254. "source": "https://github.com/lutzroeder/netron/files/6572387/bidaf-9.onnx.zip",
  3255. "format": "ONNX v4",
  3256. "producer": "CNTK 2.7",
  3257. "link": "https://github.com/lutzroeder/netron/issues/6"
  3258. },
  3259. {
  3260. "type": "onnx",
  3261. "target": "bert-base-uncased.onnx.zip",
  3262. "source": "https://github.com/lutzroeder/netron/files/7705191/bert-base-uncased.onnx.zip",
  3263. "format": "ONNX v7",
  3264. "link": "https://github.com/lutzroeder/netron/issues/6"
  3265. },
  3266. {
  3267. "type": "onnx",
  3268. "target": "bertsquad-10.zip",
  3269. "source": "https://github.com/lutzroeder/netron/files/5251086/bertsquad-10.zip",
  3270. "format": "ONNX v5",
  3271. "producer": "tf2onnx 1.5.2",
  3272. "link": "https://github.com/onnx/models/blob/master/text/machine_comprehension/bert-squad/README.md"
  3273. },
  3274. {
  3275. "type": "onnx",
  3276. "target": "mnist_bfloat16.onnx",
  3277. "source": "https://github.com/lutzroeder/netron/files/8556399/mnist_bfloat16.onnx.zip[mnist_bfloat16.onnx]",
  3278. "format": "ONNX v4",
  3279. "producer": "pytorch 1.12.0",
  3280. "link": "https://github.com/lutzroeder/netron/issues/6"
  3281. },
  3282. {
  3283. "type": "onnx",
  3284. "target": "bvlc_alexnet_opset_3.onnx.zip",
  3285. "source": "https://github.com/lutzroeder/netron/files/5296267/bvlc_alexnet_opset_3.onnx.zip",
  3286. "format": "ONNX v3",
  3287. "link": "https://github.com/lutzroeder/netron/issues/6"
  3288. },
  3289. {
  3290. "type": "onnx",
  3291. "target": "bvlc_googlenet_opset_9.onnx",
  3292. "source": "https://s3.amazonaws.com/download.onnx/models/opset_9/bvlc_googlenet.tar.gz[bvlc_googlenet/model.onnx]",
  3293. "link": "https://github.com/onnx/models/tree/main/bvlc_googlenet"
  3294. },
  3295. {
  3296. "type": "onnx",
  3297. "target": "candy.onnx",
  3298. "source": "https://raw.githubusercontent.com/Microsoft/Windows-Machine-Learning/master/Samples/FNSCandyStyleTransfer/UWP/cs/Assets/candy.onnx",
  3299. "format": "ONNX v3",
  3300. "link": "https://github.com/Microsoft/Windows-Machine-Learning/tree/master/Samples/FNSCandyStyleTransfer/UWP/cs/Assets"
  3301. },
  3302. {
  3303. "type": "onnx",
  3304. "target": "candy.ort",
  3305. "source": "https://github.com/lutzroeder/netron/files/6844795/candy.ort.zip[candy.ort]",
  3306. "format": "ONNX Runtime v3",
  3307. "link": "https://github.com/lutzroeder/netron/issues/767"
  3308. },
  3309. {
  3310. "type": "onnx",
  3311. "target": "cnn.onnx",
  3312. "source": "https://github.com/lutzroeder/netron/files/7148909/cnn.onnx.zip[cnn.onnx]",
  3313. "format": "ONNX v6",
  3314. "action": "skip-render",
  3315. "link": "https://github.com/lutzroeder/netron/issues/589"
  3316. },
  3317. {
  3318. "type": "onnx",
  3319. "target": "complex_init.onnx",
  3320. "source": "https://github.com/lutzroeder/netron/files/8582128/complex_init.onnx.zip[complex_init.onnx]",
  3321. "format": "ONNX v4",
  3322. "link": "https://github.com/lutzroeder/netron/issues/905"
  3323. },
  3324. {
  3325. "type": "onnx",
  3326. "target": "conv_autopad.onnx",
  3327. "source": "https://raw.githubusercontent.com/microsoft/onnxruntime/master/onnxruntime/test/testdata/conv_autopad.onnx",
  3328. "format": "ONNX v3",
  3329. "link": "https://github.com/microsoft/onnxruntime/tree/master/onnxruntime/test/testdata"
  3330. },
  3331. {
  3332. "type": "onnx",
  3333. "target": "coo_normal_sparse.onnx",
  3334. "source": "https://github.com/lutzroeder/netron/files/6080534/coo_normal_sparse.onnx.zip[coo_normal_sparse.onnx]",
  3335. "format": "ONNX v7",
  3336. "link": "https://github.com/lutzroeder/netron/issues/693"
  3337. },
  3338. {
  3339. "type": "onnx",
  3340. "target": "denotation_Add_ImageNet1920WithImageMetadataBgr8_SRGB_0_255.onnx",
  3341. "source": "https://github.com/lutzroeder/netron/files/2587943/onnx_denotation_models.zip[denotation_Add_ImageNet1920WithImageMetadataBgr8_SRGB_0_255.onnx]",
  3342. "format": "ONNX v3",
  3343. "assert": [ "model.graphs[0].nodes[0].outputs[0].arguments[0].type.denotation = Image(Bgr8,SRGB,NominalRange_0_255)" ],
  3344. "link": "https://github.com/lutzroeder/netron/issues/183"
  3345. },
  3346. {
  3347. "type": "onnx",
  3348. "target": "denotation_Add_ImageNet1920WithImageMetadataBgra8_SRGB_0_255.onnx",
  3349. "source": "https://github.com/lutzroeder/netron/files/2587943/onnx_denotation_models.zip[denotation_Add_ImageNet1920WithImageMetadataBgra8_SRGB_0_255.onnx]",
  3350. "format": "ONNX v3",
  3351. "link": "https://github.com/lutzroeder/netron/issues/183"
  3352. },
  3353. {
  3354. "type": "onnx",
  3355. "target": "denotation_Add_ImageNet1920WithImageMetadataRgb8_SRGB_0_255.onnx",
  3356. "source": "https://github.com/lutzroeder/netron/files/2587943/onnx_denotation_models.zip[denotation_Add_ImageNet1920WithImageMetadataRgb8_SRGB_0_255.onnx]",
  3357. "format": "ONNX v3",
  3358. "link": "https://github.com/lutzroeder/netron/issues/183"
  3359. },
  3360. {
  3361. "type": "onnx",
  3362. "target": "denotation_Add_ImageNet1920WithImageMetadataRgba8_SRGB_0_255.onnx",
  3363. "source": "https://github.com/lutzroeder/netron/files/2587943/onnx_denotation_models.zip[denotation_Add_ImageNet1920WithImageMetadataRgba8_SRGB_0_255.onnx]",
  3364. "format": "ONNX v3",
  3365. "link": "https://github.com/lutzroeder/netron/issues/183"
  3366. },
  3367. {
  3368. "type": "onnx",
  3369. "target": "densenet121_opset_9.onnx",
  3370. "source": "https://s3.amazonaws.com/download.onnx/models/opset_9/densenet121.tar.gz[densenet121/model.onnx]"
  3371. },
  3372. {
  3373. "type": "onnx",
  3374. "target": "DocumentClassification.onnx",
  3375. "source": "https://github.com/lutzroeder/netron/files/2592479/DocumentClassification.onnx.zip[DocumentClassification.onnx]",
  3376. "format": "ONNX v3",
  3377. "link": "https://github.com/lutzroeder/netron/issues/6"
  3378. },
  3379. {
  3380. "type": "onnx",
  3381. "target": "EfficientDet-d0.onnx.zip",
  3382. "source": "https://github.com/lutzroeder/netron/files/7786937/EfficientDet-d0.onnx.zip",
  3383. "format": "ONNX v6",
  3384. "link": "https://github.com/lutzroeder/netron/issues/589"
  3385. },
  3386. {
  3387. "type": "onnx",
  3388. "target": "eisber_model3.pbtxt",
  3389. "source": "https://github.com/lutzroeder/netron/files/4209090/eisber_model3.pbtxt.zip[eisber_model3.pbtxt]",
  3390. "format": "ONNX v3",
  3391. "link": "https://github.com/lutzroeder/netron/issues/139"
  3392. },
  3393. {
  3394. "type": "onnx",
  3395. "target": "eisber_model3.pbtxt.gz",
  3396. "source": "https://github.com/lutzroeder/netron/files/6490172/eisber_model3.pbtxt.gz",
  3397. "format": "ONNX v3",
  3398. "link": "https://github.com/lutzroeder/netron/issues/249"
  3399. },
  3400. {
  3401. "type": "onnx",
  3402. "target": "eisber_model3_invalid.pbtxt",
  3403. "source": "https://github.com/lutzroeder/netron/files/5011185/eisber_model3_invalid.pbtxt.zip[eisber_model3_invalid.pbtxt]",
  3404. "error": "File text format is not onnx.ModelProto (Unexpected '}' instead of ':' at 6:3) in 'eisber_model3_invalid.pbtxt'.",
  3405. "link": "https://github.com/lutzroeder/netron/issues/139"
  3406. },
  3407. {
  3408. "type": "onnx",
  3409. "target": "emotion-ferplus-8.onnx",
  3410. "source": "https://github.com/onnx/models/raw/main/vision/body_analysis/emotion_ferplus/model/emotion-ferplus-8.onnx",
  3411. "format": "ONNX v3",
  3412. "link": "https://github.com/onnx/models/tree/main/vision/body_analysis/emotion_ferplus"
  3413. },
  3414. {
  3415. "type": "onnx",
  3416. "target": "end2end_tfc_w1a1_oqnt_streamlined.onnx",
  3417. "source": "https://github.com/lutzroeder/netron/files/4885362/end2end_tfc_w1a1_oqnt_streamlined.zip[end2end_tfc_w1a1_oqnt_streamlined.onnx]",
  3418. "format": "ONNX v4",
  3419. "link": "https://github.com/lutzroeder/netron/issues/532"
  3420. },
  3421. {
  3422. "type": "onnx",
  3423. "target": "Exermote.onnx",
  3424. "source": "https://github.com/lutzroeder/netron/files/2592478/Exermote.onnx.zip[Exermote.onnx]",
  3425. "format": "ONNX v3",
  3426. "link": "https://github.com/lutzroeder/netron/issues/6"
  3427. },
  3428. {
  3429. "type": "onnx",
  3430. "target": "FastStyleNet.onnx",
  3431. "source": "https://raw.githubusercontent.com/tkat0/chainer-nnvm-example/master/models/chainer-fast-neuralstyle/FastStyleNet.onnx",
  3432. "format": "ONNX v1",
  3433. "producer": "Chainer 3.2.0"
  3434. },
  3435. {
  3436. "type": "onnx",
  3437. "target": "FCLayer_graph.onnx",
  3438. "source": "https://raw.githubusercontent.com/Xilinx/finn/master/notebooks/FCLayer_graph.onnx",
  3439. "format": "ONNX v6",
  3440. "link": "https://github.com/Xilinx/finn/tree/master/notebooks"
  3441. },
  3442. {
  3443. "type": "onnx",
  3444. "target": "gpt2-10.onnx.zip",
  3445. "source": "https://github.com/lutzroeder/netron/files/7786929/gpt2-10.onnx.zip",
  3446. "format": "ONNX v6",
  3447. "link": "https://github.com/lutzroeder/netron/issues/6"
  3448. },
  3449. {
  3450. "type": "onnx",
  3451. "target": "input_0.pb",
  3452. "source": "https://s3.amazonaws.com/download.onnx/models/opset_9/shufflenet.tar.gz[shufflenet/test_data_set_0/input_0.pb]",
  3453. "format": "ONNX Tensor",
  3454. "link": "https://github.com/lutzroeder/netron/issues/550"
  3455. },
  3456. {
  3457. "type": "onnx",
  3458. "target": "inception_v1_opset_9.onnx",
  3459. "source": "https://s3.amazonaws.com/download.onnx/models/opset_9/inception_v1.tar.gz[inception_v1/model.onnx]"
  3460. },
  3461. {
  3462. "type": "onnx",
  3463. "target": "inception_v2_opset_6.onnx.zip",
  3464. "source": "https://github.com/lutzroeder/netron/files/6572388/inception_v2_opset_6.onnx.zip",
  3465. "format": "ONNX v3",
  3466. "link": "https://github.com/lutzroeder/netron/issues/6"
  3467. },
  3468. {
  3469. "type": "onnx",
  3470. "target": "inception_v2_opset_9.onnx.zip",
  3471. "source": "https://github.com/lutzroeder/netron/files/6572391/inception_v2_opset_9.onnx.zip",
  3472. "format": "ONNX v3",
  3473. "link": "https://github.com/lutzroeder/netron/issues/6"
  3474. },
  3475. {
  3476. "type": "onnx",
  3477. "target": "Kmeans.onnx",
  3478. "source": "https://github.com/lutzroeder/netron/files/2592495/Kmeans.onnx.zip[Kmeans.onnx]",
  3479. "format": "ONNX v3",
  3480. "producer": "ML.NET 0.7.27009.0",
  3481. "link": "https://github.com/lutzroeder/netron/issues/6"
  3482. },
  3483. {
  3484. "type": "onnx",
  3485. "target": "Kmeans.pbtxt",
  3486. "source": "https://github.com/lutzroeder/netron/files/4209089/Kmeans.pbtxt.zip[Kmeans.pbtxt]",
  3487. "format": "ONNX v3",
  3488. "producer": "ML.NET 0.7.27009.0",
  3489. "link": "https://github.com/lutzroeder/netron/issues/139"
  3490. },
  3491. {
  3492. "type": "onnx",
  3493. "target": "LabelEncoder.onnx",
  3494. "source": "https://raw.githubusercontent.com/microsoft/onnxruntime/master/onnxruntime/test/testdata/LabelEncoder.onnx",
  3495. "format": "ONNX v3",
  3496. "link": "https://github.com/Microsoft/onnxruntime/tree/master/onnxruntime/test/testdata"
  3497. },
  3498. {
  3499. "type": "onnx",
  3500. "target": "last_hidden_state_crf_jud.onnx",
  3501. "source": "https://github.com/lutzroeder/netron/files/7148912/last_hidden_state_crf_jud.onnx.zip[last_hidden_state_crf_jud.onnx]",
  3502. "format": "ONNX v6",
  3503. "action": "skip-render",
  3504. "link": "https://github.com/lutzroeder/netron/issues/589"
  3505. },
  3506. {
  3507. "type": "onnx",
  3508. "target": "maskDet_opt.onnx",
  3509. "source": "https://github.com/lutzroeder/netron/files/8238283/maskDet_opt.onnx.zip[maskDet_opt.onnx]",
  3510. "format": "ONNX v4",
  3511. "link": "https://github.com/lutzroeder/netron/issues/6"
  3512. },
  3513. {
  3514. "type": "onnx",
  3515. "target": "maskrcnn.onnx.zip",
  3516. "source": "https://github.com/lutzroeder/netron/files/5322320/maskrcnn.onnx.zip",
  3517. "format": "ONNX v6",
  3518. "link": "https://github.com/lutzroeder/netron/issues/6"
  3519. },
  3520. {
  3521. "type": "onnx",
  3522. "target": "mnist.onnx",
  3523. "source": "https://raw.githubusercontent.com/Microsoft/Windows-Machine-Learning/master/Samples/MNIST/Tutorial/cs/Assets/mnist.onnx",
  3524. "format": "ONNX v3",
  3525. "link": "https://github.com/Microsoft/Windows-Machine-Learning/tree/master/Samples/MNIST/Tutorial/cs/Assets"
  3526. },
  3527. {
  3528. "type": "onnx",
  3529. "target": "mlnet_encoder.onnx",
  3530. "source": "https://raw.githubusercontent.com/Microsoft/onnxruntime/master/onnxruntime/test/testdata/mlnet_encoder.onnx",
  3531. "format": "ONNX v3",
  3532. "link": "https://github.com/Microsoft/onnxruntime/tree/master/onnxruntime/test/testdata"
  3533. },
  3534. {
  3535. "type": "onnx",
  3536. "target": "model_local_func_test.onnx",
  3537. "source": "https://github.com/lutzroeder/netron/files/6845111/model_local_func_test.onnx.zip[model_local_func_test.onnx]",
  3538. "format": "ONNX v8",
  3539. "link": "https://github.com/lutzroeder/netron/issues/773"
  3540. },
  3541. {
  3542. "type": "onnx",
  3543. "target": "netron_issue_119.onnx",
  3544. "source": "https://github.com/lutzroeder/netron/files/4260629/netron_issue_119.zip[netron_issue_119.onnx]",
  3545. "format": "ONNX v4",
  3546. "link": "https://github.com/lutzroeder/netron/issues/119"
  3547. },
  3548. {
  3549. "type": "onnx",
  3550. "target": "netron_issue168_onnx_if.pbtxt",
  3551. "source": "https://github.com/lutzroeder/netron/files/3239859/netron_issue168_onnx.zip[netron_issue168_onnx_if.pbtxt]",
  3552. "format": "ONNX v3",
  3553. "link": "https://github.com/lutzroeder/netron/issues/168"
  3554. },
  3555. {
  3556. "type": "onnx",
  3557. "target": "netron_issue168_onnx_loop.pbtxt",
  3558. "source": "https://github.com/lutzroeder/netron/files/3239859/netron_issue168_onnx.zip[netron_issue168_onnx_loop.pbtxt]",
  3559. "format": "ONNX v3",
  3560. "link": "https://github.com/lutzroeder/netron/issues/168"
  3561. },
  3562. {
  3563. "type": "onnx",
  3564. "target": "netron_issue168_onnx_scan.pbtxt",
  3565. "source": "https://github.com/lutzroeder/netron/files/3239859/netron_issue168_onnx.zip[netron_issue168_onnx_scan.pbtxt]",
  3566. "format": "ONNX v3",
  3567. "link": "https://github.com/lutzroeder/netron/issues/168"
  3568. },
  3569. {
  3570. "type": "onnx",
  3571. "target": "netron_issue_845.onnx",
  3572. "source": "https://github.com/lutzroeder/netron/files/7604948/netron_issue_845.onnx.zip[netron_issue_845.onnx]",
  3573. "format": "ONNX v4",
  3574. "link": "https://github.com/lutzroeder/netron/issues/6"
  3575. },
  3576. {
  3577. "type": "onnx",
  3578. "target": "optional_1.onnx",
  3579. "source": "https://raw.githubusercontent.com/microsoft/onnxruntime/master/onnxruntime/test/testdata/optional_1.onnx",
  3580. "format": "ONNX v3",
  3581. "link": "https://github.com/microsoft/onnxruntime/tree/master/onnxruntime/test/testdata"
  3582. },
  3583. {
  3584. "type": "onnx",
  3585. "target": "optional_type.onnx",
  3586. "source": "https://github.com/lutzroeder/netron/files/8746170/optional_type.onnx.zip[optional_type.onnx]",
  3587. "format": "ONNX v8",
  3588. "link": "https://github.com/lutzroeder/netron/issues/914"
  3589. },
  3590. {
  3591. "type": "onnx",
  3592. "target": "ort_github_issue_4031.onnx.ort",
  3593. "source": "https://github.com/lutzroeder/netron/files/8191468/ort_github_issue_4031.onnx.ort.zip[ort_github_issue_4031.onnx.ort]",
  3594. "format": "ONNX Runtime v7",
  3595. "link": "https://github.com/lutzroeder/netron/issues/767"
  3596. },
  3597. {
  3598. "type": "onnx",
  3599. "target": "resnet50_opset_9.onnx.zip",
  3600. "source": "https://github.com/lutzroeder/netron/files/5296268/resnet50_opset_9.onnx.zip",
  3601. "format": "ONNX v3",
  3602. "link": "https://github.com/lutzroeder/netron/issues/6"
  3603. },
  3604. {
  3605. "type": "onnx",
  3606. "target": "reshape_opset_4.pb",
  3607. "source": "https://github.com/lutzroeder/netron/files/2592375/reshape_opset.zip[reshape_opset_4.pb]",
  3608. "format": "ONNX v3",
  3609. "link": "https://github.com/lutzroeder/netron/pull/97"
  3610. },
  3611. {
  3612. "type": "onnx",
  3613. "target": "reshape_opset_6.pb",
  3614. "source": "https://github.com/lutzroeder/netron/files/2592375/reshape_opset.zip[reshape_opset_6.pb]",
  3615. "format": "ONNX v3",
  3616. "link": "https://github.com/lutzroeder/netron/pull/97"
  3617. },
  3618. {
  3619. "type": "onnx",
  3620. "target": "s2.onnx",
  3621. "source": "https://github.com/lutzroeder/netron/files/6191354/s2.onnx.zip[s2.onnx]",
  3622. "format": "ONNX v6",
  3623. "link": "https://github.com/lutzroeder/netron/issues/647"
  3624. },
  3625. {
  3626. "type": "onnx",
  3627. "target": "shufflenet_float16.onnx",
  3628. "source": "https://github.com/lutzroeder/netron/files/2592368/shufflenet_float16.onnx.zip[shufflenet_float16.onnx]",
  3629. "format": "ONNX v3",
  3630. "link": "https://github.com/lutzroeder/netron/issues/186"
  3631. },
  3632. {
  3633. "type": "onnx",
  3634. "target": "shufflenet_opset_9.onnx",
  3635. "source": "https://s3.amazonaws.com/download.onnx/models/opset_9/shufflenet.tar.gz[shufflenet/model.onnx]",
  3636. "format": "ONNX v3",
  3637. "link": "https://github.com/onnx/models/tree/main/shufflenet"
  3638. },
  3639. {
  3640. "type": "onnx",
  3641. "target": "sklearn_bin_voting_classifier_soft.ort",
  3642. "source": "https://github.com/lutzroeder/netron/files/8191675/sklearn_bin_voting_classifier_soft.ort.zip[sklearn_bin_voting_classifier_soft.ort]",
  3643. "format": "ONNX Runtime v6",
  3644. "link": "https://github.com/lutzroeder/netron/issues/767"
  3645. },
  3646. {
  3647. "type": "onnx",
  3648. "target": "sparse_const.onnx",
  3649. "source": "https://github.com/lutzroeder/netron/files/5198627/sparse_const.zip[sparse_const.onnx]",
  3650. "format": "ONNX v7",
  3651. "link": "https://github.com/lutzroeder/netron/issues/6"
  3652. },
  3653. {
  3654. "type": "onnx",
  3655. "target": "sparse_initializer_as_output.onnx",
  3656. "source": "https://github.com/lutzroeder/netron/files/6512243/sparse_initializer_as_output.onnx.zip[sparse_initializer_as_output.onnx]",
  3657. "format": "ONNX v7",
  3658. "link": "https://github.com/lutzroeder/netron/issues/741"
  3659. },
  3660. {
  3661. "type": "onnx",
  3662. "target": "squeezenet.onnx",
  3663. "source": "https://raw.githubusercontent.com/onnx/tutorials/master/tutorials/assets/squeezenet.onnx",
  3664. "format": "ONNX v1",
  3665. "producer": "pytorch 0.2"
  3666. },
  3667. {
  3668. "type": "onnx",
  3669. "target": "squeezenet1.1.onnx",
  3670. "source": "https://s3.amazonaws.com/onnx-model-zoo/squeezenet/squeezenet1.1/squeezenet1.1.onnx",
  3671. "format": "ONNX v3",
  3672. "link": "https://github.com/onnx/models/tree/main/vision/classification/squeezenet"
  3673. },
  3674. {
  3675. "type": "onnx",
  3676. "target": "squeezenet1.1_shape.onnx",
  3677. "source": "https://github.com/lutzroeder/netron/files/3935903/squeezenet1.1_shape.onnx.zip[squeezenet1.1_shape.onnx]",
  3678. "format": "ONNX v3",
  3679. "link": "https://github.com/lutzroeder/netron/issues/6"
  3680. },
  3681. {
  3682. "type": "onnx",
  3683. "target": "squeezenet1.1.pb",
  3684. "source": "https://s3.amazonaws.com/onnx-model-zoo/squeezenet/squeezenet1.1/squeezenet1.1.onnx",
  3685. "format": "ONNX v3",
  3686. "link": "https://github.com/onnx/models/tree/main/models/image_classification/squeezenet"
  3687. },
  3688. {
  3689. "type": "onnx",
  3690. "target": "squeezenet1.1.tgz",
  3691. "source": "https://s3.amazonaws.com/onnx-model-zoo/squeezenet/squeezenet1.1/squeezenet1.1.tar.gz",
  3692. "format": "ONNX v3",
  3693. "link": "https://github.com/onnx/models/tree/main/models/image_classification/squeezenet"
  3694. },
  3695. {
  3696. "type": "onnx",
  3697. "target": "ssd.onnx.zip",
  3698. "source": "https://github.com/lutzroeder/netron/files/5296269/ssd.onnx.zip",
  3699. "format": "ONNX v4",
  3700. "link": "https://github.com/lutzroeder/netron/issues/6"
  3701. },
  3702. {
  3703. "type": "onnx",
  3704. "target": "super_resolution.onnx",
  3705. "source": "https://gist.github.com/zhreshold/bcda4716699ac97ea44f791c24310193/raw/b385b1b242dc89a35dd808235b885ed8a19aedc1/super_resolution.onnx",
  3706. "format": "ONNX",
  3707. "link": "https://gist.github.com/zhreshold/bcda4716699ac97ea44f791c24310193"
  3708. },
  3709. {
  3710. "type": "onnx",
  3711. "target": "super-resolution-10.onnx",
  3712. "source": "https://media.githubusercontent.com/media/onnx/models/main/vision/super_resolution/sub_pixel_cnn_2016/model/super-resolution-10.onnx",
  3713. "format": "ONNX v4",
  3714. "producer": "pytorch 1.1",
  3715. "link": "https://github.com/onnx/models/tree/main/vision/super_resolution/sub_pixel_cnn_2016"
  3716. },
  3717. {
  3718. "type": "onnx",
  3719. "target": "super_resolution_0.2.onnx",
  3720. "source": "https://gist.github.com/zhreshold/bcda4716699ac97ea44f791c24310193/raw/93672b029103648953c4e5ad3ac3aadf346a4cdc/super_resolution_0.2.onnx",
  3721. "format": "ONNX v1",
  3722. "producer": "pytorch 0.2",
  3723. "link": "https://gist.github.com/zhreshold/bcda4716699ac97ea44f791c24310193"
  3724. },
  3725. {
  3726. "type": "onnx",
  3727. "target": "test_LSTM_tanh_bidirectional.onnx",
  3728. "source": "https://raw.githubusercontent.com/microsoft/onnxruntime/master/onnxruntime/test/testdata/CNTK/test_LSTM.tanh.bidirectional//model.onnx",
  3729. "format": "ONNX v3",
  3730. "link": "https://github.com/microsoft/onnxruntime/tree/master/onnxruntime/test/testdata"
  3731. },
  3732. {
  3733. "type": "onnx",
  3734. "target": "test_RNN_bidirectional_one_layer_relu.onnx",
  3735. "source": "https://raw.githubusercontent.com/microsoft/onnxruntime/master/onnxruntime/test/testdata/CNTK/test_RNN.bidirectional.one_layer.relu//model.onnx",
  3736. "format": "ONNX v3",
  3737. "link": "https://github.com/microsoft/onnxruntime/tree/master/onnxruntime/test/testdata"
  3738. },
  3739. {
  3740. "type": "onnx",
  3741. "target": "test_lstm_with_peepholes.onnx",
  3742. "source": "https://raw.githubusercontent.com/onnx/onnx/master/onnx/backend/test/data/node/test_lstm_with_peepholes/model.onnx",
  3743. "format": "ONNX v7",
  3744. "link": "https://github.com/onnx/onnx/tree/master/onnx/backend/test/data"
  3745. },
  3746. {
  3747. "type": "onnx",
  3748. "target": "text_constant.txt",
  3749. "source": "https://github.com/lutzroeder/netron/files/8189630/text_constant.txt.zip[text_constant.txt]",
  3750. "format": "ONNX Text v0",
  3751. "link": "https://github.com/lutzroeder/netron/issues/884"
  3752. },
  3753. {
  3754. "type": "onnx",
  3755. "target": "text_function.txt",
  3756. "source": "https://github.com/lutzroeder/netron/files/8189629/text_function.txt.zip[text_function.txt]",
  3757. "format": "ONNX Text v8",
  3758. "link": "https://github.com/lutzroeder/netron/issues/884"
  3759. },
  3760. {
  3761. "type": "onnx",
  3762. "target": "text_example.txt",
  3763. "source": "https://github.com/lutzroeder/netron/files/8190032/text_example.txt.zip[text_example.txt]",
  3764. "format": "ONNX Text v7",
  3765. "link": "https://github.com/lutzroeder/netron/issues/884"
  3766. },
  3767. {
  3768. "type": "onnx",
  3769. "target": "yolov3.onnx.zip",
  3770. "source": "https://github.com/lutzroeder/netron/files/8942116/yolov3.onnx.zip",
  3771. "format": "ONNX v5",
  3772. "producer": "keras2onnx 1.5.1",
  3773. "link": "https://github.com/lutzroeder/netron/issues/6"
  3774. },
  3775. {
  3776. "type": "onnx",
  3777. "target": "vgg19.onnx.zip",
  3778. "source": "https://github.com/lutzroeder/netron/files/6558105/vgg19.onnx.zip",
  3779. "format": "ONNX v3",
  3780. "link": "https://github.com/lutzroeder/netron/issues/6"
  3781. },
  3782. {
  3783. "type": "onnx",
  3784. "target": "zipmap_int64float.onnx",
  3785. "source": "https://raw.githubusercontent.com/microsoft/onnxruntime/master/onnxruntime/test/testdata/zipmap_int64float.onnx",
  3786. "format": "ONNX v3",
  3787. "link": "https://github.com/microsoft/onnxruntime/tree/master/onnxruntime/test/testdata"
  3788. },
  3789. {
  3790. "type": "om",
  3791. "target": "hwhiaimodel-subgraph.om",
  3792. "source": "https://github.com/lutzroeder/netron/files/7114899/hwhiaimodel-subgraph.om.zip[hwhiaimodel-subgraph.om]",
  3793. "format": "DaVinci OM",
  3794. "link": "https://github.com/lutzroeder/netron/issues/799"
  3795. },
  3796. {
  3797. "type": "om",
  3798. "target": "netron_issue_788.om",
  3799. "source": "https://github.com/lutzroeder/netron/files/7104677/netron_issue_788.om.zip[netron_issue_788.om]",
  3800. "format": "DaVinci OM",
  3801. "link": "https://github.com/lutzroeder/netron/issues/799"
  3802. },
  3803. {
  3804. "type": "om",
  3805. "target": "netron_issue_798.om",
  3806. "source": "https://github.com/lutzroeder/netron/files/7104598/netron_issue_798.om.zip[netron_issue_798.om]",
  3807. "format": "DaVinci OM",
  3808. "link": "https://github.com/lutzroeder/netron/issues/799"
  3809. },
  3810. {
  3811. "type": "openvino",
  3812. "target": "2018_R3_age-gender-recognition-retail-0013.xml,2018_R3_age-gender-recognition-retail-0013.bin",
  3813. "source": "https://github.com/lutzroeder/netron/files/8983748/2018_R3_age-gender-recognition-retail-0013.zip[2018_R3_age-gender-recognition-retail-0013.xml,2018_R3_age-gender-recognition-retail-0013.bin]",
  3814. "format": "OpenVINO IR",
  3815. "link": "https://github.com/lutzroeder/netron/issues/191"
  3816. },
  3817. {
  3818. "type": "openvino",
  3819. "target": "2018_R3_rm_lstm4f.xml,2018_R3_rm_lstm4f.bin",
  3820. "source": "https://github.com/lutzroeder/netron/files/8983751/2018_R3_rm_lstm4f.zip[2018_R3_rm_lstm4f.xml,2018_R3_rm_lstm4f.bin]",
  3821. "format": "OpenVINO IR",
  3822. "link": "https://github.com/lutzroeder/netron/issues/191"
  3823. },
  3824. {
  3825. "type": "openvino",
  3826. "target": "2018_R4_single-image-super-resolution-0034.xml",
  3827. "source": "https://github.com/lutzroeder/netron/files/8983769/2018_R4_single-image-super-resolution-0034.xml.zip[2018_R4_single-image-super-resolution-0034.xml]",
  3828. "format": "OpenVINO IR",
  3829. "link": "https://github.com/lutzroeder/netron/issues/191"
  3830. },
  3831. {
  3832. "type": "openvino",
  3833. "target": "2018_R5_vehicle-license-plate-detection-barrier-0106.xml",
  3834. "source": "https://github.com/lutzroeder/netron/files/8983770/2018_R5_vehicle-license-plate-detection-barrier-0106.xml.zip[2018_R5_vehicle-license-plate-detection-barrier-0106.xml]",
  3835. "format": "OpenVINO IR",
  3836. "link": "https://github.com/lutzroeder/netron/issues/191"
  3837. },
  3838. {
  3839. "type": "openvino",
  3840. "target": "int4-model.xml,int4-model.bin",
  3841. "source": "https://github.com/lutzroeder/netron/files/6273773/int4-model.zip[int4-model.xml,int4-model.bin]",
  3842. "format": "OpenVINO IR",
  3843. "link": "https://github.com/lutzroeder/netron/pull/715"
  3844. },
  3845. {
  3846. "type": "openvino",
  3847. "target": "netron_issue_372.xml",
  3848. "source": "https://github.com/lutzroeder/netron/files/4447843/netron_issue_372.zip[netron_issue_372.xml]",
  3849. "format": "OpenVINO IR",
  3850. "link": "https://github.com/lutzroeder/netron/issues/372"
  3851. },
  3852. {
  3853. "type": "openvino",
  3854. "target": "netron_issue_484.xml,netron_issue_484.bin",
  3855. "source": "https://github.com/lutzroeder/netron/files/4569338/netron_issue_484.zip[netron_issue_484.xml,netron_issue_484.bin]",
  3856. "format": "OpenVINO IR",
  3857. "link": "https://github.com/lutzroeder/netron/issues/484"
  3858. },
  3859. {
  3860. "type": "openvino",
  3861. "target": "netron_issue_572.xml,netron_issue_572.bin",
  3862. "source": "https://github.com/lutzroeder/netron/files/5114040/netron_issue_572.zip[netron_issue_572.xml,netron_issue_572.bin]",
  3863. "format": "OpenVINO IR",
  3864. "link": "https://github.com/lutzroeder/netron/issues/572"
  3865. },
  3866. {
  3867. "type": "openvino",
  3868. "target": "text-recognition-0012.xml,text-recognition-0012.bin",
  3869. "source": "https://github.com/lutzroeder/netron/files/8983714/text-recognition-0012.zip[text-recognition-0012.xml,text-recognition-0012.bin]",
  3870. "format": "OpenVINO IR",
  3871. "link": "https://github.com/lutzroeder/netron/issues/191"
  3872. },
  3873. {
  3874. "type": "openvino",
  3875. "target": "text-spotting-0002-recognizer-decoder.xml,text-spotting-0002-recognizer-decoder.bin",
  3876. "source": "https://github.com/lutzroeder/netron/files/8983746/text-spotting-0002-recognizer-decoder.zip[text-spotting-0002-recognizer-decoder.xml,text-spotting-0002-recognizer-decoder.bin]",
  3877. "format": "OpenVINO IR",
  3878. "link": "https://download.01.org/opencv/2020/openvinotoolkit/2020.2/open_model_zoo/models_bin/3/text-spotting-0002-recognizer-decoder/FP32"
  3879. },
  3880. {
  3881. "type": "openvino",
  3882. "target": "ti_with_large_body.xml",
  3883. "source": "https://github.com/lutzroeder/netron/files/2871678/ti_with_large_body.xml.zip[ti_with_large_body.xml]",
  3884. "format": "OpenVINO IR",
  3885. "link": "https://github.com/lutzroeder/netron/issues/191"
  3886. },
  3887. {
  3888. "type": "openvino",
  3889. "target": "with_gather.xml",
  3890. "source": "https://github.com/lutzroeder/netron/files/2871676/with_gather.xml.zip[with_gather.xml]",
  3891. "format": "OpenVINO IR",
  3892. "link": "https://github.com/lutzroeder/netron/issues/191"
  3893. },
  3894. {
  3895. "type": "openvino",
  3896. "target": "with_nd_conv_simple.xml",
  3897. "source": "https://github.com/lutzroeder/netron/files/2871696/with_nd_conv_simple.xml.zip[with_nd_conv_simple.xml]",
  3898. "format": "OpenVINO IR",
  3899. "link": "https://github.com/lutzroeder/netron/issues/191"
  3900. },
  3901. {
  3902. "type": "openvino",
  3903. "target": "with_pad_simple.xml",
  3904. "source": "https://github.com/lutzroeder/netron/files/2871673/with_pad_simple.xml.zip[with_pad_simple.xml]",
  3905. "format": "OpenVINO IR",
  3906. "link": "https://github.com/lutzroeder/netron/issues/191"
  3907. },
  3908. {
  3909. "type": "paddle",
  3910. "target": "adam.pdopt",
  3911. "source": "https://github.com/lutzroeder/netron/files/8882900/adam.pdopt.zip[adam.pdopt]",
  3912. "format": "PaddlePaddle Pickle",
  3913. "link": "https://github.com/lutzroeder/netron/issues/552"
  3914. },
  3915. {
  3916. "type": "paddle",
  3917. "target": "assign.pbtxt",
  3918. "source": "https://github.com/lutzroeder/netron/files/5485296/assign.pbtxt.zip[assign.pbtxt]",
  3919. "format": "PaddlePaddle",
  3920. "link": "https://github.com/lutzroeder/netron/issues/903"
  3921. },
  3922. {
  3923. "type": "paddle",
  3924. "target": "ch_ppocr_mobile_v2.0_det_infer.zip",
  3925. "source": "https://github.com/lutzroeder/netron/files/8748319/ch_ppocr_mobile_v2.0_det_infer.zip",
  3926. "format": "PaddlePaddle",
  3927. "link": "https://github.com/lutzroeder/netron/issues/552"
  3928. },
  3929. {
  3930. "type": "paddle",
  3931. "target": "ch_ppocr_mobile_v2.0_det_infer.pdiparams",
  3932. "source": "https://github.com/lutzroeder/netron/files/8748319/ch_ppocr_mobile_v2.0_det_infer.zip[inference.pdiparams]",
  3933. "format": "PaddlePaddle Inference Weights",
  3934. "link": "https://github.com/lutzroeder/netron/issues/552"
  3935. },
  3936. {
  3937. "type": "paddle",
  3938. "target": "critic.pdparams",
  3939. "source": "https://github.com/lutzroeder/netron/files/8748332/critic.pdparams.zip[critic.pdparams]",
  3940. "format": "PaddlePaddle Pickle",
  3941. "link": "https://github.com/lutzroeder/netron/issues/552"
  3942. },
  3943. {
  3944. "type": "paddle",
  3945. "target": "EDVR_M_wo_tsa_SRx4.pdparams",
  3946. "source": "https://github.com/lutzroeder/netron/files/8882904/EDVR_M_wo_tsa_SRx4.pdparams.zip[EDVR_M_wo_tsa_SRx4.pdparams]",
  3947. "format": "PaddlePaddle Pickle",
  3948. "link": "https://github.com/lutzroeder/netron/issues/552"
  3949. },
  3950. {
  3951. "type": "paddle",
  3952. "target": "emb.pdparams",
  3953. "source": "https://github.com/lutzroeder/netron/files/8882903/emb.pdparams.zip[emb.pdparams]",
  3954. "format": "PaddlePaddle Pickle",
  3955. "link": "https://github.com/lutzroeder/netron/issues/552"
  3956. },
  3957. {
  3958. "type": "paddle",
  3959. "target": "lite_naive_model_opt.nb.tar.gz",
  3960. "source": "https://github.com/lutzroeder/netron/files/7084134/lite_naive_model_opt.nb.tar.gz",
  3961. "error": "Paddle Lite naive buffer format is deprecated in '__model__.nb'.",
  3962. "format": "Paddle Lite",
  3963. "link": "https://github.com/lutzroeder/netron/issues/797"
  3964. },
  3965. {
  3966. "type": "paddle",
  3967. "target": "paddle_example.zip",
  3968. "source": "https://github.com/lutzroeder/netron/files/8548969/paddle_example.zip",
  3969. "format": "PaddlePaddle v2.2",
  3970. "link": "https://github.com/lutzroeder/netron/issues/903"
  3971. },
  3972. {
  3973. "type": "paddle",
  3974. "target": "recognize_digits_multilayer_perceptron_model.zip",
  3975. "source": "https://github.com/lutzroeder/netron/files/4985730/recognize_digits_multilayer_perceptron_model.zip",
  3976. "format": "PaddlePaddle v1.8",
  3977. "link": "https://github.com/lutzroeder/netron/issues/552"
  3978. },
  3979. {
  3980. "type": "paddle",
  3981. "target": "recognize_digits_multilayer_perceptron_weights.tar",
  3982. "source": "https://github.com/lutzroeder/netron/files/5551009/recognize_digits_multilayer_perceptron_weights.tar.zip[recognize_digits_multilayer_perceptron_weights.tar]",
  3983. "format": "PaddlePaddle Weights",
  3984. "link": "https://github.com/lutzroeder/netron/issues/903"
  3985. },
  3986. {
  3987. "type": "paddle",
  3988. "target": "tranformer_base.zip",
  3989. "source": "https://github.com/lutzroeder/netron/files/5160568/tranformer_base.zip",
  3990. "format": "PaddlePaddle v1.8.3",
  3991. "link": "https://github.com/lutzroeder/netron/issues/903"
  3992. },
  3993. {
  3994. "type": "paddle",
  3995. "target": "squeezenet1.1.nb",
  3996. "source": "https://github.com/lutzroeder/netron/files/7272515/squeezenet1.1.nb.zip[squeezenet1.1.nb]",
  3997. "format": "Paddle Lite v2.9.1",
  3998. "link": "https://github.com/lutzroeder/netron/issues/797"
  3999. },
  4000. {
  4001. "type": "paddle",
  4002. "target": "vgg_ilsvrc_16_fc_reduced.tar.gz",
  4003. "source": "http://paddlemodels.bj.bcebos.com/vgg_ilsvrc_16_fc_reduced.tar.gz",
  4004. "format": "PaddlePaddle",
  4005. "link": "https://github.com/PaddlePaddle/models/tree/develop/PaddleCV/face_detection"
  4006. },
  4007. {
  4008. "type": "paddle",
  4009. "target": "with_dummy_tensor_type.zip",
  4010. "source": "https://github.com/lutzroeder/netron/files/3021210/with_dummy_tensor_type.zip",
  4011. "format": "PaddlePaddle",
  4012. "link": "https://github.com/lutzroeder/netron/issues/246"
  4013. },
  4014. {
  4015. "type": "paddle",
  4016. "target": "without_tensor_type.zip",
  4017. "source": "https://github.com/lutzroeder/netron/files/3021211/without_tensor_type.zip",
  4018. "format": "PaddlePaddle",
  4019. "link": "https://github.com/lutzroeder/netron/issues/246"
  4020. },
  4021. {
  4022. "type": "pickle",
  4023. "target": "batches.meta",
  4024. "source": "https://raw.githubusercontent.com/MadryLab/cifar10_challenge/master/cifar10_data/batches.meta",
  4025. "format": "Pickle",
  4026. "error": "Unsupported Pickle object in 'batches.meta'.",
  4027. "link": "https://github.com/MadryLab/cifar10_challenge"
  4028. },
  4029. {
  4030. "type": "pickle",
  4031. "target": "myModel.model",
  4032. "source": "https://github.com/lutzroeder/netron/files/8506779/myModel.model.zip[myModel.model]",
  4033. "format": "cuML",
  4034. "link": "https://github.com/lutzroeder/netron/issues/901"
  4035. },
  4036. {
  4037. "type": "pickle",
  4038. "target": "net.pkl",
  4039. "source": "https://github.com/lutzroeder/netron/files/8506780/net.pkl.zip[net.pkl]",
  4040. "format": "Pickle",
  4041. "error": "Unsupported Pickle type '__main__.LeNetConvPoolLayer' in 'net.pkl'.",
  4042. "link": "https://github.com/lutzroeder/netron/issues/901"
  4043. },
  4044. {
  4045. "type": "pickle",
  4046. "target": "robinhood-portfolio_data_user.pkl.pkl",
  4047. "source": "https://raw.githubusercontent.com/omdv/robinhood-portfolio/4622dc61e0556a85ce52c4de178d01a9838acbc5/data/user.pkl",
  4048. "format": "Pickle",
  4049. "error": "Unsupported Pickle object in 'robinhood-portfolio_data_user.pkl.pkl'.",
  4050. "link": "https://github.com/omdv/robinhood-portfolio/tree/4622dc61e0556a85ce52c4de178d01a9838acbc5"
  4051. },
  4052. {
  4053. "type": "pytorch",
  4054. "target": "alexnet_traced.pt.zip",
  4055. "source": "https://github.com/lutzroeder/netron/files/6096602/alexnet_traced.pt.zip",
  4056. "format": "TorchScript v1.6",
  4057. "link": "https://github.com/lutzroeder/netron/issues/281"
  4058. },
  4059. {
  4060. "type": "pytorch",
  4061. "target": "alexnet.pkl.pth.zip",
  4062. "source": "https://github.com/lutzroeder/netron/files/5213453/alexnet.pkl.pth.zip",
  4063. "format": "PyTorch v0.1.10",
  4064. "link": "https://github.com/lutzroeder/netron/issues/133"
  4065. },
  4066. {
  4067. "type": "pytorch",
  4068. "target": "alexnet.pt.zip",
  4069. "source": "https://github.com/lutzroeder/netron/files/6096605/alexnet.pt.zip",
  4070. "format": "TorchScript v1.6",
  4071. "link": "https://github.com/lutzroeder/netron/issues/281"
  4072. },
  4073. {
  4074. "type": "pytorch",
  4075. "target": "alexnet.ptl",
  4076. "source": "https://github.com/lutzroeder/netron/files/7340000/alexnet.ptl.zip[alexnet.ptl]",
  4077. "format": "TorchScript v1.6",
  4078. "link": "https://github.com/lutzroeder/netron/issues/827"
  4079. },
  4080. {
  4081. "type": "pytorch",
  4082. "target": "alexnet.zip.pth",
  4083. "source": "https://github.com/lutzroeder/netron/files/6096607/alexnet.zip.pth.zip[alexnet.zip.pth]",
  4084. "format": "PyTorch v1.6",
  4085. "link": "https://github.com/lutzroeder/netron/issues/133"
  4086. },
  4087. {
  4088. "type": "pytorch",
  4089. "target": "bert-base-uncased.pt",
  4090. "source": "https://github.com/lutzroeder/netron/files/7705212/bert-base-uncased.pt.zip[bert-base-uncased.pt]",
  4091. "format": "TorchScript v1.6",
  4092. "link": "https://github.com/lutzroeder/netron/issues/842"
  4093. },
  4094. {
  4095. "type": "pytorch",
  4096. "target": "blitz_neural_networks_tutorial_traced.pt",
  4097. "source": "https://github.com/lutzroeder/netron/files/3748989/blitz_neural_networks_tutorial.zip[blitz_neural_networks_tutorial_traced.pt]",
  4098. "format": "TorchScript v1.3",
  4099. "link": "https://github.com/lutzroeder/netron/issues/281"
  4100. },
  4101. {
  4102. "type": "pytorch",
  4103. "target": "blitz_neural_networks_tutorial.pt",
  4104. "source": "https://github.com/lutzroeder/netron/files/3748989/blitz_neural_networks_tutorial.zip[blitz_neural_networks_tutorial.pt]",
  4105. "format": "TorchScript v1.3",
  4106. "link": "https://github.com/lutzroeder/netron/issues/281"
  4107. },
  4108. {
  4109. "type": "pytorch",
  4110. "target": "blitz_cifar10_tutorial.pt",
  4111. "source": "https://github.com/lutzroeder/netron/files/3748500/blitz_cifar10_tutorial.zip[blitz_cifar10_tutorial.pt]",
  4112. "format": "TorchScript v1.3",
  4113. "link": "https://github.com/lutzroeder/netron/issues/281"
  4114. },
  4115. {
  4116. "type": "pytorch",
  4117. "target": "boolean.pkl.pth",
  4118. "source": "https://github.com/lutzroeder/netron/files/5435851/boolean.zip[boolean.pkl.pth]",
  4119. "format": "PyTorch v0.1.10",
  4120. "link": "https://github.com/lutzroeder/netron/issues/472"
  4121. },
  4122. {
  4123. "type": "pytorch",
  4124. "target": "boolean.zip.pth",
  4125. "source": "https://github.com/lutzroeder/netron/files/5435851/boolean.zip[boolean.pkl.pth]",
  4126. "format": "PyTorch v0.1.10",
  4127. "link": "https://github.com/lutzroeder/netron/issues/472"
  4128. },
  4129. {
  4130. "type": "pytorch",
  4131. "target": "bvlc_googlenet.caffemodel.pth",
  4132. "source": "https://www.dropbox.com/s/2ljm35ztj6hllcu/bvlc_googlenet.caffemodel.pth?dl=1",
  4133. "format": "PyTorch v0.1.10",
  4134. "link": "https://sea-region.github.com/yuminsuh/part_bilinear_reid/issues/2"
  4135. },
  4136. {
  4137. "type": "pytorch",
  4138. "target": "ckpt.t7",
  4139. "source": "https://raw.githubusercontent.com/babajide07/Redundant-Feature-Pruning-Pytorch-Implementation/master/checkpoint/ckpt.t7",
  4140. "format": "PyTorch v0.1.10",
  4141. "link": "https://github.com/babajide07/Redundant-Feature-Pruning-Pytorch-Implementation"
  4142. },
  4143. {
  4144. "type": "pytorch",
  4145. "target": "cruise_cutin_vehicle_model.pt",
  4146. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/cruise_cutin_vehicle_model.pt",
  4147. "format": "TorchScript v1.0",
  4148. "link": "https://github.com/ApolloAuto/apollo"
  4149. },
  4150. {
  4151. "type": "pytorch",
  4152. "target": "cruise_go_vehicle_model.pt",
  4153. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/cruise_go_vehicle_model.pt",
  4154. "format": "TorchScript v1.0",
  4155. "link": "https://github.com/ApolloAuto/apollo"
  4156. },
  4157. {
  4158. "type": "pytorch",
  4159. "target": "d2go.pt",
  4160. "source": "https://github.com/lutzroeder/netron/files/6370675/d2go.pt.zip[d2go.pt]",
  4161. "format": "TorchScript v1.7",
  4162. "link": "https://github.com/lutzroeder/netron/issues/732"
  4163. },
  4164. {
  4165. "type": "pytorch",
  4166. "target": "deeplabv3_scripted.pt",
  4167. "source": "https://github.com/lutzroeder/netron/files/5604999/deeplabv3_scripted.pt.zip[deeplabv3_scripted.pt]",
  4168. "format": "TorchScript v1.6",
  4169. "link": "https://github.com/lutzroeder/netron/issues/630"
  4170. },
  4171. {
  4172. "type": "pytorch",
  4173. "target": "DCGAN2.pt",
  4174. "source": "https://github.com/lutzroeder/netron/files/9075628/DCGAN2.pt.zip[DCGAN2.pt]",
  4175. "error": "Cannot read properties of undefined (reading 'base_loss_criterions') in 'DCGAN2.pt'.",
  4176. "link": "https://github.com/lutzroeder/netron/issues/928"
  4177. },
  4178. {
  4179. "type": "pytorch",
  4180. "target": "densenet161_traced.pt",
  4181. "source": "https://github.com/lutzroeder/netron/files/6096613/densenet161_traced.pt.zip[densenet161_traced.pt]",
  4182. "action": "skip-render",
  4183. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4184. },
  4185. {
  4186. "type": "pytorch",
  4187. "target": "densenet161.pt",
  4188. "source": "https://github.com/lutzroeder/netron/files/6096614/densenet161.pt.zip[densenet161.pt]",
  4189. "action": "skip-render",
  4190. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4191. },
  4192. {
  4193. "type": "pytorch",
  4194. "target": "densenet161.zip.pth",
  4195. "source": "https://github.com/lutzroeder/netron/files/6096621/densenet161.zip.pth.zip[densenet161.zip.pth]",
  4196. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4197. },
  4198. {
  4199. "type": "pytorch",
  4200. "target": "densenet161.mar",
  4201. "source": "https://torchserve.pytorch.org/mar_files/densenet161.mar",
  4202. "format": "PyTorch v0.1.10",
  4203. "link": "https://github.com/lutzroeder/netron/issues/286"
  4204. },
  4205. {
  4206. "type": "pytorch",
  4207. "target": "DRNL4x_dual_model.pth",
  4208. "source": "https://github.com/lutzroeder/netron/files/5505677/DRNL4x_dual_model.pth.zip[DRNL4x_dual_model.pth]",
  4209. "format": "PyTorch v0.1.10",
  4210. "link": "https://github.com/lutzroeder/netron/issues/543"
  4211. },
  4212. {
  4213. "type": "pytorch",
  4214. "target": "ENet.pth",
  4215. "source": "https://github.com/lutzroeder/netron/files/5368544/ENet.pth.zip[ENet.pth]",
  4216. "format": "PyTorch v0.1.10",
  4217. "link": "https://github.com/lutzroeder/netron/issues/133"
  4218. },
  4219. {
  4220. "type": "pytorch",
  4221. "target": "fasterrcnn_resnet50_fpn.pt",
  4222. "source": "https://github.com/lutzroeder/netron/files/7677467/fasterrcnn_resnet50_fpn.pt.zip[fasterrcnn_resnet50_fpn.pt]",
  4223. "error": "Unsupported torch.add expression type in 'fasterrcnn_resnet50_fpn.pt'.",
  4224. "link": "https://github.com/lutzroeder/netron/issues/689"
  4225. },
  4226. {
  4227. "type": "pytorch",
  4228. "target": "gcn2_tiny_320x240.pb",
  4229. "source": "https://raw.githubusercontent.com/jiexiong2016/GCNv2_SLAM/master/GCN2/gcn2_tiny_320x240.pt",
  4230. "format": "TorchScript v1.0",
  4231. "link": "https://github.com/jiexiong2016/GCNv2_SLAM"
  4232. },
  4233. {
  4234. "type": "pytorch",
  4235. "target": "inception_v3_traced.pt",
  4236. "source": "https://github.com/lutzroeder/netron/files/6096627/inception_v3_traced.pt.zip[inception_v3_traced.pt]",
  4237. "link": "https://github.com/lutzroeder/netron/issues/281"
  4238. },
  4239. {
  4240. "type": "pytorch",
  4241. "target": "inception_v3.pt",
  4242. "source": "https://github.com/lutzroeder/netron/files/6096628/inception_v3.pt.zip[inception_v3.pt]",
  4243. "link": "https://github.com/lutzroeder/netron/issues/281"
  4244. },
  4245. {
  4246. "type": "pytorch",
  4247. "target": "inception_v3.pkl.pth.zip",
  4248. "source": "https://github.com/lutzroeder/netron/files/5213454/inception_v3.pkl.pth.zip",
  4249. "format": "PyTorch v0.1.10",
  4250. "link": "https://github.com/lutzroeder/netron/issues/133"
  4251. },
  4252. {
  4253. "type": "pytorch",
  4254. "target": "inception_v3.zip.pth",
  4255. "source": "https://github.com/lutzroeder/netron/files/6096630/inception_v3.zip.pth.zip[inception_v3.zip.pth]",
  4256. "link": "https://github.com/lutzroeder/netron/issues/133"
  4257. },
  4258. {
  4259. "type": "pytorch",
  4260. "target": "iv3_pertensor.pt",
  4261. "source": "https://github.com/lutzroeder/netron/files/5212009/iv3_pertensor.zip[iv3_pertensor.pt]",
  4262. "format": "TorchScript v1.5",
  4263. "link": "https://github.com/lutzroeder/netron/issues/546"
  4264. },
  4265. {
  4266. "type": "pytorch",
  4267. "target": "junction_mlp_vehicle_model.pt",
  4268. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/junction_mlp_vehicle_model.pt",
  4269. "format": "TorchScript v1.0",
  4270. "link": "https://github.com/ApolloAuto/apollo"
  4271. },
  4272. {
  4273. "type": "pytorch",
  4274. "target": "labels.pth",
  4275. "source": "https://github.com/lutzroeder/netron/files/7350657/labels.pth.zip[labels.pth]",
  4276. "format": "PyTorch v1.6",
  4277. "link": "https://github.com/lutzroeder/netron/issues/720"
  4278. },
  4279. {
  4280. "type": "pytorch",
  4281. "target": "lane_scanning_vehicle_model.pt",
  4282. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/lane_scanning_vehicle_model.pt",
  4283. "format": "TorchScript v1.0",
  4284. "link": "https://github.com/ApolloAuto/apollo"
  4285. },
  4286. {
  4287. "type": "pytorch",
  4288. "target": "LMModel1.pt",
  4289. "source": "https://github.com/lutzroeder/netron/files/7726055/LMModel1.zip[LMModel1.pt]",
  4290. "format": "TorchScript v1.6",
  4291. "link": "https://github.com/lutzroeder/netron/issues/842"
  4292. },
  4293. {
  4294. "type": "pytorch",
  4295. "target": "mask_depthwise_conv.pt",
  4296. "source": "https://github.com/lutzroeder/netron/files/6186157/mask_depthwise_conv.pt.zip[mask_depthwise_conv.pt]",
  4297. "format": "TorchScript v1.3",
  4298. "link": "https://github.com/lutzroeder/netron/issues/281"
  4299. },
  4300. {
  4301. "type": "pytorch",
  4302. "target": "mask_r_cnn.pth",
  4303. "source": "https://raw.githubusercontent.com/facebookresearch/kill-the-bits/master/src/models/compressed/mask_r_cnn.pth",
  4304. "format": "PyTorch v0.1.10",
  4305. "link": "https://github.com/facebookresearch/kill-the-bits/tree/master/src/models/compressed"
  4306. },
  4307. {
  4308. "type": "pytorch",
  4309. "target": "mnist_bfloat16.pt",
  4310. "source": "https://github.com/lutzroeder/netron/files/8556403/mnist_bfloat16.pt.zip[mnist_bfloat16.pt]",
  4311. "format": "PyTorch v1.6",
  4312. "link": "https://github.com/lutzroeder/netron/issues/720"
  4313. },
  4314. {
  4315. "type": "pytorch",
  4316. "target": "mnist_linear.ckpt",
  4317. "source": "https://github.com/lutzroeder/netron/files/3585288/mnist_linear_torchscript.zip[mnist_linear.ckpt]",
  4318. "format": "PyTorch v0.1.10",
  4319. "link": "https://github.com/lutzroeder/netron/issues/281"
  4320. },
  4321. {
  4322. "type": "pytorch",
  4323. "target": "mnist_linear_dynamic_quantized.pt",
  4324. "source": "https://github.com/lutzroeder/netron/files/4774023/mnist_linear_dynamic_quantized.zip[mnist_linear_dynamic_quantized.pt]",
  4325. "format": "PyTorch v0.1.10",
  4326. "link": "https://github.com/lutzroeder/netron/issues/519"
  4327. },
  4328. {
  4329. "type": "pytorch",
  4330. "target": "mnist_linear_static_quantized.pt",
  4331. "source": "https://github.com/lutzroeder/netron/files/4774022/mnist_linear_static_quantized.zip[mnist_linear_static_quantized.pt]",
  4332. "format": "PyTorch v0.1.10",
  4333. "link": "https://github.com/lutzroeder/netron/issues/519"
  4334. },
  4335. {
  4336. "type": "pytorch",
  4337. "target": "mnist_linear_torchscript_1.pt",
  4338. "source": "https://github.com/lutzroeder/netron/files/3585288/mnist_linear_torchscript.zip[mnist_linear_torchscript_1.pt]",
  4339. "format": "TorchScript v1.1",
  4340. "link": "https://github.com/lutzroeder/netron/issues/281"
  4341. },
  4342. {
  4343. "type": "pytorch",
  4344. "target": "mnist_linear_torchscript_2.pt",
  4345. "source": "https://github.com/lutzroeder/netron/files/3585288/mnist_linear_torchscript.zip[mnist_linear_torchscript_2.pt]",
  4346. "format": "TorchScript v1.3",
  4347. "link": "https://github.com/lutzroeder/netron/issues/281"
  4348. },
  4349. {
  4350. "type": "pytorch",
  4351. "target": "mobilefacenet_scripted.pt",
  4352. "source": "https://github.com/foamliu/MobileFaceNet/releases/download/v1.0/mobilefacenet_scripted.pt",
  4353. "format": "TorchScript v1.3",
  4354. "link": "https://github.com/foamliu/MobileFaceNet"
  4355. },
  4356. {
  4357. "type": "pytorch",
  4358. "target": "mobilenet_quantization_scripted_quantized_1.pth",
  4359. "source": "https://github.com/lutzroeder/netron/files/5394885/mobilenet_quantization_scripted_quantized.zip[mobilenet_quantization_scripted_quantized_1.pth]",
  4360. "format": "TorchScript v1.3",
  4361. "link": "https://github.com/lutzroeder/netron/issues/421"
  4362. },
  4363. {
  4364. "type": "pytorch",
  4365. "target": "mobilenet_quantization_scripted_quantized_2.pth",
  4366. "source": "https://github.com/lutzroeder/netron/files/5394885/mobilenet_quantization_scripted_quantized.zip[mobilenet_quantization_scripted_quantized_2.pth]",
  4367. "format": "TorchScript v1.6",
  4368. "link": "https://github.com/lutzroeder/netron/issues/421"
  4369. },
  4370. {
  4371. "type": "pytorch",
  4372. "target": "mobilenet_v2.pt",
  4373. "source": "https://github.com/lutzroeder/netron/files/6096624/mobilenet_v2.pt.zip[mobilenet_v2.pt]",
  4374. "link": "https://github.com/lutzroeder/netron/issues/281"
  4375. },
  4376. {
  4377. "type": "pytorch",
  4378. "target": "mobilenet_v2_traced.pt",
  4379. "source": "https://github.com/lutzroeder/netron/files/6096623/mobilenet_v2_traced.pt.zip[mobilenet_v2_traced.pt]",
  4380. "link": "https://github.com/lutzroeder/netron/issues/281"
  4381. },
  4382. {
  4383. "type": "pytorch",
  4384. "target": "model_0_epochs.pt",
  4385. "source": "https://github.com/lutzroeder/netron/files/6765569/model_0_epochs.pt.zip[model_0_epochs.pt]",
  4386. "format": "TorchScript v1.6",
  4387. "link": "https://github.com/lutzroeder/netron/issues/647"
  4388. },
  4389. {
  4390. "type": "pytorch",
  4391. "target": "model_fnet.pt",
  4392. "source": "https://github.com/lutzroeder/netron/files/8457286/model_fnet.pt.zip[model_fnet.pt]",
  4393. "format": "TorchScript v1.6",
  4394. "link": "https://github.com/lutzroeder/netron/issues/882"
  4395. },
  4396. {
  4397. "type": "pytorch",
  4398. "target": "model-reddit16-f140225004_2.pt1",
  4399. "source": "https://raw.githubusercontent.com/pytorch/android-demo-app/master/PyTorchDemoApp/app/src/main/assets/model-reddit16-f140225004_2.pt1",
  4400. "format": "TorchScript v1.3",
  4401. "link": "https://github.com/pytorch/android-demo-app"
  4402. },
  4403. {
  4404. "type": "pytorch",
  4405. "target": "mobilenetv2-quant_full-nnapi.pt",
  4406. "source": "https://github.com/lutzroeder/netron/files/7406443/mobilenetv2-quant_full.zip[mobilenetv2-quant_full/mobilenetv2-quant_full-nnapi.pt]",
  4407. "format": "TorchScript v1.6",
  4408. "link": "https://github.com/lutzroeder/netron/issues/644"
  4409. },
  4410. {
  4411. "type": "pytorch",
  4412. "target": "mobilenetv2-quant_full-cpu.pt",
  4413. "source": "https://github.com/lutzroeder/netron/files/7406443/mobilenetv2-quant_full.zip[mobilenetv2-quant_full/mobilenetv2-quant_full-cpu.pt]",
  4414. "format": "TorchScript v1.6",
  4415. "link": "https://github.com/lutzroeder/netron/issues/644"
  4416. },
  4417. {
  4418. "type": "pytorch",
  4419. "target": "module_000007.pt",
  4420. "source": "https://github.com/lutzroeder/netron/files/9075631/module_000007.pt.zip[module_000007.pt]",
  4421. "error": "ValueError: not enough values to unpack (expected 4, actual 0) in 'module_000007.pt'.",
  4422. "link": "https://github.com/lutzroeder/netron/issues/842"
  4423. },
  4424. {
  4425. "type": "pytorch",
  4426. "target": "mtcnn.pt",
  4427. "source": "https://raw.githubusercontent.com/deepware/dFace/master/models/mtcnn.pt",
  4428. "format": "PyTorch v0.1.10",
  4429. "link": "https://github.com/deepware/dface/tree/master/dface"
  4430. },
  4431. {
  4432. "type": "pytorch",
  4433. "target": "netron_issue_313_v1.pt",
  4434. "source": "https://github.com/lutzroeder/netron/files/3721266/netron_issue_313.zip[netron_issue_313_v1.pt]",
  4435. "format": "TorchScript v1.0",
  4436. "link": "https://github.com/lutzroeder/netron/issues/313"
  4437. },
  4438. {
  4439. "type": "pytorch",
  4440. "target": "netron_issue_313_v2.pt",
  4441. "source": "https://github.com/lutzroeder/netron/files/3721266/netron_issue_313.zip[netron_issue_313_v2.pt]",
  4442. "format": "TorchScript v1.3",
  4443. "link": "https://github.com/lutzroeder/netron/issues/313"
  4444. },
  4445. {
  4446. "type": "pytorch",
  4447. "target": "netron_issue_432_activation.pth",
  4448. "source": "https://github.com/lutzroeder/netron/files/4226686/netron_issue_432_activation.pth.zip[netron_issue_432_activation.pth]",
  4449. "format": "TorchScript v1.3",
  4450. "link": "https://github.com/lutzroeder/netron/issues/432"
  4451. },
  4452. {
  4453. "type": "pytorch",
  4454. "target": "netron_issue_432_bmm.pth",
  4455. "source": "https://github.com/lutzroeder/netron/files/4226688/netron_issue_432_bmm.pth.zip[netron_issue_432_bmm.pth]",
  4456. "format": "TorchScript v1.3",
  4457. "link": "https://github.com/lutzroeder/netron/issues/432"
  4458. },
  4459. {
  4460. "type": "pytorch",
  4461. "target": "netron_issue_432_constant_pad_2d.pth",
  4462. "source": "https://github.com/lutzroeder/netron/files/4226690/netron_issue_432_constant_pad_2d.pth.zip[netron_issue_432_constant_pad_2d.pth]",
  4463. "format": "TorchScript v1.3",
  4464. "link": "https://github.com/lutzroeder/netron/issues/432"
  4465. },
  4466. {
  4467. "type": "pytorch",
  4468. "target": "netron_issue_529.pt",
  4469. "source": "https://github.com/lutzroeder/netron/files/4834633/netron_issue_529.zip[netron_issue_529.pt]",
  4470. "format": "TorchScript v1.5",
  4471. "link": "https://github.com/lutzroeder/netron/issues/529"
  4472. },
  4473. {
  4474. "type": "pytorch",
  4475. "target": "netron_issue_529_traced.pt",
  4476. "source": "https://github.com/lutzroeder/netron/files/4834633/netron_issue_529.zip[netron_issue_529_traced.pt]",
  4477. "format": "TorchScript v1.5",
  4478. "link": "https://github.com/lutzroeder/netron/issues/529"
  4479. },
  4480. {
  4481. "type": "pytorch",
  4482. "target": "netron_issue_545_caffe2.pt",
  4483. "source": "https://github.com/lutzroeder/netron/files/5690362/netron_issue_545_caffe2.pt.zip[netron_issue_545_caffe2.pt]",
  4484. "format": "TorchScript v1.6",
  4485. "link": "https://github.com/lutzroeder/netron/issues/545"
  4486. },
  4487. {
  4488. "type": "pytorch",
  4489. "target": "netron_issue_547_1.pt",
  4490. "source": "https://github.com/lutzroeder/netron/files/5137393/netron_issue_547_1.zip[netron_issue_547_1.pt]",
  4491. "error": "Unsupported torch.add expression type in 'netron_issue_547_1.pt'.",
  4492. "link": "https://github.com/lutzroeder/netron/issues/547"
  4493. },
  4494. {
  4495. "type": "pytorch",
  4496. "target": "netron_issue_609.pt",
  4497. "source": "https://github.com/lutzroeder/netron/files/5309279/netron_issue_609.pt.zip[netron_issue_609.pt]",
  4498. "format": "TorchScript v1.6",
  4499. "link": "https://github.com/lutzroeder/netron/issues/609"
  4500. },
  4501. {
  4502. "type": "pytorch",
  4503. "target": "netron_issue_677.pt",
  4504. "source": "https://github.com/lutzroeder/netron/files/5923252/netron_issue_677.pt.zip[netron_issue_677.pt]",
  4505. "format": "TorchScript v1.6",
  4506. "link": "https://github.com/lutzroeder/netron/issues/677"
  4507. },
  4508. {
  4509. "type": "pytorch",
  4510. "target": "norm_inplace.pt.zip",
  4511. "source": "https://github.com/lutzroeder/netron/files/4516621/norm_inplace.pt.zip",
  4512. "format": "TorchScript v1.3",
  4513. "link": "https://github.com/lutzroeder/netron/issues/473"
  4514. },
  4515. {
  4516. "type": "pytorch",
  4517. "target": "netron_issue_920.pt",
  4518. "source": "https://github.com/lutzroeder/netron/files/8857486/netron_issue_920.pt.zip[netron_issue_920.pt]",
  4519. "format": "TorchScript v1.6",
  4520. "link": "https://github.com/lutzroeder/netron/issues/637"
  4521. },
  4522. {
  4523. "type": "pytorch",
  4524. "target": "opt_xx.pt",
  4525. "source": "https://github.com/lutzroeder/netron/files/8747908/opt_xx.pt.zip[opt_xx.pt]",
  4526. "format": "TorchScript v1.6",
  4527. "error": "Slicing expected array in 'opt_xx.pt'.",
  4528. "link": "https://github.com/lutzroeder/netron/issues/913"
  4529. },
  4530. {
  4531. "type": "pytorch",
  4532. "target": "pedestrian_interaction_position_embedding.pt",
  4533. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/pedestrian_interaction_position_embedding.pt",
  4534. "format": "TorchScript v1.0",
  4535. "link": "https://github.com/ApolloAuto/apollo"
  4536. },
  4537. {
  4538. "type": "pytorch",
  4539. "target": "pedestrian_interaction_prediction_layer.pt",
  4540. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/pedestrian_interaction_prediction_layer.pt",
  4541. "format": "TorchScript v1.0",
  4542. "link": "https://github.com/ApolloAuto/apollo"
  4543. },
  4544. {
  4545. "type": "pytorch",
  4546. "target": "pedestrian_interaction_single_lstm.pt",
  4547. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/pedestrian_interaction_single_lstm.pt",
  4548. "format": "TorchScript v1.0",
  4549. "link": "https://github.com/ApolloAuto/apollo"
  4550. },
  4551. {
  4552. "type": "pytorch",
  4553. "target": "pedestrian_interaction_social_embedding.pt",
  4554. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/pedestrian_interaction_social_embedding.pt",
  4555. "format": "TorchScript v1.1",
  4556. "link": "https://github.com/ApolloAuto/apollo"
  4557. },
  4558. {
  4559. "type": "pytorch",
  4560. "target": "posemodel.pt",
  4561. "source": "https://github.com/lutzroeder/netron/files/5475350/posemodel.pt.zip[posemodel.pt]",
  4562. "format": "TorchScript v1.6",
  4563. "link": "https://github.com/lutzroeder/netron/issues/546"
  4564. },
  4565. {
  4566. "type": "pytorch",
  4567. "target": "pytorch_invalid_file.pth",
  4568. "source": "https://github.com/lutzroeder/netron/files/3269093/pytorch_invalid_file.zip[pytorch_invalid_file.pth]",
  4569. "error": "Could not find end of line in 'pytorch_invalid_file.pth'.",
  4570. "link": "https://github.com/lutzroeder/netron/issues/133"
  4571. },
  4572. {
  4573. "type": "pytorch",
  4574. "target": "quant_3d.pt",
  4575. "source": "https://github.com/lutzroeder/netron/files/5877566/quant_3d.pt.zip[quant_3d.pt]",
  4576. "format": "TorchScript v1.6",
  4577. "link": "https://github.com/lutzroeder/netron/issues/546"
  4578. },
  4579. {
  4580. "type": "pytorch",
  4581. "target": "r3d_18_traced.pt",
  4582. "source": "https://github.com/lutzroeder/netron/files/6096649/r3d_18_traced.pt.zip[r3d_18_traced.pt]",
  4583. "link": "https://github.com/lutzroeder/netron/issues/281"
  4584. },
  4585. {
  4586. "type": "pytorch",
  4587. "target": "r3d_18.pt",
  4588. "source": "https://github.com/lutzroeder/netron/files/6096650/r3d_18.pt.zip[r3d_18.pt]",
  4589. "link": "https://github.com/lutzroeder/netron/issues/281"
  4590. },
  4591. {
  4592. "type": "pytorch",
  4593. "target": "r3d_18.zip.pth",
  4594. "source": "https://github.com/lutzroeder/netron/files/6096655/r3d_18.zip.pth.zip[r3d_18.zip.pth]",
  4595. "format": "PyTorch v1.6",
  4596. "link": "https://github.com/lutzroeder/netron/issues/133"
  4597. },
  4598. {
  4599. "type": "pytorch",
  4600. "target": "rcnn.pt",
  4601. "source": "https://github.com/lutzroeder/netron/files/9035740/rcnn.pt.zip[rcnn.pt]",
  4602. "error": "AssertionError: expecting the last two dimensions of the Tensor to be H and W instead got [] in 'rcnn.pt'.",
  4603. "link": "https://github.com/lutzroeder/netron/issues/842"
  4604. },
  4605. {
  4606. "type": "pytorch",
  4607. "target": "refine_model.pt",
  4608. "source": "https://github.com/lutzroeder/netron/files/6186158/refine_model.pt.zip[refine_model.pt]",
  4609. "format": "TorchScript v1.3",
  4610. "link": "https://github.com/lutzroeder/netron/issues/281"
  4611. },
  4612. {
  4613. "type": "pytorch",
  4614. "target": "resnet18_fbgemm_16fa66dd.pth",
  4615. "source": "https://download.pytorch.org/models/quantized/resnet18_fbgemm_16fa66dd.pth",
  4616. "format": "PyTorch v0.1.10",
  4617. "link": "https://github.com/pytorch/vision/blob/master/torchvision/models/quantization/resnet.py"
  4618. },
  4619. {
  4620. "type": "pytorch",
  4621. "target": "resnet18_large_blocks.pth",
  4622. "source": "https://raw.githubusercontent.com/facebookresearch/kill-the-bits/master/src/models/compressed/resnet18_large_blocks.pth",
  4623. "format": "PyTorch v0.1.10",
  4624. "link": "https://github.com/facebookresearch/kill-the-bits/tree/master/src/models/compressed"
  4625. },
  4626. {
  4627. "type": "pytorch",
  4628. "target": "resnet18_quantized_cifar10.pt.zip",
  4629. "source": "https://github.com/lutzroeder/netron/files/7610907/resnet18_quantized_cifar10.pt.zip[resnet18_quantized_cifar10.pt]",
  4630. "format": "TorchScript v1.6",
  4631. "link": "https://github.com/lutzroeder/netron/issues/842"
  4632. },
  4633. {
  4634. "type": "pytorch",
  4635. "target": "resnet18-5c106cde.pth",
  4636. "source": "https://download.pytorch.org/models/resnet18-5c106cde.pth",
  4637. "format": "PyTorch v0.1.1",
  4638. "link": "https://github.com/pytorch/vision/blob/master/torchvision/models/resnet.py"
  4639. },
  4640. {
  4641. "type": "pytorch",
  4642. "target": "resnet-18-at-export.pth",
  4643. "source": "https://s3.amazonaws.com/modelzoo-networks/resnet-18-at-export.pth",
  4644. "format": "PyTorch v0.1.10",
  4645. "link": "https://github.com/szagoruyko/attention-transfer"
  4646. },
  4647. {
  4648. "type": "pytorch",
  4649. "target": "resnet34.pt",
  4650. "source": "https://github.com/lutzroeder/netron/files/9075629/resnet34.pt.zip",
  4651. "format": "PyTorch Package v1.9",
  4652. "link": "https://github.com/lutzroeder/netron/issues/928"
  4653. },
  4654. {
  4655. "type": "pytorch",
  4656. "target": "resnet34-333f7ec4.pth",
  4657. "source": "https://download.pytorch.org/models/resnet34-333f7ec4.pth",
  4658. "format": "PyTorch v0.1.1",
  4659. "link": "https://github.com/pytorch/vision/blob/master/torchvision/models/resnet.py"
  4660. },
  4661. {
  4662. "type": "pytorch",
  4663. "target": "resnet50_pertensor.pt",
  4664. "source": "https://github.com/lutzroeder/netron/files/5212006/resnet50_pertensor.zip[resnet50_pertensor.pt]",
  4665. "format": "TorchScript v1.5",
  4666. "link": "https://github.com/lutzroeder/netron/issues/546"
  4667. },
  4668. {
  4669. "type": "pytorch",
  4670. "target": "resnext50_32x4d_fpn.pth",
  4671. "source": "https://github.com/lutzroeder/netron/files/8985800/resnext50_32x4d_fpn.pth.zip[resnext50_32x4d_fpn.pth]",
  4672. "format": "TorchScript v1.7",
  4673. "link": "https://github.com/lutzroeder/netron/issues/842"
  4674. },
  4675. {
  4676. "type": "pytorch",
  4677. "target": "resnet101.pkl.pth.zip",
  4678. "source": "https://github.com/lutzroeder/netron/files/5213455/resnet101.pkl.pth.zip",
  4679. "format": "PyTorch v0.1.10",
  4680. "link": "https://github.com/lutzroeder/netron/issues/133"
  4681. },
  4682. {
  4683. "type": "pytorch",
  4684. "target": "resnet101.pt",
  4685. "source": "https://github.com/lutzroeder/netron/files/6096666/resnet101_traced.pt.zip[resnet101_traced.pt]",
  4686. "format": "TorchScript v1.6",
  4687. "link": "https://github.com/lutzroeder/netron/issues/281"
  4688. },
  4689. {
  4690. "type": "pytorch",
  4691. "target": "resnet101_traced.pt",
  4692. "source": "https://github.com/lutzroeder/netron/files/6096671/shufflenet_v2_x1_0.pt.zip[shufflenet_v2_x1_0.pt]",
  4693. "format": "TorchScript v1.6",
  4694. "link": "https://github.com/lutzroeder/netron/issues/281"
  4695. },
  4696. {
  4697. "type": "pytorch",
  4698. "target": "resnet18.ot",
  4699. "source": "https://github.com/lutzroeder/netron/files/7664092/resnet18.ot.zip[resnet18.ot]",
  4700. "format": "TorchScript v1.0",
  4701. "link": "https://github.com/lutzroeder/netron/issues/686"
  4702. },
  4703. {
  4704. "type": "pytorch",
  4705. "target": "resnet18.pt",
  4706. "source": "https://github.com/lutzroeder/netron/files/5212015/resnet18.zip[resnet18.pt]",
  4707. "format": "TorchScript v1.6",
  4708. "link": "https://github.com/lutzroeder/netron/issues/559"
  4709. },
  4710. {
  4711. "type": "pytorch",
  4712. "target": "resnet18_fx_graph_mode_quantized.pth",
  4713. "source": "https://github.com/lutzroeder/netron/files/6716842/resnet18_fx_graph_mode_quantized.pth.zip[resnet18_fx_graph_mode_quantized.pth]",
  4714. "format": "TorchScript v1.6",
  4715. "link": "https://github.com/lutzroeder/netron/issues/758"
  4716. },
  4717. {
  4718. "type": "pytorch",
  4719. "target": "resnet50_tucker.pth",
  4720. "source": "https://raw.githubusercontent.com/larry0123du/Decompose-CNN/master/models/resnet50_tucker.pth",
  4721. "format": "PyTorch v0.1.10",
  4722. "link": "https://github.com/larry0123du/Decompose-CNN"
  4723. },
  4724. {
  4725. "type": "pytorch",
  4726. "target": "resnet50_tucker_state.pth",
  4727. "source": "https://raw.githubusercontent.com/larry0123du/Decompose-CNN/master/models/resnet50_tucker_state.pth",
  4728. "format": "PyTorch v0.1.10",
  4729. "link": "https://github.com/larry0123du/Decompose-CNN"
  4730. },
  4731. {
  4732. "type": "pytorch",
  4733. "target": "rpn_model.pt",
  4734. "source": "https://github.com/lutzroeder/netron/files/6186159/rpn_model.pt.zip[rpn_model.pt]",
  4735. "format": "TorchScript v1.3",
  4736. "link": "https://github.com/lutzroeder/netron/issues/281"
  4737. },
  4738. {
  4739. "type": "pytorch",
  4740. "target": "rvm_mobilenetv3_fp16.torchscript",
  4741. "source": "https://github.com/PeterL1n/RobustVideoMatting/releases/download/v1.0.0/rvm_mobilenetv3_fp16.torchscript",
  4742. "format": "TorchScript v1.6",
  4743. "link": "https://github.com/PeterL1n/RobustVideoMatting"
  4744. },
  4745. {
  4746. "type": "pytorch",
  4747. "target": "segmentor.pt",
  4748. "source": "https://github.com/lutzroeder/netron/files/7663953/segmentor.pt.zip[segmentor.pt]",
  4749. "format": "TorchScript v1.6",
  4750. "link": "https://github.com/lutzroeder/netron/issues/686"
  4751. },
  4752. {
  4753. "type": "pytorch",
  4754. "target": "semantic_lstm_vehicle_model.pt",
  4755. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/semantic_lstm_vehicle_model.pt",
  4756. "format": "TorchScript v1.1",
  4757. "link": "https://github.com/ApolloAuto/apollo"
  4758. },
  4759. {
  4760. "type": "pytorch",
  4761. "target": "SiamFC_50_model.pth",
  4762. "source": "https://raw.githubusercontent.com/HengLan/SiamFC-PyTorch/master/Train/model/SiamFC_50_model.pth",
  4763. "format": "PyTorch v0.1.10",
  4764. "link": "https://github.com/HengLan/SiamFC-PyTorch"
  4765. },
  4766. {
  4767. "type": "pytorch",
  4768. "target": "shufflenet_v2_x1_0.zip.pth",
  4769. "source": "https://github.com/lutzroeder/netron/files/6096673/shufflenet_v2_x1_0.zip.pth.zip[shufflenet_v2_x1_0.zip.pth]",
  4770. "format": "PyTorch v1.6",
  4771. "link": "https://github.com/lutzroeder/netron/issues/133"
  4772. },
  4773. {
  4774. "type": "pytorch",
  4775. "target": "shufflenet_v2_x1_0.pt",
  4776. "source": "https://github.com/lutzroeder/netron/files/6096671/shufflenet_v2_x1_0.pt.zip[shufflenet_v2_x1_0.pt]",
  4777. "format": "TorchScript v1.6",
  4778. "link": "https://github.com/lutzroeder/netron/issues/281"
  4779. },
  4780. {
  4781. "type": "pytorch",
  4782. "target": "squeezenet1_0-a815701f.pth",
  4783. "source": "https://download.pytorch.org/models/squeezenet1_0-a815701f.pth",
  4784. "format": "PyTorch v0.1.1"
  4785. },
  4786. {
  4787. "type": "pytorch",
  4788. "target": "squeezenet1_1_traced.pt",
  4789. "source": "https://github.com/lutzroeder/netron/files/6096661/squeezenet1_1_traced.pt.zip[squeezenet1_1_traced.pt]",
  4790. "format": "TorchScript v1.6",
  4791. "link": "https://github.com/lutzroeder/netron/issues/281"
  4792. },
  4793. {
  4794. "type": "pytorch",
  4795. "target": "squeezenet1_1.pt",
  4796. "source": "https://github.com/lutzroeder/netron/files/6096662/squeezenet1_1.pt.zip[squeezenet1_1.pt]",
  4797. "format": "TorchScript v1.6",
  4798. "link": "https://github.com/lutzroeder/netron/issues/281"
  4799. },
  4800. {
  4801. "type": "pytorch",
  4802. "target": "squeezenet1_1.pkl.pth.zip",
  4803. "source": "https://github.com/lutzroeder/netron/files/5213456/squeezenet1_1.pkl.pth.zip",
  4804. "format": "PyTorch v0.1.10",
  4805. "link": "https://github.com/lutzroeder/netron/issues/133"
  4806. },
  4807. {
  4808. "type": "pytorch",
  4809. "target": "squeezenet1_1-f364aa15.pth",
  4810. "source": "https://download.pytorch.org/models/squeezenet1_1-f364aa15.pth",
  4811. "format": "PyTorch v0.1.1"
  4812. },
  4813. {
  4814. "type": "pytorch",
  4815. "target": "ssdlite320_mobilenet_v3_large.pt",
  4816. "source": "https://github.com/lutzroeder/netron/files/7677468/ssdlite320_mobilenet_v3_large.pt.zip[ssdlite320_mobilenet_v3_large.pt]",
  4817. "format": "TorchScript v1.6",
  4818. "link": "https://github.com/lutzroeder/netron/issues/842"
  4819. },
  4820. {
  4821. "type": "pytorch",
  4822. "target": "superpoint_v1.pth",
  4823. "source": "https://raw.githubusercontent.com/MagicLeapResearch/SuperPointPretrainedNetwork/master/superpoint_v1.pth",
  4824. "format": "PyTorch v0.1.10",
  4825. "link": "https://github.com/MagicLeapResearch/SuperPointPretrainedNetwork"
  4826. },
  4827. {
  4828. "type": "pytorch",
  4829. "target": "superpoint.pt",
  4830. "source": "https://raw.githubusercontent.com/KinglittleQ/SuperPoint_SLAM/master/superpoint.pt",
  4831. "format": "TorchScript v1.0",
  4832. "link": "https://github.com/KinglittleQ/SuperPoint_SLAM"
  4833. },
  4834. {
  4835. "type": "pytorch",
  4836. "target": "traced_fft.pt",
  4837. "source": "https://github.com/lutzroeder/netron/files/5172197/traced_fft.zip[traced_fft.pt]",
  4838. "format": "TorchScript v1.3",
  4839. "link": "https://github.com/lutzroeder/netron/issues/546"
  4840. },
  4841. {
  4842. "type": "pytorch",
  4843. "target": "traced_online_lane_enc.pt",
  4844. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/traced_online_lane_enc.pt",
  4845. "format": "TorchScript v1.0",
  4846. "link": "https://github.com/ApolloAuto/apollo"
  4847. },
  4848. {
  4849. "type": "pytorch",
  4850. "target": "traced_online_obs_enc.pt",
  4851. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/traced_online_obs_enc.pt",
  4852. "format": "TorchScript v1.0",
  4853. "link": "https://github.com/ApolloAuto/apollo"
  4854. },
  4855. {
  4856. "type": "pytorch",
  4857. "target": "traced_online_pred_layer.pt",
  4858. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/traced_online_pred_layer.pt",
  4859. "format": "TorchScript v1.0",
  4860. "link": "https://github.com/ApolloAuto/apollo"
  4861. },
  4862. {
  4863. "type": "pytorch",
  4864. "target": "test.8bit.pth",
  4865. "source": "https://github.com/lutzroeder/netron/files/5238524/test.8bit.pth.zip[test.8bit.pth]",
  4866. "format": "TorchScript v1.6",
  4867. "link": "https://github.com/lutzroeder/netron/issues/546"
  4868. },
  4869. {
  4870. "type": "pytorch",
  4871. "target": "torch_script_model_dot15.pt",
  4872. "source": "https://github.com/lutzroeder/netron/files/6308295/torch_script_model_dot15.pt.zip[torch_script_model_dot15.pt]",
  4873. "format": "TorchScript v1.5",
  4874. "link": "https://github.com/lutzroeder/netron/issues/546"
  4875. },
  4876. {
  4877. "type": "pytorch",
  4878. "target": "torchscript_resnet50_fp32.pth",
  4879. "source": "https://github.com/lutzroeder/netron/files/7688572/torchscript_resnet50_fp32.pth.zip[torchscript_resnet50_fp32.pth]",
  4880. "format": "TorchScript v1.6",
  4881. "link": "https://github.com/lutzroeder/netron/issues/842"
  4882. },
  4883. {
  4884. "type": "pytorch",
  4885. "target": "tutorial_bidirectional_recurrent_neural_network.pth",
  4886. "source": "https://github.com/lutzroeder/netron/files/2587823/tutorial_models.zip[tutorial_bidirectional_recurrent_neural_network.pth]",
  4887. "format": "PyTorch v0.1.10",
  4888. "link": "https://github.com/lutzroeder/netron/issues/133"
  4889. },
  4890. {
  4891. "type": "pytorch",
  4892. "target": "tutorial_convolutional_neural_network.pth",
  4893. "source": "https://github.com/lutzroeder/netron/files/2587823/tutorial_models.zip[tutorial_convolutional_neural_network.pth]",
  4894. "format": "PyTorch v0.1.10",
  4895. "link": "https://github.com/lutzroeder/netron/issues/133"
  4896. },
  4897. {
  4898. "type": "pytorch",
  4899. "target": "tutorial_deep_residual_network.pth",
  4900. "source": "https://github.com/lutzroeder/netron/files/2587823/tutorial_models.zip[tutorial_deep_residual_network.pth]",
  4901. "format": "PyTorch v0.1.10",
  4902. "link": "https://github.com/lutzroeder/netron/issues/133"
  4903. },
  4904. {
  4905. "type": "pytorch",
  4906. "target": "tutorial_logistic_regression.pth",
  4907. "source": "https://github.com/lutzroeder/netron/files/2587823/tutorial_models.zip[tutorial_logistic_regression.pth]",
  4908. "format": "PyTorch v0.1.10",
  4909. "link": "https://github.com/lutzroeder/netron/issues/133"
  4910. },
  4911. {
  4912. "type": "pytorch",
  4913. "target": "tutorial_mnist.pth",
  4914. "source": "https://github.com/lutzroeder/netron/files/2587823/tutorial_models.zip[tutorial_mnist.pth]",
  4915. "format": "PyTorch v0.1.10",
  4916. "link": "https://github.com/lutzroeder/netron/issues/133"
  4917. },
  4918. {
  4919. "type": "pytorch",
  4920. "target": "tutorial_recurrent_neural_network.pth",
  4921. "source": "https://github.com/lutzroeder/netron/files/2587823/tutorial_models.zip[tutorial_recurrent_neural_network.pth]",
  4922. "format": "PyTorch v0.1.10",
  4923. "link": "https://github.com/lutzroeder/netron/issues/133"
  4924. },
  4925. {
  4926. "type": "pytorch",
  4927. "target": "tutorial_variational_autoencoder.pth.tar",
  4928. "source": "https://github.com/lutzroeder/netron/files/2587823/tutorial_models.zip[tutorial_variational_autoencoder.pth]",
  4929. "format": "PyTorch v0.1.10",
  4930. "link": "https://github.com/lutzroeder/netron/issues/133"
  4931. },
  4932. {
  4933. "type": "pytorch",
  4934. "target": "v3_1_ru.pt",
  4935. "source": "https://github.com/lutzroeder/netron/files/9075630/v3_1_ru.pt.zip[v3_1_ru.pt]",
  4936. "format": "PyTorch Package v1.9",
  4937. "link": "https://github.com/lutzroeder/netron/issues/928"
  4938. },
  4939. {
  4940. "type": "pytorch",
  4941. "target": "valid-bert-base-uncased.pt",
  4942. "source": "https://github.com/lutzroeder/netron/files/4977150/valid-bert-base-uncased.zip[valid-bert-base-uncased.pt]",
  4943. "format": "PyTorch v0.1.10",
  4944. "link": "https://github.com/lutzroeder/netron/issues/133"
  4945. },
  4946. {
  4947. "type": "pytorch",
  4948. "target": "ViT-B-32.pt",
  4949. "source": "https://github.com/lutzroeder/netron/files/5790183/ViT-B-32.pt.zip[ViT-B-32.pt]",
  4950. "format": "TorchScript v1.6",
  4951. "link": "https://github.com/lutzroeder/netron/issues/546"
  4952. },
  4953. {
  4954. "type": "pytorch",
  4955. "target": "vgg-cifar10.pth.tar",
  4956. "source": "http://www.cs.unc.edu/~cyfu/cifar10/model_best.pth.tar",
  4957. "format": "PyTorch v0.1.10",
  4958. "link": "https://github.com/chengyangfu/pytorch-vgg-cifar10"
  4959. },
  4960. {
  4961. "type": "pytorch",
  4962. "target": "video_classification.pt",
  4963. "source": "https://github.com/lutzroeder/netron/files/6341327/video_classification.pt.zip[video_classification.pt]",
  4964. "format": "TorchScript v1.6",
  4965. "link": "https://github.com/lutzroeder/netron/issues/728"
  4966. },
  4967. {
  4968. "type": "pytorch",
  4969. "target": "wav2mel.pt",
  4970. "source": "https://github.com/lutzroeder/netron/files/7534717/wav2mel.pt.zip[wav2mel.pt]",
  4971. "format": "TorchScript v1.6",
  4972. "link": "https://github.com/lutzroeder/netron/issues/842"
  4973. },
  4974. {
  4975. "type": "pytorch",
  4976. "target": "wav2vec2.ptl",
  4977. "source": "https://github.com/lutzroeder/netron/files/7447547/wav2vec2.ptl.zip[wav2vec2.ptl]",
  4978. "format": "TorchScript v1.6",
  4979. "link": "https://github.com/lutzroeder/netron/issues/827"
  4980. },
  4981. {
  4982. "type": "pytorch",
  4983. "target": "WAV2VEC2_BASE_quant-none-cpu.pt",
  4984. "source": "https://github.com/lutzroeder/netron/files/8820082/WAV2VEC2_BASE_quant-none-cpu.pt.zip[WAV2VEC2_BASE_quant-none-cpu.pt]",
  4985. "format": "TorchScript v1.6",
  4986. "link": "https://github.com/lutzroeder/netron/issues/918"
  4987. },
  4988. {
  4989. "type": "pytorch",
  4990. "target": "yolov5n.torchscript",
  4991. "source": "https://github.com/lutzroeder/netron/files/8457287/yolov5n.torchscript.zip[yolov5n.torchscript]",
  4992. "format": "TorchScript v1.6",
  4993. "error": "Offset is outside the bounds of the DataView",
  4994. "link": "https://github.com/lutzroeder/netron/issues/882"
  4995. },
  4996. {
  4997. "type": "pytorch",
  4998. "target": "yolo4_tiny.pt",
  4999. "source": "https://github.com/lutzroeder/netron/files/7995416/yolo4_tiny.pt.zip[yolo4_tiny.pt]",
  5000. "format": "TorchScript v1.5",
  5001. "link": "https://github.com/lutzroeder/netron/issues/842"
  5002. },
  5003. {
  5004. "type": "rknn",
  5005. "target": "autopilot.rknn",
  5006. "source": "https://github.com/lutzroeder/netron/files/5621074/autopilot.rknn.zip[autopilot.rknn]",
  5007. "format": "RKNN v1.3.0",
  5008. "link": "https://github.com/lutzroeder/netron/issues/639"
  5009. },
  5010. {
  5011. "type": "rknn",
  5012. "target": "blazeface.rknn",
  5013. "source": "https://github.com/lutzroeder/netron/files/8932892/blazeface.rknn.zip[blazeface.rknn]",
  5014. "format": "RKNN v1.7.0",
  5015. "link": "https://github.com/lutzroeder/netron/issues/639"
  5016. },
  5017. {
  5018. "type": "rknn",
  5019. "target": "ckpt_precompile_20.nb",
  5020. "source": "https://github.com/lutzroeder/netron/files/8932893/ckpt_precompile_20.nb.zip[ckpt_precompile_20.nb]",
  5021. "format": "RKNN OpenVX",
  5022. "link": "https://github.com/lutzroeder/netron/issues/639"
  5023. },
  5024. {
  5025. "type": "rknn",
  5026. "target": "det_monitor.nb",
  5027. "source": "https://github.com/lutzroeder/netron/files/8886768/det_monitor.nb.zip[det_monitor.nb]",
  5028. "format": "RKNN OpenVX",
  5029. "link": "https://github.com/lutzroeder/netron/issues/639"
  5030. },
  5031. {
  5032. "type": "rknn",
  5033. "target": "deepfusion.rknn",
  5034. "source": "https://github.com/lutzroeder/netron/files/5621075/deepfusion.rknn.zip[deepfusion.rknn]",
  5035. "format": "RKNN v1.2.1",
  5036. "link": "https://github.com/lutzroeder/netron/issues/639"
  5037. },
  5038. {
  5039. "type": "rknn",
  5040. "target": "kindnet.rknn",
  5041. "source": "https://github.com/lutzroeder/netron/files/5621076/kindnet.rknn.zip[kindnet.rknn]",
  5042. "format": "RKNN v1.3.2",
  5043. "link": "https://github.com/lutzroeder/netron/issues/639"
  5044. },
  5045. {
  5046. "type": "rknn",
  5047. "target": "mobilenet_v1.rknn",
  5048. "source": "https://github.com/lutzroeder/netron/files/8886811/mobilenet_v1.rknn.zip[mobilenet_v1.rknn]",
  5049. "format": "RKNN Lite v1.2.6",
  5050. "link": "https://github.com/lutzroeder/netron/issues/639"
  5051. },
  5052. {
  5053. "type": "rknn",
  5054. "target": "mobilenetv2.rknn",
  5055. "source": "https://github.com/lutzroeder/netron/files/8886972/mobilenetv2.rknn.zip[mobilenetv2.rknn]",
  5056. "format": "RKNN v1.2.0",
  5057. "link": "https://github.com/lutzroeder/netron/issues/639"
  5058. },
  5059. {
  5060. "type": "rknn",
  5061. "target": "resize_area.rknn",
  5062. "source": "https://github.com/lutzroeder/netron/files/8886403/resize_area.rknn.zip[resize_area.rknn]",
  5063. "format": "RKNN v1.3.0",
  5064. "link": "https://github.com/lutzroeder/netron/issues/639"
  5065. },
  5066. {
  5067. "type": "rknn",
  5068. "target": "resnet_18.rknn",
  5069. "source": "https://github.com/lutzroeder/netron/files/5621078/resnet_18.rknn.zip[resnet_18.rknn]",
  5070. "format": "RKNN v1.3.2",
  5071. "link": "https://github.com/lutzroeder/netron/issues/639"
  5072. },
  5073. {
  5074. "type": "rknn",
  5075. "target": "ssd_inception_v2.rknn",
  5076. "source": "https://raw.githubusercontent.com/radxa/rknpu2/00f555433f07936dde0e4442f65bc46354934130/examples/rknn_ssd_demo/model/RK356X/ssd_inception_v2.rknn",
  5077. "format": "RKNN v1.0.0",
  5078. "link": "https://github.com/radxa/rknpu2/tree/00f555433f07936dde0e4442f65bc46354934130/examples/rknn_ssd_demo/model/RK356X"
  5079. },
  5080. {
  5081. "type": "rknn",
  5082. "target": "yolov5s-640-640.rknn",
  5083. "source": "https://github.com/lutzroeder/netron/files/8886404/yolov5s-640-640.rknn.zip[yolov5s-640-640.rknn]",
  5084. "format": "RKNN v1.2.5",
  5085. "link": "https://github.com/lutzroeder/netron/issues/639"
  5086. },
  5087. {
  5088. "type": "sklearn",
  5089. "target": "best_boston.pb",
  5090. "source": "https://github.com/lutzroeder/netron/files/3335715/xgboost_best_boston.zip[best_boston.pkl]",
  5091. "format": "scikit-learn v0.20.2",
  5092. "link": "https://github.com/lutzroeder/netron/issues/182"
  5093. },
  5094. {
  5095. "type": "sklearn",
  5096. "target": "binarizer.pkl",
  5097. "source": "https://github.com/lutzroeder/netron/files/2587902/binarizer.zip[binarizer.pkl]",
  5098. "format": "scikit-learn v0.19.1",
  5099. "link": "https://github.com/lutzroeder/netron/issues/182"
  5100. },
  5101. {
  5102. "type": "sklearn",
  5103. "target": "binarizer.joblib",
  5104. "source": "https://github.com/lutzroeder/netron/files/2587902/binarizer.zip[binarizer.joblib]",
  5105. "format": "scikit-learn v0.19.1",
  5106. "link": "https://github.com/lutzroeder/netron/issues/182"
  5107. },
  5108. {
  5109. "type": "sklearn",
  5110. "target": "celeb-classifier.nn4.small2.v1.pkl.zip",
  5111. "source": "https://github.com/lutzroeder/netron/files/6176216/celeb-classifier.nn4.small2.v1.pkl.zip",
  5112. "format": "scikit-learn",
  5113. "link": "https://github.com/lutzroeder/netron/issues/182"
  5114. },
  5115. {
  5116. "type": "sklearn",
  5117. "target": "column_pipeline.pkl",
  5118. "source": "https://github.com/lutzroeder/netron/files/4672437/column_pipeline.zip[column_pipeline.pkl]",
  5119. "format": "scikit-learn v0.22.1",
  5120. "link": "https://github.com/lutzroeder/netron/issues/498"
  5121. },
  5122. {
  5123. "type": "sklearn",
  5124. "target": "column_transformer_pipeline.pkl",
  5125. "source": "https://github.com/lutzroeder/netron/files/4672438/column_transformer_pipeline.zip[column_transformer_pipeline.pkl]",
  5126. "format": "scikit-learn v0.22.1",
  5127. "link": "https://github.com/lutzroeder/netron/issues/498"
  5128. },
  5129. {
  5130. "type": "sklearn",
  5131. "target": "encoder.pkl",
  5132. "source": "https://github.com/lutzroeder/netron/files/8506805/encoder.pkl.zip[encoder.pkl]",
  5133. "format": "scikit-learn v0.22.2.post1",
  5134. "link": "https://github.com/lutzroeder/netron/issues/182"
  5135. },
  5136. {
  5137. "type": "sklearn",
  5138. "target": "forest_iris_ExtraTreesClassifier.pkl",
  5139. "source": "https://github.com/lutzroeder/netron/files/2592356/forest_iris_models.zip[forest_iris_ExtraTreesClassifier.pkl]",
  5140. "format": "scikit-learn v0.19.2",
  5141. "link": "https://github.com/lutzroeder/netron/issues/182"
  5142. },
  5143. {
  5144. "type": "sklearn",
  5145. "target": "forest_iris_RandomForestClassifier.pkl",
  5146. "source": "https://github.com/lutzroeder/netron/files/2592356/forest_iris_models.zip[forest_iris_RandomForestClassifier.pkl]",
  5147. "format": "scikit-learn v0.19.2",
  5148. "link": "https://github.com/lutzroeder/netron/issues/182"
  5149. },
  5150. {
  5151. "type": "sklearn",
  5152. "target": "forest_iris_AdaBoostClassifier.pkl",
  5153. "source": "https://github.com/lutzroeder/netron/files/2592356/forest_iris_models.zip[forest_iris_AdaBoostClassifier.pkl]",
  5154. "format": "scikit-learn v0.19.2",
  5155. "link": "https://github.com/lutzroeder/netron/issues/182"
  5156. },
  5157. {
  5158. "type": "sklearn",
  5159. "target": "forest_iris_DecisionTreeClassifier.pkl",
  5160. "source": "https://github.com/lutzroeder/netron/files/2592356/forest_iris_models.zip[forest_iris_DecisionTreeClassifier.pkl]",
  5161. "format": "scikit-learn v0.19.2",
  5162. "link": "https://github.com/lutzroeder/netron/issues/182"
  5163. },
  5164. {
  5165. "type": "sklearn",
  5166. "target": "hmm.pkl",
  5167. "source": "https://github.com/lutzroeder/netron/files/9035366/hmm.pkl.zip[hmm.pkl]",
  5168. "format": "hmmlearn",
  5169. "link": "https://github.com/lutzroeder/netron/issues/182"
  5170. },
  5171. {
  5172. "type": "sklearn",
  5173. "target": "iris_svc.joblib.z",
  5174. "source": "https://github.com/lutzroeder/netron/files/5728549/iris_svc.joblib.z.zip[iris_svc.joblib.z]",
  5175. "format": "scikit-learn v0.24.0rc1",
  5176. "link": "https://github.com/lutzroeder/netron/issues/182"
  5177. },
  5178. {
  5179. "type": "sklearn",
  5180. "target": "LDA_model.pkl",
  5181. "source": "https://raw.githubusercontent.com/rainer85ah/DCS/master/Output/LDA_model.pkl",
  5182. "format": "scikit-learn",
  5183. "link": "https://github.com/rainer85ah/DCS"
  5184. },
  5185. {
  5186. "type": "sklearn",
  5187. "target": "phoenix_ml_classifier.pkl",
  5188. "source": "https://raw.githubusercontent.com/imeraj/Phoenix_Playground/master/1.4/phoenix_ml/lib/phoenix_ml/model/classifier.pkl",
  5189. "format": "scikit-learn v0.19.1",
  5190. "link": "https://github.com/imeraj/Phoenix_Playground/tree/master/1.4/phoenix_ml/lib/phoenix_ml/model"
  5191. },
  5192. {
  5193. "type": "sklearn",
  5194. "target": "pima.xgboost.joblib.pkl",
  5195. "source": "https://github.com/lutzroeder/netron/files/2656501/pima.xgboost.joblib.pkl.zip[pima.xgboost.joblib.pkl]",
  5196. "format": "scikit-learn",
  5197. "link": "https://github.com/lutzroeder/netron/issues/182"
  5198. },
  5199. {
  5200. "type": "sklearn",
  5201. "target": "svc.joblib.pkl",
  5202. "source": "https://github.com/lutzroeder/netron/files/2592359/svc.zip[svc.joblib.pkl]",
  5203. "format": "scikit-learn v0.19.1",
  5204. "link": "https://github.com/lutzroeder/netron/issues/182"
  5205. },
  5206. {
  5207. "type": "sklearn",
  5208. "target": "svc.pkl",
  5209. "source": "https://github.com/lutzroeder/netron/files/2592359/svc.zip[svc.pkl]",
  5210. "format": "scikit-learn v0.19.1",
  5211. "link": "https://github.com/lutzroeder/netron/issues/182"
  5212. },
  5213. {
  5214. "type": "sklearn",
  5215. "target": "svm.pkl",
  5216. "source": "https://raw.githubusercontent.com/dfridovi/imagelib/master/svm.pkl",
  5217. "format": "scikit-learn",
  5218. "link": "https://github.com/dfridovi/imagelib/blob/master/svm.pkl"
  5219. },
  5220. {
  5221. "type": "sklearn",
  5222. "target": "tree.pkl",
  5223. "source": "https://github.com/wjqkkky/TTS-front-end/raw/56e09ef79bb6679e51a7c8ff3d302ccd917c0992/ChineseRhythmPredictor/tree.pkl",
  5224. "error": "Invalid string length",
  5225. "format": "scikit-learn v0.21.3",
  5226. "link": "https://github.com/wjqkkky/TTS-front-end"
  5227. },
  5228. {
  5229. "type": "sklearn",
  5230. "target": "wiki-aa-mlp.pkl",
  5231. "source": "https://github.com/lutzroeder/netron/files/2674319/wiki-aa-mlp.pkl.zip[wiki-aa-mlp.pkl]",
  5232. "format": "scikit-learn v0.19.0",
  5233. "link": "https://github.com/lutzroeder/netron/issues/182"
  5234. },
  5235. {
  5236. "type": "tengine",
  5237. "target": "detect_tflite.tmfile",
  5238. "source": "https://raw.githubusercontent.com/pierricklee/tmfile-sample/master/detect_tflite.tmfile",
  5239. "format": "Tengine v2.0",
  5240. "link": "https://github.com/pierricklee/tmfile-sample"
  5241. },
  5242. {
  5243. "type": "tengine",
  5244. "target": "detect_tflite_issue_466.tmfile",
  5245. "source": "https://github.com/lutzroeder/netron/files/4479142/detect_tflite_issue_466.zip[detect_tflite_issue_466.tmfile]",
  5246. "format": "Tengine v2.0",
  5247. "link": "https://github.com/lutzroeder/netron/issues/466"
  5248. },
  5249. {
  5250. "type": "tengine",
  5251. "target": "lighten_cnn.tmfile",
  5252. "source": "https://raw.githubusercontent.com/pierricklee/tmfile-sample/master/lighten_cnn.tmfile",
  5253. "format": "Tengine v2.0",
  5254. "link": "https://github.com/pierricklee/tmfile-sample"
  5255. },
  5256. {
  5257. "type": "tengine",
  5258. "target": "mobilenet.tmfile",
  5259. "source": "https://raw.githubusercontent.com/pierricklee/tmfile-sample/master/mobilenet.tmfile",
  5260. "format": "Tengine v2.0",
  5261. "link": "https://github.com/pierricklee/tmfile-sample"
  5262. },
  5263. {
  5264. "type": "tengine",
  5265. "target": "mobilenet_quant_tflite.tmfile",
  5266. "source": "https://raw.githubusercontent.com/pierricklee/tmfile-sample/master/mobilenet_quant_tflite.tmfile",
  5267. "format": "Tengine v2.0",
  5268. "link": "https://github.com/pierricklee/tmfile-sample"
  5269. },
  5270. {
  5271. "type": "tengine",
  5272. "target": "mobolenet_ssd_v1_quant_tflite.tmfile",
  5273. "source": "https://raw.githubusercontent.com/pierricklee/tmfile-sample/master/mobolenet_ssd_v1_quant_tflite.tmfile",
  5274. "format": "Tengine v2.0",
  5275. "link": "https://github.com/pierricklee/tmfile-sample"
  5276. },
  5277. {
  5278. "type": "tengine",
  5279. "target": "mobilenet_v1_tf.tmfile",
  5280. "source": "https://raw.githubusercontent.com/pierricklee/tmfile-sample/master/mobilenet_v1_tf.tmfile",
  5281. "format": "Tengine v2.0",
  5282. "link": "https://github.com/pierricklee/tmfile-sample"
  5283. },
  5284. {
  5285. "type": "tengine",
  5286. "target": "mobilenet_v2.tmfile",
  5287. "source": "https://raw.githubusercontent.com/pierricklee/tmfile-sample/master/mobilenet_v2.tmfile",
  5288. "format": "Tengine v2.0",
  5289. "link": "https://github.com/pierricklee/tmfile-sample"
  5290. },
  5291. {
  5292. "type": "tengine",
  5293. "target": "mobilenet_v2_tf.tmfile",
  5294. "source": "https://raw.githubusercontent.com/pierricklee/tmfile-sample/master/mobilenet_v2_tf.tmfile",
  5295. "format": "Tengine v2.0",
  5296. "link": "https://github.com/pierricklee/tmfile-sample"
  5297. },
  5298. {
  5299. "type": "tengine",
  5300. "target": "nasnet_tf.tmfile",
  5301. "source": "https://raw.githubusercontent.com/pierricklee/tmfile-sample/master/nasnet_tf.tmfile",
  5302. "format": "Tengine v2.0",
  5303. "link": "https://github.com/pierricklee/tmfile-sample"
  5304. },
  5305. {
  5306. "type": "tengine",
  5307. "target": "retinaface_benchmark.tmfile",
  5308. "source": "https://raw.githubusercontent.com/OAID/Tengine/master/models/retinaface_benchmark.tmfile",
  5309. "format": "Tengine v2.0",
  5310. "link": "https://github.com/OAID/Tengine"
  5311. },
  5312. {
  5313. "type": "tengine",
  5314. "target": "squeezenet.tmfile",
  5315. "source": "https://raw.githubusercontent.com/pierricklee/tmfile-sample/master/squeezenet.tmfile",
  5316. "format": "Tengine v2.0",
  5317. "link": "https://github.com/pierricklee/tmfile-sample"
  5318. },
  5319. {
  5320. "type": "tengine",
  5321. "target": "squeezenet_on.tmfile",
  5322. "source": "https://raw.githubusercontent.com/pierricklee/tmfile-sample/master/squeezenet_on.tmfile",
  5323. "format": "Tengine v2.0",
  5324. "link": "https://github.com/pierricklee/tmfile-sample"
  5325. },
  5326. {
  5327. "type": "tengine",
  5328. "target": "test_multi_input_output.tmfile",
  5329. "source": "https://github.com/lutzroeder/netron/files/5248932/test_multi_input_output.zip[test_multi_input_output.tmfile]",
  5330. "format": "Tengine v2.0",
  5331. "link": "https://github.com/lutzroeder/netron/issues/440"
  5332. },
  5333. {
  5334. "type": "tf",
  5335. "target": "bert_uncased_L-12_H-768_A-12.meta",
  5336. "source": "https://storage.googleapis.com/bert_models/2018_10_18/uncased_L-12_H-768_A-12.zip[uncased_L-12_H-768_A-12/bert_model.ckpt.meta]",
  5337. "format": "TensorFlow MetaGraph",
  5338. "producer": "TensorFlow v1.11.0-rc1",
  5339. "action": "skip-render",
  5340. "link": "https://github.com/google-research/bert#pre-trained-models"
  5341. },
  5342. {
  5343. "type": "tf",
  5344. "target": "bert_cased_L-24_H-1024_A-16.meta",
  5345. "source": "https://storage.googleapis.com/bert_models/2018_10_18/cased_L-24_H-1024_A-16.zip[cased_L-24_H-1024_A-16/bert_model.ckpt.meta]",
  5346. "format": "TensorFlow MetaGraph",
  5347. "action": "skip-render",
  5348. "link": "https://github.com/google-research/bert#pre-trained-models"
  5349. },
  5350. {
  5351. "type": "tf",
  5352. "target": "char-rnn-tensorflow.pb",
  5353. "source": "https://github.com/lutzroeder/netron/files/2592462/char-rnn-tensorflow.pb.zip[char-rnn-tensorflow.pb]",
  5354. "format": "TensorFlow Graph",
  5355. "action": "skip-render",
  5356. "link": "https://github.com/lutzroeder/netron/issues/187"
  5357. },
  5358. {
  5359. "type": "tf",
  5360. "target": "chessbot.pb",
  5361. "source": "https://raw.githubusercontent.com/srom/chessbot/master/model/chessbot.pb",
  5362. "format": "TensorFlow Graph",
  5363. "link": "https://github.com/srom/chessbot"
  5364. },
  5365. {
  5366. "type": "tf",
  5367. "target": "chessbot_estimator.pb",
  5368. "source": "https://raw.githubusercontent.com/srom/chessbot/master/model/estimator.pb",
  5369. "format": "TensorFlow Graph",
  5370. "link": "https://github.com/srom/chessbot"
  5371. },
  5372. {
  5373. "type": "tf",
  5374. "target": "chessbot_classifier.pb",
  5375. "source": "https://raw.githubusercontent.com/srom/chessbot/master/model/classifier.pb",
  5376. "format": "TensorFlow Graph",
  5377. "link": "https://github.com/srom/chessbot"
  5378. },
  5379. {
  5380. "type": "tf",
  5381. "target": "classify_image_graph_def.pb",
  5382. "source": "https://raw.githubusercontent.com/taey16/tf/master/imagenet/classify_image_graph_def.pb",
  5383. "format": "TensorFlow Graph",
  5384. "link": "https://github.com/taey16/tf"
  5385. },
  5386. {
  5387. "type": "tf",
  5388. "target": "conv-layers.pb.zip",
  5389. "source": "https://github.com/lutzroeder/netron/files/2592468/conv-layers.pb.zip",
  5390. "format": "TensorFlow Graph",
  5391. "link": "https://github.com/lutzroeder/netron/issues/187"
  5392. },
  5393. {
  5394. "type": "tf",
  5395. "target": "densenet.pb",
  5396. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/model_zoo/upload_20180427/densenet_2018_04_27.tgz[densenet/densenet.pb]",
  5397. "format": "TensorFlow Graph",
  5398. "link": "https://github.com/tensorflow/tensorflow/blob/master/tensorflow/lite/g3doc/guide/hosted_models.md"
  5399. },
  5400. {
  5401. "type": "tf",
  5402. "target": "drawmodel_attn.ckpt",
  5403. "source": "https://github.com/lutzroeder/netron/files/8647412/drawmodel_attn.ckpt.zip[drawmodel_attn.ckpt]",
  5404. "format": "TensorFlow Tensor Bundle v1",
  5405. "link": "https://github.com/lutzroeder/netron/issues/405"
  5406. },
  5407. {
  5408. "type": "tf",
  5409. "target": "events.out.tfevents.1606692323.b5c8f88cc7ee.58.2",
  5410. "source": "https://github.com/lutzroeder/netron/files/5613448/events.out.tfevents.1606692323.b5c8f88cc7ee.58.2.zip[events.out.tfevents.1606692323.b5c8f88cc7ee.58.2]",
  5411. "format": "TensorFlow Event File v2",
  5412. "assert": [ "model.graphs[0].nodes[0].type.name=aten::_convolution" ],
  5413. "producer": "PyTorch",
  5414. "link": "https://github.com/lutzroeder/netron/issues/638"
  5415. },
  5416. {
  5417. "type": "tf",
  5418. "target": "events.out.tfevents.1606696207.eba7c8084653.55.0",
  5419. "source": "https://github.com/lutzroeder/netron/files/5613451/events.out.tfevents.1606696207.eba7c8084653.55.0.zip[events.out.tfevents.1606696207.eba7c8084653.55.0]",
  5420. "format": "TensorFlow Event File v2",
  5421. "producer": "PyTorch",
  5422. "link": "https://github.com/lutzroeder/netron/issues/638"
  5423. },
  5424. {
  5425. "type": "tf",
  5426. "target": "events.out.tfevents.1606704213.784cbcc2d49a.55.162.v2",
  5427. "source": "https://github.com/lutzroeder/netron/files/5613605/events.out.tfevents.1606704213.784cbcc2d49a.55.162.v2.zip[events.out.tfevents.1606704213.784cbcc2d49a.55.162.v2]",
  5428. "format": "TensorFlow Event File v2",
  5429. "link": "https://github.com/lutzroeder/netron/issues/638"
  5430. },
  5431. {
  5432. "type": "tf",
  5433. "target": "events.out.tfevents.1617485839.39aaee5846c1.58.0",
  5434. "source": "https://github.com/lutzroeder/netron/files/6261502/events.out.tfevents.1617485839.39aaee5846c1.58.0.zip[events.out.tfevents.1617485839.39aaee5846c1.58.0]",
  5435. "format": "TensorFlow Event File v2",
  5436. "producer": "PyTorch",
  5437. "link": "https://github.com/lutzroeder/netron/issues/638"
  5438. },
  5439. {
  5440. "type": "tf",
  5441. "target": "exDeepFM-criteo.meta",
  5442. "source": "https://raw.githubusercontent.com/Leavingseason/xDeepFM/master/exdeepfm/checkpoint/epoch_0.meta",
  5443. "format": "TensorFlow MetaGraph",
  5444. "action": "skip-render",
  5445. "link": "https://github.com/Leavingseason/xDeepFM"
  5446. },
  5447. {
  5448. "type": "tf",
  5449. "target": "faster_rcnn_inception_resnet_v2_atrous_oid_2018_01_28.ckpt.meta",
  5450. "source": "http://download.tensorflow.org/models/object_detection/faster_rcnn_inception_resnet_v2_atrous_oid_2018_01_28.tar.gz[faster_rcnn_inception_resnet_v2_atrous_oid_2018_01_28/model.ckpt.meta]",
  5451. "format": "TensorFlow MetaGraph",
  5452. "action": "skip-render",
  5453. "link": "https://github.com/GoogleCloudPlatform/tensorflow-object-detection-example"
  5454. },
  5455. {
  5456. "type": "tf",
  5457. "target": "faster_rcnn_resnet50_lowproposals_coco_2017_11_08.ckpt.meta",
  5458. "source": "http://download.tensorflow.org/models/object_detection/faster_rcnn_resnet50_lowproposals_coco_2017_11_08.tar.gz[faster_rcnn_resnet50_lowproposals_coco_2017_11_08/model.ckpt.meta]",
  5459. "action": "skip-render",
  5460. "format": "TensorFlow MetaGraph"
  5461. },
  5462. {
  5463. "type": "tf",
  5464. "target": "float16.txt",
  5465. "source": "https://github.com/lutzroeder/netron/files/8547644/float16.txt.zip[float16.txt]",
  5466. "format": "TensorFlow Graph",
  5467. "link": "https://github.com/lutzroeder/netron/issues/187"
  5468. },
  5469. {
  5470. "type": "tf",
  5471. "target": "graph_missing_function.pbtxt",
  5472. "source": "https://github.com/lutzroeder/netron/files/7464813/graph_missing_function.pbtxt.zip[graph_missing_function.pbtxt]",
  5473. "format": "TensorFlow Graph",
  5474. "link": "https://github.com/lutzroeder/netron/issues/838"
  5475. },
  5476. {
  5477. "type": "tf",
  5478. "target": "graphdef_saved_model.pb",
  5479. "source": "https://github.com/lutzroeder/netron/files/2528688/saved_model.zip[saved_model.pb]",
  5480. "format": "TensorFlow Graph",
  5481. "link": "https://github.com/lutzroeder/netron/issues/171"
  5482. },
  5483. {
  5484. "type": "tf",
  5485. "target": "gpt-2-124M.ckpt.meta",
  5486. "source": "https://github.com/lutzroeder/netron/files/7775216/gpt-2-124M.ckpt.meta.zip[gpt-2-124M.ckpt.meta]",
  5487. "format": "TensorFlow MetaGraph",
  5488. "link": "https://github.com/lutzroeder/netron/issues/187"
  5489. },
  5490. {
  5491. "type": "tf",
  5492. "target": "half_plus_two_saved_model.pb",
  5493. "source": "https://raw.githubusercontent.com/tensorflow/tensorflow/master/tensorflow/cc/saved_model/testdata/half_plus_two/00000123/saved_model.pb",
  5494. "format": "TensorFlow Saved Model v1",
  5495. "link": "https://github.com/tensorflow/tensorflow/tree/master/tensorflow/cc/saved_model/testdata"
  5496. },
  5497. {
  5498. "type": "tf",
  5499. "target": "half_plus_two_main_op_saved_model.pb",
  5500. "source": "https://raw.githubusercontent.com/tensorflow/tensorflow/master/tensorflow/cc/saved_model/testdata/half_plus_two_main_op/00000123/saved_model.pb",
  5501. "format": "TensorFlow Saved Model v1",
  5502. "link": "https://github.com/tensorflow/tensorflow/tree/master/tensorflow/cc/saved_model/testdata"
  5503. },
  5504. {
  5505. "type": "tf",
  5506. "target": "half_plus_two_pbtxt_saved_model.pbtxt",
  5507. "source": "https://raw.githubusercontent.com/tensorflow/tensorflow/master/tensorflow/cc/saved_model/testdata/half_plus_two_pbtxt/00000123/saved_model.pbtxt",
  5508. "format": "TensorFlow Saved Model v1",
  5509. "link": "https://github.com/tensorflow/tensorflow/tree/master/tensorflow/cc/saved_model/testdata"
  5510. },
  5511. {
  5512. "type": "tf",
  5513. "target": "inception_v2_2016_08_28_frozen.pb",
  5514. "source": "https://storage.googleapis.com/download.tensorflow.org/models/inception_v2_2016_08_28_frozen.pb.tar.gz[inception_v2_2016_08_28_frozen.pb]",
  5515. "format": "TensorFlow Graph",
  5516. "link": "https://github.com/onnx/tensorflow-onnx/blob/master/tests/run_pretrained_models.yaml"
  5517. },
  5518. {
  5519. "type": "tf",
  5520. "target": "inception5h.pb",
  5521. "source": "https://storage.googleapis.com/download.tensorflow.org/models/inception5h.zip[tensorflow_inception_graph.pb]"
  5522. },
  5523. {
  5524. "type": "tf",
  5525. "target": "invalid_graph.pbtxt",
  5526. "source": "https://github.com/lutzroeder/netron/files/6859459/invalid_graph.pbtxt.zip[invalid_graph.pbtxt]",
  5527. "error": "File text format is not tensorflow.GraphDef (Unexpected end of input at 8:1) in 'invalid_graph.pbtxt'."
  5528. },
  5529. {
  5530. "type": "tf",
  5531. "target": "mask_rcnn_resnet50_atrous_coco_2018_01_28.ckpt.meta",
  5532. "source": "http://download.tensorflow.org/models/object_detection/mask_rcnn_resnet50_atrous_coco_2018_01_28.tar.gz[mask_rcnn_resnet50_atrous_coco_2018_01_28/model.ckpt.meta]",
  5533. "format": "TensorFlow MetaGraph",
  5534. "action": "skip-render"
  5535. },
  5536. {
  5537. "type": "tf",
  5538. "target": "mnist_model.pbtxt",
  5539. "source": "https://raw.githubusercontent.com/ShauralP/MobileML/master/SimpleMNIST/mnist_model.pbtxt",
  5540. "format": "TensorFlow Graph",
  5541. "link": "https://github.com/ShauralP/MobileML"
  5542. },
  5543. {
  5544. "type": "tf",
  5545. "target": "mobilenet_v1_1.0_224_frozen.pb",
  5546. "source": "http://download.tensorflow.org/models/mobilenet_v1_2018_08_02/mobilenet_v1_1.0_224.tgz[./mobilenet_v1_1.0_224_frozen.pb]",
  5547. "format": "TensorFlow Graph"
  5548. },
  5549. {
  5550. "type": "tf",
  5551. "target": "mobilenet_v1_1.0_224_eval.pbtxt",
  5552. "source": "http://download.tensorflow.org/models/mobilenet_v1_2018_08_02/mobilenet_v1_1.0_224.tgz[./mobilenet_v1_1.0_224_eval.pbtxt]",
  5553. "format": "TensorFlow Graph"
  5554. },
  5555. {
  5556. "type": "tf",
  5557. "target": "mobilenet_v1_1.0_224_quant_eval.pbtxt",
  5558. "source": "http://download.tensorflow.org/models/mobilenet_v1_2018_08_02/mobilenet_v1_1.0_224_quant.tgz[./mobilenet_v1_1.0_224_quant_eval.pbtxt]",
  5559. "format": "TensorFlow Graph",
  5560. "link": "https://github.com/tensorflow/models/blob/master/research/slim/nets/mobilenet_v1.md"
  5561. },
  5562. {
  5563. "type": "tf",
  5564. "target": "mobilenet_v1_1.0_224_quant_frozen.pb",
  5565. "source": "http://download.tensorflow.org/models/mobilenet_v1_2018_08_02/mobilenet_v1_1.0_224_quant.tgz[./mobilenet_v1_1.0_224_quant_frozen.pb]",
  5566. "format": "TensorFlow Graph",
  5567. "link": "https://github.com/tensorflow/models/blob/master/research/slim/nets/mobilenet_v1.md"
  5568. },
  5569. {
  5570. "type": "tf",
  5571. "target": "mobilenet_v1_1.0_224_quant.ckpt.meta",
  5572. "source": "http://download.tensorflow.org/models/mobilenet_v1_2018_08_02/mobilenet_v1_1.0_224_quant.tgz[./mobilenet_v1_1.0_224_quant.ckpt.meta]",
  5573. "format": "TensorFlow MetaGraph",
  5574. "action": "skip-render",
  5575. "link": "https://github.com/tensorflow/models/blob/master/research/slim/nets/mobilenet_v1.md"
  5576. },
  5577. {
  5578. "type": "tf",
  5579. "target": "mobilenet_v2_1.4_224_frozen.pb",
  5580. "source": "https://storage.googleapis.com/mobilenet_v2/checkpoints/mobilenet_v2_1.4_224.tgz[./mobilenet_v2_1.4_224_frozen.pb]",
  5581. "format": "TensorFlow Graph",
  5582. "link": "https://www.tensorflow.org/lite/models"
  5583. },
  5584. {
  5585. "type": "tf",
  5586. "target": "mobilenet_v2_1.4_224.ckpt.meta",
  5587. "source": "https://storage.googleapis.com/mobilenet_v2/checkpoints/mobilenet_v2_1.4_224.tgz[./mobilenet_v2_1.4_224.ckpt.meta]",
  5588. "format": "TensorFlow MetaGraph",
  5589. "action": "skip-render",
  5590. "link": "https://www.tensorflow.org/lite/models"
  5591. },
  5592. {
  5593. "type": "tf",
  5594. "target": "mobilenet_v2_1.4_224_eval.pbtxt",
  5595. "source": "https://storage.googleapis.com/mobilenet_v2/checkpoints/mobilenet_v2_1.4_224.tgz[./mobilenet_v2_1.4_224_eval.pbtxt]",
  5596. "format": "TensorFlow Graph",
  5597. "link": "https://www.tensorflow.org/lite/models"
  5598. },
  5599. {
  5600. "type": "tf",
  5601. "target": "mnasnet_0.5_224.pb",
  5602. "source": "http://download.tensorflow.org/models/tflite/mnasnet_0.5_224_09_07_2018.tgz[mnasnet_0.5_224/mnasnet_0.5_224.pb]",
  5603. "format": "TensorFlow Graph",
  5604. "link": "https://www.tensorflow.org/lite/models"
  5605. },
  5606. {
  5607. "type": "tf",
  5608. "target": "mnasnet_1.3_224.pb",
  5609. "source": "http://download.tensorflow.org/models/tflite/mnasnet_1.3_224_09_07_2018.tgz[mnasnet_1.3_224/mnasnet_1.3_224.pb]",
  5610. "format": "TensorFlow Graph",
  5611. "link": "https://www.tensorflow.org/lite/models"
  5612. },
  5613. {
  5614. "type": "tf",
  5615. "target": "nasnet_mobile.pb",
  5616. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/model_zoo/upload_20180427/nasnet_mobile_2018_04_27.tgz[./nasnet_mobile.pb]",
  5617. "format": "TensorFlow Graph",
  5618. "link": "https://www.tensorflow.org/lite/models"
  5619. },
  5620. {
  5621. "type": "tf",
  5622. "target": "netron_issue_110.pb",
  5623. "source": "https://github.com/lutzroeder/netron/files/2592457/netron_issue_110.pb.zip[netron_issue_110.pb]",
  5624. "format": "TensorFlow Graph",
  5625. "link": "https://github.com/lutzroeder/netron/issues/110"
  5626. },
  5627. {
  5628. "type": "tf",
  5629. "target": "netron_issue_224.pbtxt",
  5630. "source": "https://github.com/lutzroeder/netron/files/2823959/netron_issue_224.zip[netron_issue_224.pbtxt]",
  5631. "format": "TensorFlow Graph",
  5632. "link": "https://github.com/lutzroeder/netron/issues/224"
  5633. },
  5634. {
  5635. "type": "tf",
  5636. "target": "netron_issue_291.pbtxt",
  5637. "source": "https://github.com/lutzroeder/netron/files/3336368/netron_issue_291.zip[netron_issue_291.pbtxt]",
  5638. "format": "TensorFlow Graph",
  5639. "link": "https://github.com/lutzroeder/netron/issues/291"
  5640. },
  5641. {
  5642. "type": "tf",
  5643. "target": "netron_issue_320.pb",
  5644. "source": "https://github.com/lutzroeder/netron/files/3499707/netron_issue_320.zip[netron_issue_320.pb]",
  5645. "format": "TensorFlow Graph",
  5646. "link": "https://github.com/lutzroeder/netron/issues/320"
  5647. },
  5648. {
  5649. "type": "tf",
  5650. "target": "netron_issue_320.pbtxt",
  5651. "source": "https://github.com/lutzroeder/netron/files/3499707/netron_issue_320.zip[netron_issue_320.pbtxt]",
  5652. "format": "TensorFlow Graph",
  5653. "link": "https://github.com/lutzroeder/netron/issues/320"
  5654. },
  5655. {
  5656. "type": "tf",
  5657. "target": "netron_issue_323.pbtxt",
  5658. "source": "https://github.com/lutzroeder/netron/files/3539403/graph.zip[graph.pbtxt]",
  5659. "action": "skip-render",
  5660. "format": "TensorFlow Graph",
  5661. "link": "https://github.com/lutzroeder/netron/issues/323"
  5662. },
  5663. {
  5664. "type": "tf",
  5665. "target": "netron_issue_342.zip",
  5666. "source": "https://github.com/lutzroeder/netron/files/3918584/netron_issue_342.zip",
  5667. "format": "TensorFlow Saved Model v1",
  5668. "link": "https://github.com/lutzroeder/netron/issues/342"
  5669. },
  5670. {
  5671. "type": "tf",
  5672. "target": "netron_issue_405.zip",
  5673. "source": "https://github.com/lutzroeder/netron/files/4017943/netron_issue_405.zip",
  5674. "format": "TensorFlow Tensor Bundle v2",
  5675. "link": "https://github.com/lutzroeder/netron/issues/405"
  5676. },
  5677. {
  5678. "type": "tf",
  5679. "target": "netron_issue_847.pbtxt",
  5680. "source": "https://github.com/lutzroeder/netron/files/7642864/netron_issue_847.pbtxt.zip[netron_issue_847.pbtxt]",
  5681. "format": "TensorFlow Graph",
  5682. "link": "https://github.com/lutzroeder/netron/issues/847"
  5683. },
  5684. {
  5685. "type": "tf",
  5686. "target": "netron_issue_895.pbtxt",
  5687. "source": "https://github.com/lutzroeder/netron/files/8459475/netron_issue_895.pbtxt.zip[netron_issue_895.pbtxt]",
  5688. "format": "TensorFlow Graph",
  5689. "link": "https://github.com/lutzroeder/netron/issues/895"
  5690. },
  5691. {
  5692. "type": "tf",
  5693. "target": "output_graph.pbmm",
  5694. "source": "https://github.com/lutzroeder/netron/files/8645971/output_graph.pbmm.zip[output_graph.pbmm]",
  5695. "format": "TensorFlow GraphDef Memmapped",
  5696. "link": "https://github.com/lutzroeder/netron/issues/836"
  5697. },
  5698. {
  5699. "type": "tf",
  5700. "target": "pose_estimation_for_mobile.pb",
  5701. "source": "https://raw.githubusercontent.com/edvardHua/PoseEstimationForMobile/master/release/cpm_model/model.pb",
  5702. "format": "TensorFlow Graph",
  5703. "link": "https://github.com/edvardHua/PoseEstimationForMobile"
  5704. },
  5705. {
  5706. "type": "tf",
  5707. "target": "readable_graph.meta",
  5708. "source": "https://github.com/lutzroeder/netron/files/2592463/readable_graph.meta.zip[readable_graph.meta]",
  5709. "format": "TensorFlow MetaGraph",
  5710. "link": "https://github.com/lutzroeder/netron/issues/187"
  5711. },
  5712. {
  5713. "type": "tf",
  5714. "target": "resnet_v2_fp16_savedmodel_NHWC_saved_model.pb",
  5715. "source": "http://download.tensorflow.org/models/official/20181001_resnet/savedmodels/resnet_v2_fp16_savedmodel_NHWC.tar.gz[./resnet_v2_fp16_savedmodel_NHWC/1538686978/saved_model.pb]",
  5716. "format": "TensorFlow Saved Model v1",
  5717. "action": "skip-render",
  5718. "link": "https://github.com/onnx/tensorflow-onnx/blob/master/tests/run_pretrained_models.yaml"
  5719. },
  5720. {
  5721. "type": "tf",
  5722. "target": "resnet18_model_baseline.pbtxt",
  5723. "source": "https://github.com/lutzroeder/netron/files/2913372/resnet18_model_baseline.pbtxt.zip[resnet18_model_baseline.pbtxt]",
  5724. "format": "TensorFlow Graph",
  5725. "action": "skip-render",
  5726. "link": "https://github.com/lutzroeder/netron/issues/235"
  5727. },
  5728. {
  5729. "type": "tf",
  5730. "target": "saved_model_xxx.pb",
  5731. "source": "https://github.com/lutzroeder/netron/files/6965264/saved_model_xxx.pb.zip[saved_model_xxx.pb]",
  5732. "format": "TensorFlow Saved Model v1",
  5733. "link": "https://github.com/lutzroeder/netron/issues/782"
  5734. },
  5735. {
  5736. "type": "tf",
  5737. "target": "speech_commands_v0.pb",
  5738. "source": "http://storage.googleapis.com/download.tensorflow.org/models/speech_commands_v0.01.zip[conv_actions_frozen.pb]",
  5739. "format": "TensorFlow Graph"
  5740. },
  5741. {
  5742. "type": "tf",
  5743. "target": "squeezenet.pb",
  5744. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/model_zoo/upload_20180427/squeezenet_2018_04_27.tgz[./squeezenet.pb]"
  5745. },
  5746. {
  5747. "type": "tf",
  5748. "target": "ssd_mobilenet_v1_android_export.pb",
  5749. "source": "https://storage.googleapis.com/download.tensorflow.org/models/object_detection/ssd_mobilenet_v1_android_export.zip[ssd_mobilenet_v1_android_export.pb]",
  5750. "format": "TensorFlow Graph",
  5751. "action": "skip-render",
  5752. "link": "https://www.tensorflow.org/lite/models"
  5753. },
  5754. {
  5755. "type": "tf",
  5756. "target": "ssd_mobilenet_v1_coco_11_06_2017_graph.pbtxt",
  5757. "source": "http://download.tensorflow.org/models/object_detection/ssd_mobilenet_v1_coco_11_06_2017.tar.gz[ssd_mobilenet_v1_coco_11_06_2017/graph.pbtxt]",
  5758. "format": "TensorFlow Graph",
  5759. "action": "skip-render",
  5760. "link": "https://github.com/GoogleCloudPlatform/tensorflow-object-detection-example"
  5761. },
  5762. {
  5763. "type": "tf",
  5764. "target": "ssd_mobilenet_v1_coco_11_06_2017_frozen_inference.pb",
  5765. "source": "http://download.tensorflow.org/models/object_detection/ssd_mobilenet_v1_coco_11_06_2017.tar.gz[ssd_mobilenet_v1_coco_11_06_2017/frozen_inference_graph.pb]",
  5766. "format": "TensorFlow Graph",
  5767. "link": "https://github.com/GoogleCloudPlatform/tensorflow-object-detection-example"
  5768. },
  5769. {
  5770. "type": "tf",
  5771. "target": "ssd_mobilenet_v1_coco_11_06_2017.ckpt.meta",
  5772. "source": "http://download.tensorflow.org/models/object_detection/ssd_mobilenet_v1_coco_11_06_2017.tar.gz[ssd_mobilenet_v1_coco_11_06_2017/model.ckpt.meta]",
  5773. "format": "TensorFlow MetaGraph",
  5774. "action": "skip-render",
  5775. "link": "https://github.com/GoogleCloudPlatform/tensorflow-object-detection-example"
  5776. },
  5777. {
  5778. "type": "tf",
  5779. "target": "tensorflow_issue_9169_saved_model.pbtxt",
  5780. "source": "https://github.com/tensorflow/tensorflow/files/917065/sample.zip[sample/load/saved_model.pbtxt]",
  5781. "format": "TensorFlow Saved Model v1",
  5782. "link": "https://github.com/tensorflow/tensorflow/issues/9169"
  5783. },
  5784. {
  5785. "type": "tfjs",
  5786. "target": "air-time-model/air-time-model.json",
  5787. "source": "https://github.com/lutzroeder/netron/files/3170424/air-time-model.json.zip[air-time-model.json]",
  5788. "format": "TensorFlow.js layers-model",
  5789. "producer": "TensorFlow.js tfjs-layers v1.0.4",
  5790. "link": "https://github.com/lutzroeder/netron/issues/270"
  5791. },
  5792. {
  5793. "type": "tfjs",
  5794. "target": "age_gender_model/age_gender_model-weights_manifest.json,age_gender_model/age_gender_model-shard1",
  5795. "source": "https://raw.githubusercontent.com/justadudewhohacks/face-api.js-models/master/age_gender_model/age_gender_model-weights_manifest.json,https://raw.githubusercontent.com/justadudewhohacks/face-api.js-models/master/age_gender_model/age_gender_model-shard1",
  5796. "format": "TensorFlow.js Weights"
  5797. },
  5798. {
  5799. "type": "tfjs",
  5800. "target": "deeplab_ade20k_1_quantized_2_1.zip",
  5801. "source": "https://github.com/lutzroeder/netron/files/6766475/deeplab_ade20k_1_quantized_2_1.zip",
  5802. "format": "TensorFlow.js graph-model",
  5803. "link": "https://github.com/lutzroeder/netron/issues/294"
  5804. },
  5805. {
  5806. "type": "tfjs",
  5807. "target": "iamgeai2/metadata.json,iamgeai2/model.json,iamgeai2/weights.bin",
  5808. "source": "https://github.com/lutzroeder/netron/files/7800435/iamgeai2.zip[metadata.json,model.json,weights.bin] ",
  5809. "format": "TensorFlow.js Keras vtfjs-layers 1.3.1",
  5810. "link": "https://github.com/lutzroeder/netron/issues/294"
  5811. },
  5812. {
  5813. "type": "tfjs",
  5814. "target": "mnist_transfer_cnn_v1.zip",
  5815. "source": "https://github.com/lutzroeder/netron/files/3361048/mnist_transfer_cnn_v1.zip",
  5816. "format": "TensorFlow.js Keras v2.1.4",
  5817. "link": "https://github.com/tensorflow/tfjs-examples"
  5818. },
  5819. {
  5820. "type": "tfjs",
  5821. "target": "mobilenet_v1_0.25_224/model.json",
  5822. "source": "https://storage.googleapis.com/tfjs-models/tfjs/mobilenet_v1_0.25_224/model.json",
  5823. "format": "TensorFlow.js Keras v2.1.4",
  5824. "link": "https://github.com/tensorflow/tfjs-examples"
  5825. },
  5826. {
  5827. "type": "tfjs",
  5828. "target": "posenet_mobilenet_float_075.zip",
  5829. "source": "https://github.com/lutzroeder/netron/files/3357629/posenet_mobilenet_float_075.zip",
  5830. "format": "TensorFlow.js graph-model",
  5831. "link": "https://github.com/intel/webml-polyfill/issues/880"
  5832. },
  5833. {
  5834. "type": "tfjs",
  5835. "target": "posenet_mobilenet_float_075_1_default_1.zip",
  5836. "source": "https://github.com/lutzroeder/netron/files/7204409/posenet_mobilenet_float_075_1_default_1.zip",
  5837. "format": "TensorFlow.js graph-model",
  5838. "link": "https://github.com/lutzroeder/netron/issues/294"
  5839. },
  5840. {
  5841. "type": "tfjs",
  5842. "target": "sentiment_cnn_v1/model.json",
  5843. "source": "https://github.com/lutzroeder/netron/files/3361046/sentiment_cnn_v1.zip[model.json]",
  5844. "format": "TensorFlow.js Keras v2.1.4",
  5845. "link": "https://github.com/tensorflow/tfjs-examples"
  5846. },
  5847. {
  5848. "type": "tfjs",
  5849. "target": "ssd_mobilenet_v2_1_default_1.zip",
  5850. "source": "https://github.com/lutzroeder/netron/files/6605132/ssd_mobilenet_v2_1_default_1.zip",
  5851. "format": "TensorFlow.js graph-model",
  5852. "link": "https://github.com/lutzroeder/netron/issues/294"
  5853. },
  5854. {
  5855. "type": "tfjs",
  5856. "target": "translation_en_fr_v1/model.json",
  5857. "source": "https://storage.googleapis.com/tfjs-models/tfjs/translation_en_fr_v1/model.json",
  5858. "format": "TensorFlow.js Keras v2.1.4",
  5859. "link": "https://github.com/tensorflow/tfjs-examples"
  5860. },
  5861. {
  5862. "type": "tfjs",
  5863. "target": "test_concat_const_string_tfjs.zip",
  5864. "source": "https://github.com/lutzroeder/netron/files/7207228/test_concat_const_string_tfjs.zip",
  5865. "format": "TensorFlow.js graph-model",
  5866. "link": "https://github.com/lutzroeder/netron/issues/294"
  5867. },
  5868. {
  5869. "type": "tfjs",
  5870. "target": "yamnet.tar",
  5871. "source": "https://tfhub.dev/google/tfjs-model/yamnet/tfjs/1?tfjs-format=compressed",
  5872. "format": "TensorFlow.js graph-model",
  5873. "link": "https://tfhub.dev/google/tfjs-model/yamnet/tfjs/1"
  5874. },
  5875. {
  5876. "type": "tfjs",
  5877. "target": "yolo3_tiny_darknet.zip",
  5878. "source": "https://github.com/lutzroeder/netron/files/7150178/yolo3_tiny_darknet.zip",
  5879. "format": "TensorFlow.js graph-model",
  5880. "link": "https://github.com/lutzroeder/netron/issues/764"
  5881. },
  5882. {
  5883. "type": "tflite",
  5884. "target": "deeplab_mobilenetv2_513.tflite",
  5885. "source": "https://raw.githubusercontent.com/pinzhenx/webml-demo/master/examples/deeplab/model/deeplab_mobilenetv2_513.tflite",
  5886. "format": "TensorFlow Lite v3",
  5887. "link": "https://github.com/pinzhenx/webml-demo"
  5888. },
  5889. {
  5890. "type": "tflite",
  5891. "target": "deeplab_mobilenetv2_513_dilated.tflite",
  5892. "source": "https://raw.githubusercontent.com/pinzhenx/webml-demo/master/examples/deeplab/model/deeplab_mobilenetv2_513_dilated.tflite",
  5893. "format": "TensorFlow Lite v3",
  5894. "link": "https://github.com/pinzhenx/webml-demo"
  5895. },
  5896. {
  5897. "type": "tflite",
  5898. "target": "densenet.tflite",
  5899. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/model_zoo/upload_20180427/densenet_2018_04_27.tgz[densenet/densenet.tflite]",
  5900. "format": "TensorFlow Lite v3",
  5901. "assert": [ "model.graphs[0].nodes[0].type.name=Conv2D" ],
  5902. "link": "https://www.tensorflow.org/lite/guide/hosted_models"
  5903. },
  5904. {
  5905. "type": "tflite",
  5906. "target": "efficientnet-edgetpu-S_quant_edgetpu.tflite",
  5907. "source": "https://github.com/google-coral/edgetpu/raw/master/test_data/efficientnet-edgetpu-S_quant_edgetpu.tflite",
  5908. "format": "TensorFlow Lite v3",
  5909. "link": "https://github.com/lutzroeder/netron/issues/499"
  5910. },
  5911. {
  5912. "type": "tflite",
  5913. "target": "efficientnet_lite1_int8_2.tflite",
  5914. "source": "https://github.com/lutzroeder/netron/files/8309257/efficientnet_lite1_int8_2.tflite.zip[efficientnet_lite1_int8_2.tflite]",
  5915. "format": "TensorFlow Lite v3",
  5916. "link": "https://github.com/lutzroeder/netron/issues/34"
  5917. },
  5918. {
  5919. "type": "tflite",
  5920. "target": "face_detection_front.json",
  5921. "source": "https://github.com/lutzroeder/netron/files/4606685/face_detection_front.zip[face_detection_front.json]",
  5922. "format": "TensorFlow Lite v3"
  5923. },
  5924. {
  5925. "type": "tflite",
  5926. "target": "face_detection_front.tflite",
  5927. "source": "https://github.com/lutzroeder/netron/files/4606685/face_detection_front.zip[face_detection_front.tflite]",
  5928. "format": "TensorFlow Lite v3",
  5929. "link": "https://github.com/lutzroeder/netron/issues/487"
  5930. },
  5931. {
  5932. "type": "tflite",
  5933. "target": "hair_segmentation.json",
  5934. "source": "https://github.com/lutzroeder/netron/files/4606715/hair_segmentation.zip[hair_segmentation.json]",
  5935. "format": "TensorFlow Lite v3",
  5936. "link": "https://github.com/lutzroeder/netron/issues/487"
  5937. },
  5938. {
  5939. "type": "tflite",
  5940. "target": "hair_segmentation.tflite",
  5941. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/models/hair_segmentation.tflite",
  5942. "format": "TensorFlow Lite v3",
  5943. "link": "https://github.com/google/mediapipe"
  5944. },
  5945. {
  5946. "type": "tflite",
  5947. "target": "hed_lite_model_quantize.tflite",
  5948. "source": "https://raw.githubusercontent.com/pqpo/SmartCropper/master/smartcropperlib/src/main/assets/models/hed_lite_model_quantize.tflite",
  5949. "format": "TensorFlow Lite v3",
  5950. "link": "https://github.com/pqpo/SmartCropper"
  5951. },
  5952. {
  5953. "type": "tflite",
  5954. "target": "inception_v3.tflite",
  5955. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/model_zoo/upload_20180427/inception_v3_2018_04_27.tgz[./inception_v3.tflite]"
  5956. },
  5957. {
  5958. "type": "tflite",
  5959. "target": "inception_v3_quant.tflite",
  5960. "source": "http://download.tensorflow.org/models/tflite_11_05_08/inception_v3_quant.tgz[inception_v3_quant.tflite]",
  5961. "format": "TensorFlow Lite v3",
  5962. "link": "https://www.tensorflow.org/lite/models"
  5963. },
  5964. {
  5965. "type": "tflite",
  5966. "target": "keyword_scrambled_8bit.tflite",
  5967. "source": "https://raw.githubusercontent.com/tensorflow/tflite-micro/master/tensorflow/lite/micro/models/keyword_scrambled_8bit.tflite",
  5968. "format": "TensorFlow Lite v3",
  5969. "link": "https://github.com/tensorflow/tflite-micro"
  5970. },
  5971. {
  5972. "type": "tflite",
  5973. "target": "mobilenet_v1_0.75_160_quantized.tflite",
  5974. "source": "https://github.com/lutzroeder/netron/files/4569400/mobilenet_v1_0.75_160_quantized.zip[mobilenet_v1_0.75_160_quantized.tflite]",
  5975. "format": "TensorFlow Lite v3",
  5976. "link": "https://github.com/lutzroeder/netron/issues/481"
  5977. },
  5978. {
  5979. "type": "tflite",
  5980. "target": "mobilenet_v1_1.0_224.tflite",
  5981. "source": "http://download.tensorflow.org/models/mobilenet_v1_2018_08_02/mobilenet_v1_1.0_224.tgz[./mobilenet_v1_1.0_224.tflite]",
  5982. "format": "TensorFlow Lite v3",
  5983. "link": "https://www.tensorflow.org/lite/models"
  5984. },
  5985. {
  5986. "type": "tflite",
  5987. "target": "mobilenet_v1_1.0_224_quant.tflite",
  5988. "source": "http://download.tensorflow.org/models/mobilenet_v1_2018_08_02/mobilenet_v1_1.0_224_quant.tgz[./mobilenet_v1_1.0_224_quant.tflite]",
  5989. "format": "TensorFlow Lite v3",
  5990. "link": "https://www.tensorflow.org/lite/models"
  5991. },
  5992. {
  5993. "type": "tflite",
  5994. "target": "mobilenet_v2_0.4_224.tflite",
  5995. "source": "https://storage.googleapis.com/mobilenet_v2/checkpoints/mobilenet_v2_1.0_224.tgz[./mobilenet_v2_1.0_224.tflite]",
  5996. "format": "TensorFlow Lite v3"
  5997. },
  5998. {
  5999. "type": "tflite",
  6000. "target": "mobilenet_v2_1.4_224.tflite",
  6001. "source": "https://storage.googleapis.com/mobilenet_v2/checkpoints/mobilenet_v2_1.4_224.tgz[./mobilenet_v2_1.4_224.tflite]",
  6002. "format": "TensorFlow Lite v3"
  6003. },
  6004. {
  6005. "type": "tflite",
  6006. "target": "model_pyramid_0_0_63_31.tflite",
  6007. "source": "https://github.com/lutzroeder/netron/files/6209444/model_pyramid_0_0_63_31.tflite.zip[model_pyramid_0_0_63_31.tflite]",
  6008. "format": "TensorFlow Lite v3",
  6009. "link": "https://github.com/lutzroeder/netron/issues/710"
  6010. },
  6011. {
  6012. "type": "tflite",
  6013. "target": "mnasnet_0.5_224.tflite",
  6014. "source": "http://download.tensorflow.org/models/tflite/mnasnet_0.5_224_09_07_2018.tgz[mnasnet_0.5_224/mnasnet_0.5_224.tflite]",
  6015. "format": "TensorFlow Lite v3",
  6016. "link": "https://www.tensorflow.org/lite/models"
  6017. },
  6018. {
  6019. "type": "tflite",
  6020. "target": "mnasnet_1.3_224.tflite",
  6021. "source": "http://download.tensorflow.org/models/tflite/mnasnet_1.3_224_09_07_2018.tgz[mnasnet_1.3_224/mnasnet_1.3_224.tflite]",
  6022. "format": "TensorFlow Lite v3",
  6023. "link": "https://www.tensorflow.org/lite/models"
  6024. },
  6025. {
  6026. "type": "tflite",
  6027. "target": "nasnet_mobile.tflite",
  6028. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/model_zoo/upload_20180427/nasnet_mobile_2018_04_27.tgz[./nasnet_mobile.tflite]",
  6029. "format": "TensorFlow Lite v3",
  6030. "link": "https://www.tensorflow.org/lite/models"
  6031. },
  6032. {
  6033. "type": "tflite",
  6034. "target": "netron_issue_256.tflite",
  6035. "source": "https://github.com/lutzroeder/netron/files/3101992/test.zip[test.tflite]",
  6036. "format": "TensorFlow Lite v3",
  6037. "link": "https://github.com/lutzroeder/netron/issues/256"
  6038. },
  6039. {
  6040. "type": "tflite",
  6041. "target": "netron_issue_386.tflite",
  6042. "source": "https://github.com/lutzroeder/netron/files/3963415/netron_issue_386.zip[netron_issue_386.tflite]",
  6043. "format": "TensorFlow Lite v3",
  6044. "link": "https://github.com/lutzroeder/netron/issues/386"
  6045. },
  6046. {
  6047. "type": "tflite",
  6048. "target": "netron_issue_416.tflite",
  6049. "source": "https://github.com/lutzroeder/netron/files/4089319/netron_issue_416.zip[netron_issue_416.tflite]",
  6050. "format": "TensorFlow Lite v3",
  6051. "link": "https://github.com/lutzroeder/netron/issues/416"
  6052. },
  6053. {
  6054. "type": "tflite",
  6055. "target": "netron_issue_479.tflite",
  6056. "source": "https://github.com/lutzroeder/netron/files/4565988/netron_issue_479.zip[netron_issue_479.tflite]",
  6057. "format": "TensorFlow Lite v3",
  6058. "link": "https://github.com/lutzroeder/netron/issues/479"
  6059. },
  6060. {
  6061. "type": "tflite",
  6062. "target": "pose_estimation_for_mobile.tflite",
  6063. "source": "https://raw.githubusercontent.com/edvardHua/PoseEstimationForMobile/master/release/cpm_model/model.tflite",
  6064. "format": "TensorFlow Lite v3",
  6065. "link": "https://github.com/edvardHua/PoseEstimationForMobile"
  6066. },
  6067. {
  6068. "type": "tflite",
  6069. "target": "quicknet.tflite",
  6070. "source": "https://github.com/lutzroeder/netron/files/5184953/quicknet.zip[quicknet.tflite]",
  6071. "format": "TensorFlow Lite v3",
  6072. "link": "https://github.com/lutzroeder/netron/issues/499"
  6073. },
  6074. {
  6075. "type": "tflite",
  6076. "target": "smartreply.tflite",
  6077. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/smartreply_1.0_2017_11_01.zip[smartreply.tflite]",
  6078. "format": "TensorFlow Lite v3"
  6079. },
  6080. {
  6081. "type": "tflite",
  6082. "target": "smartreply_1.0_2017_11_01.zip",
  6083. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/smartreply_1.0_2017_11_01.zip",
  6084. "format": "TensorFlow Lite v3"
  6085. },
  6086. {
  6087. "type": "tflite",
  6088. "target": "squeezenet.tflite",
  6089. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/model_zoo/upload_20180427/squeezenet_2018_04_27.tgz[./squeezenet.tflite]",
  6090. "format": "TensorFlow Lite v3"
  6091. },
  6092. {
  6093. "type": "tflite",
  6094. "target": "speech_hotword_model_rank1_2017_11_14.tflite",
  6095. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/speech_hotword_model_rank1_2017_11_14.tflite",
  6096. "format": "TensorFlow Lite v3"
  6097. },
  6098. {
  6099. "type": "tflite",
  6100. "target": "speech_hotword_model_rank2_2017_11_14.tflite",
  6101. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/speech_hotword_model_rank2_2017_11_14.tflite",
  6102. "format": "TensorFlow Lite v3"
  6103. },
  6104. {
  6105. "type": "tflite",
  6106. "target": "speech_speakerid_model_2017_11_14.tflite",
  6107. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/speech_speakerid_model_2017_11_14.tflite",
  6108. "format": "TensorFlow Lite v3"
  6109. },
  6110. {
  6111. "type": "tflite",
  6112. "target": "speech_tts_model_2017_11_14.tflite",
  6113. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/speech_tts_model_2017_11_14.tflite",
  6114. "format": "TensorFlow Lite v3"
  6115. },
  6116. {
  6117. "type": "tflite",
  6118. "target": "speech_tts_model_2017_11_14.json",
  6119. "source": "https://github.com/lutzroeder/netron/files/4606719/speech_tts_model_2017_11_14.zip[speech_tts_model_2017_11_14.json]",
  6120. "format": "TensorFlow Lite v3",
  6121. "link": "https://github.com/lutzroeder/netron/issues/487"
  6122. },
  6123. {
  6124. "type": "tflite",
  6125. "target": "subword-conformer.latest.tflite",
  6126. "source": "https://github.com/lutzroeder/netron/files/6032934/subword-conformer.zip[subword-conformer.latest.tflite]",
  6127. "format": "TensorFlow Lite v3",
  6128. "action": "skip-render",
  6129. "link": "https://github.com/lutzroeder/netron/issues/589"
  6130. },
  6131. {
  6132. "type": "tflite",
  6133. "target": "text_classification.tflite",
  6134. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/text_classification/text_classification.tflite",
  6135. "format": "TensorFlow Lite v3",
  6136. "link": "https://github.com/tensorflow/tensorflow/blob/master/tensorflow/lite/g3doc/models/text_classification/overview.md"
  6137. },
  6138. {
  6139. "type": "tflite",
  6140. "target": "two_subgraphs.bin",
  6141. "source": "https://raw.githubusercontent.com/tensorflow/tensorflow/master/tensorflow/lite/testdata/two_subgraphs.bin",
  6142. "format": "TensorFlow Lite v3",
  6143. "link": "https://github.com/tensorflow/tensorflow"
  6144. },
  6145. {
  6146. "type": "tflite",
  6147. "target": "xorGate.lite",
  6148. "source": "https://raw.githubusercontent.com/kosslab-kr/Tizen-NN-Runtime/master/Xor/xorGate.lite",
  6149. "format": "TensorFlow Lite v3",
  6150. "link": "https://github.com/kosslab-kr/Tizen-NN-Runtime"
  6151. },
  6152. {
  6153. "type": "tnn",
  6154. "target": "instance_normalization.tnnproto,instance_normalization.tnnmodel",
  6155. "source": "https://github.com/lutzroeder/netron/files/5124180/instance_normalization.zip[instance_normalization.tnnproto,instance_normalization.tnnmodel]",
  6156. "format": "TNN",
  6157. "link": "https://github.com/lutzroeder/netron/pull/583"
  6158. },
  6159. {
  6160. "type": "tnn",
  6161. "target": "squeezenet_v1.1.tnnmodel,squeezenet_v1.1.tnnproto",
  6162. "source": "https://raw.githubusercontent.com/Tencent/TNN/master/model/SqueezeNet/squeezenet_v1.1.tnnmodel,https://raw.githubusercontent.com/Tencent/TNN/master/model/SqueezeNet/squeezenet_v1.1.tnnproto",
  6163. "format": "TNN",
  6164. "link": "https://github.com/Tencent/TNN"
  6165. },
  6166. {
  6167. "type": "tnn",
  6168. "target": "tnn_v2_model.tnnmodel,tnn_v2_model.tnnproto",
  6169. "source": "https://github.com/lutzroeder/netron/files/5753725/tnn_v2_model.zip[tnn_v2_model.tnnmodel,tnn_v2_model.tnnproto]",
  6170. "format": "TNN",
  6171. "link": "https://github.com/lutzroeder/netron/issues/521"
  6172. },
  6173. {
  6174. "type": "tnn",
  6175. "target": "squeezenet_v1.1.tnnproto,squeezenet_v1.1.tnnmodel",
  6176. "source": "https://raw.githubusercontent.com/Tencent/TNN/master/model/SqueezeNet/squeezenet_v1.1.tnnproto,https://raw.githubusercontent.com/Tencent/TNN/master/model/SqueezeNet/squeezenet_v1.1.tnnmodel",
  6177. "format": "TNN",
  6178. "link": "https://github.com/Tencent/TNN"
  6179. },
  6180. {
  6181. "type": "torch",
  6182. "target": "2ch_notredame.t7",
  6183. "source": "https://s3.amazonaws.com/modelzoo-networks/cvpr2015matching_networks.tar.gz[2ch/2ch_notredame.t7]",
  6184. "format": "Torch v7",
  6185. "link": "https://github.com/szagoruyko/cvpr15deepcompare"
  6186. },
  6187. {
  6188. "type": "torch",
  6189. "target": "2ch2stream_liberty.t7",
  6190. "source": "https://s3.amazonaws.com/modelzoo-networks/cvpr2015matching_networks.tar.gz[2ch2stream/2ch2stream_liberty.t7]",
  6191. "format": "Torch v7",
  6192. "link": "https://github.com/szagoruyko/cvpr15deepcompare"
  6193. },
  6194. {
  6195. "type": "torch",
  6196. "target": "2chdeep_yosemite.t7",
  6197. "source": "https://s3.amazonaws.com/modelzoo-networks/cvpr2015matching_networks.tar.gz[2chdeep/2chdeep_yosemite.t7]",
  6198. "format": "Torch v7",
  6199. "link": "https://github.com/szagoruyko/cvpr15deepcompare"
  6200. },
  6201. {
  6202. "type": "torch",
  6203. "target": "apple2orange.t7",
  6204. "source": "https://people.eecs.berkeley.edu/~taesung_park/CycleGAN/models/apple2orange.t7",
  6205. "format": "Torch v7",
  6206. "link": "https://github.com/junyanz/CycleGAN"
  6207. },
  6208. {
  6209. "type": "torch",
  6210. "target": "bedrooms_4_net_G.t7",
  6211. "source": "https://github.com/soumith/lfs/raw/master/dcgan.torch/bedrooms_4_net_G.t7",
  6212. "format": "Torch v7",
  6213. "link": "https://github.com/soumith/dcgan.torch"
  6214. },
  6215. {
  6216. "type": "torch",
  6217. "target": "celebA_25_net_G.t7",
  6218. "source": "https://github.com/soumith/lfs/raw/master/dcgan.torch/celebA_25_net_G.t7",
  6219. "format": "Torch v7",
  6220. "link": "https://github.com/soumith/dcgan.torch"
  6221. },
  6222. {
  6223. "type": "torch",
  6224. "target": "cunet_art_14l_scale2.0x_model.t7",
  6225. "source": "https://raw.githubusercontent.com/nagadomi/waifu2x/master/models/cunet/art/noise0_model.t7",
  6226. "format": "Torch v7",
  6227. "link": "https://github.com/nagadomi/waifu2x"
  6228. },
  6229. {
  6230. "type": "torch",
  6231. "target": "facades_photo2label.t7",
  6232. "source": "https://people.eecs.berkeley.edu/~taesung_park/CycleGAN/models/facades_photo2label.t7",
  6233. "format": "Torch v7",
  6234. "link": "https://github.com/junyanz/CycleGAN"
  6235. },
  6236. {
  6237. "type": "torch",
  6238. "target": "Helen_8x.t7",
  6239. "source": "https://raw.githubusercontent.com/tyshiwo/FSRNet/master/models/Helen_8x.t7",
  6240. "format": "Torch v7",
  6241. "link": "https://github.com/tyshiwo/FSRNet"
  6242. },
  6243. {
  6244. "type": "torch",
  6245. "target": "inception.t7",
  6246. "source": "https://raw.githubusercontent.com/cpra/fer-cnn-sota/master/models/inception.t7",
  6247. "format": "Torch v7",
  6248. "link": "https://github.com/cpra/fer-cnn-sota"
  6249. },
  6250. {
  6251. "type": "torch",
  6252. "target": "net_kitti2015_fast_-a_train_all.t7",
  6253. "source": "https://github.com/lutzroeder/netron/files/3165404/net_kitti2015_fast_-a_train_all.t7.zip[net_kitti2015_fast_-a_train_all.t7]",
  6254. "format": "Torch v7",
  6255. "link": "https://github.com/lutzroeder/netron/issues/269"
  6256. },
  6257. {
  6258. "type": "torch",
  6259. "target": "openface.nn4.small2.v1.t7",
  6260. "source": "https://raw.githubusercontent.com/pyannote/pyannote-data/master/openface.nn4.small2.v1.t7",
  6261. "format": "Torch v7",
  6262. "link": "https://github.com/pyannote/pyannote-data"
  6263. },
  6264. {
  6265. "type": "torch",
  6266. "target": "resnet-18.t7",
  6267. "source": "https://d2j0dndfm35trm.cloudfront.net/resnet-18.t7",
  6268. "format": "Torch v7",
  6269. "link": "https://github.com/facebook/fb.resnet.torch"
  6270. },
  6271. {
  6272. "type": "torch",
  6273. "target": "resnet_photo_14l_scale2.0x_model.t7",
  6274. "source": "https://raw.githubusercontent.com/nagadomi/waifu2x/master/models/resnet_14l/photo/scale2.0x_model.t7",
  6275. "format": "Torch v7",
  6276. "link": "https://github.com/nagadomi/waifu2x"
  6277. },
  6278. {
  6279. "type": "torch",
  6280. "target": "rnnTracker_r300_l1_n1_m1_d4.t7",
  6281. "source": "https://raw.githubusercontent.com/aghagol/minimal_rnntracking_deploy/master/bin/rnnTracker_r300_l1_n1_m1_d4.t7",
  6282. "format": "Torch v7",
  6283. "link": "https://github.com/aghagol"
  6284. },
  6285. {
  6286. "type": "torch",
  6287. "target": "siam_liberty.t7",
  6288. "source": "https://s3.amazonaws.com/modelzoo-networks/cvpr2015matching_networks.tar.gz[siam/siam_liberty.t7]",
  6289. "format": "Torch v7",
  6290. "link": "https://github.com/szagoruyko/cvpr15deepcompare"
  6291. },
  6292. {
  6293. "type": "torch",
  6294. "target": "siam2stream_notredame.t7",
  6295. "source": "https://s3.amazonaws.com/modelzoo-networks/cvpr2015matching_networks.tar.gz[siam2stream/siam2stream_notredame.t7]",
  6296. "format": "Torch v7",
  6297. "link": "https://github.com/szagoruyko/cvpr15deepcompare"
  6298. },
  6299. {
  6300. "type": "torch",
  6301. "target": "soundnet5_final.t7",
  6302. "source": "http://data.csail.mit.edu/soundnet/soundnet_models_public.zip[soundnet_models_public/soundnet5_final.t7]",
  6303. "format": "Torch v7",
  6304. "link": "https://github.com/afperezm/acoustic-images-distillation"
  6305. },
  6306. {
  6307. "type": "torch",
  6308. "target": "vgg.t7",
  6309. "source": "https://raw.githubusercontent.com/cpra/fer-cnn-sota/master/models/vgg.t7",
  6310. "format": "Torch v7",
  6311. "link": "https://github.com/cpra/fer-cnn-sota"
  6312. },
  6313. {
  6314. "type": "uff",
  6315. "target": "tmp_v2_coco.pbtxt",
  6316. "source": "https://github.com/lutzroeder/netron/files/4741218/tmp_v2_coco.zip[tmp_v2_coco.pbtxt]",
  6317. "format": "UFF v1",
  6318. "link": "https://github.com/lutzroeder/netron/issues/511"
  6319. },
  6320. {
  6321. "type": "uff",
  6322. "target": "resnet50_tensorflow_1.6.uff",
  6323. "source": "https://github.com/lutzroeder/netron/files/7402208/resnet50_tensorflow_1.6.uff.zip[resnet50_tensorflow_1.6.uff]",
  6324. "format": "UFF v1",
  6325. "link": "https://github.com/lutzroeder/netron/issues/593"
  6326. },
  6327. {
  6328. "type": "uff",
  6329. "target": "sample_unpruned_mobilenet_v2.tar.gz",
  6330. "source": "https://nvidia.box.com/shared/static/8oqvmd79llr6lq1fr43s4fu1ph37v8nt.gz",
  6331. "format": "UFF v1",
  6332. "link": "https://github.com/lutzroeder/netron/issues/511"
  6333. },
  6334. {
  6335. "type": "weka",
  6336. "target": "j48model.model",
  6337. "source": "https://raw.githubusercontent.com/PTaati/wekaTree2python/master/j48model.model",
  6338. "error": "Unsupported type 'weka.classifiers.trees.J48' in 'j48model.model'."
  6339. },
  6340. {
  6341. "type": "xmodel",
  6342. "target": "face-quality_pt.xmodel",
  6343. "source": "https://github.com/lutzroeder/netron/files/7083632/face-quality_pt-vck190-r1.4.0.tar.gz[face-quality_pt/face-quality_pt.xmodel]",
  6344. "format": "xmodel",
  6345. "link": "https://github.com/lutzroeder/netron/issues/718"
  6346. },
  6347. {
  6348. "type": "xmodel",
  6349. "target": "mobilenet_1_0_224_tf2-zcu102_zcu104-r1.3.1.xmodel",
  6350. "source": "https://www.xilinx.com/bin/public/openDownload?filename=mobilenet_1_0_224_tf2-zcu102_zcu104-r1.3.1.tar.gz[mobilenet_1_0_224_tf2/mobilenet_1_0_224_tf2.xmodel]",
  6351. "format": "xmodel",
  6352. "link": "https://github.com/Xilinx/Vitis-AI/blob/master/models/AI-Model-Zoo/model-list/tf2_mobilenetv1_imagenet_224_224_1.15G_1.3/model.yaml"
  6353. },
  6354. {
  6355. "type": "xmodel",
  6356. "target": "mobilenet_1_0_224_tf2-u50-u50lv-u280-v3me-r1.3.1.xmodel",
  6357. "source": "https://www.xilinx.com/bin/public/openDownload?filename=mobilenet_1_0_224_tf2-u50-u50lv-u280-v3me-r1.3.1.tar.gz[mobilenet_1_0_224_tf2/mobilenet_1_0_224_tf2.xmodel]",
  6358. "format": "xmodel",
  6359. "link": "https://github.com/Xilinx/Vitis-AI/blob/master/models/AI-Model-Zoo/model-list/tf2_mobilenetv1_imagenet_224_224_1.15G_1.3/model.yaml"
  6360. },
  6361. {
  6362. "type": "xmodel",
  6363. "target": "PointsQuality_int.xmodel",
  6364. "source": "https://github.com/lutzroeder/netron/files/7083633/pt_face-quality_80_60_61.68M_1.4.zip[pt_face-quality_80_60_61.68M_1.4/quantized/PointsQuality_int.xmodel]",
  6365. "format": "xmodel",
  6366. "link": "https://github.com/lutzroeder/netron/issues/718"
  6367. }
  6368. ]