2
0

models.json 357 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584
  1. [
  2. {
  3. "type": "_",
  4. "target": "cnn_classifier.h5",
  5. "source": "https://github.com/lutzroeder/netron/files/12706986/cnn_classifier.h5.zip[cnn_classifier.h5]",
  6. "error": "Unexpected end of file. Expected 439 more bytes. The file might be corrupted.",
  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.",
  28. "format": "Core ML v1",
  29. "link": "https://github.com/lutzroeder/netron/issues/193"
  30. },
  31. {
  32. "type": "_",
  33. "target": "deepsort_4c4b_bgr_270_v140.cambricon",
  34. "source": "https://github.com/lutzroeder/netron/files/8783170/deepsort_4c4b_bgr_270_v140.cambricon.zip[deepsort_4c4b_bgr_270_v140.cambricon]",
  35. "error": "Invalid file content. File contains Cambricon model.",
  36. "link": "https://github.com/lutzroeder/netron/issues/917"
  37. },
  38. {
  39. "type": "_",
  40. "target": "empty.zip",
  41. "source": "https://github.com/lutzroeder/netron/files/5581087/empty.zip",
  42. "error": "Archive contains no model files.",
  43. "link": "https://github.com/lutzroeder/netron/issues/458"
  44. },
  45. {
  46. "type": "_",
  47. "target": "FaceONNX.xml",
  48. "source": "https://github.com/user-attachments/files/16435065/FaceONNX.xml.zip[FaceONNX.xml]",
  49. "error": "Invalid file content. File contains .NET XML documentation.",
  50. "link": "https://github.com/lutzroeder/netron/issues/458"
  51. },
  52. {
  53. "type": "_",
  54. "target": "haarcascade_mcs_nose.xml",
  55. "source": "https://github.com/lutzroeder/netron/files/7403702/haarcascade_mcs_nose.xml.zip[haarcascade_mcs_nose.xml]",
  56. "error": "Invalid file content. File contains OpenCV storage data.",
  57. "link": "https://github.com/lutzroeder/netron/issues/458"
  58. },
  59. {
  60. "type": "_",
  61. "target": "imagenet_2012_challenge_label_map_proto.pbtxt",
  62. "source": "https://raw.githubusercontent.com/dmlc/web-data/master/tensorflow/models/InceptionV1/imagenet_2012_challenge_label_map_proto.pbtxt",
  63. "error": "Invalid file content. File contains ImageNet LabelMap data."
  64. },
  65. {
  66. "type": "_",
  67. "target": "keras2onnx.onnx",
  68. "source": "https://github.com/lutzroeder/netron/files/5738366/keras2onnx.onnx.zip[keras2onnx.onnx]",
  69. "error": "File format is not onnx.ModelProto (Unexpected end of file).",
  70. "link": "https://github.com/lutzroeder/netron/issues/6"
  71. },
  72. {
  73. "type": "_",
  74. "target": "knift_index.pb",
  75. "error": "Invalid file content. File contains mediapipe.BoxDetectorIndex data.",
  76. "source": "https://github.com/lutzroeder/netron/files/6308301/knift_index.pb.zip[knift_index.pb]"
  77. },
  78. {
  79. "type": "_",
  80. "target": "labelmap.pbtxt",
  81. "source": "https://github.com/lutzroeder/netron/files/5398649/labelmap.zip[labelmap.pbtxt]",
  82. "error": "Invalid file content. File contains StringIntLabelMapProto data.",
  83. "link": "https://github.com/lutzroeder/netron/issues/458"
  84. },
  85. {
  86. "type": "_",
  87. "target": "gzip_invalid_archive.tar.gz",
  88. "source": "https://github.com/lutzroeder/netron/files/5468427/gzip_invalid_archive.tar.gz",
  89. "error": "Unsupported file content.",
  90. "link": "https://github.com/lutzroeder/netron/issues/249"
  91. },
  92. {
  93. "type": "_",
  94. "target": "gzip_invalid_compression.tar.gz",
  95. "source": "https://github.com/lutzroeder/netron/files/3027193/gzip_invalid_compression.tar.gz",
  96. "error": "Invalid compression method '1'.",
  97. "link": "https://github.com/lutzroeder/netron/issues/249"
  98. },
  99. {
  100. "type": "_",
  101. "target": "invalid.tflite",
  102. "source": "https://github.com/user-attachments/files/16322406/invalid.tflite.zip[invalid.tflite]",
  103. "error": "Invalid file content. File contains TensorFlow Lite model data.",
  104. "link": "https://github.com/lutzroeder/netron/issues/458"
  105. },
  106. {
  107. "type": "_",
  108. "target": "invalid_git_lfs.mlmodel",
  109. "source": "https://github.com/lutzroeder/netron/files/4432767/invalid_git_lfs.mlmodel.zip[invalid_git_lfs.mlmodel]",
  110. "error": "Invalid file content. File contains Git LFS header.",
  111. "link": "https://github.com/lutzroeder/netron/issues/458"
  112. },
  113. {
  114. "type": "_",
  115. "target": "invalid_html.mlmodel.zip",
  116. "source": "https://github.com/lutzroeder/netron/files/4432768/invalid_html.mlmodel.zip",
  117. "error": "Invalid file content. File contains HTML markup.",
  118. "link": "https://github.com/lutzroeder/netron/issues/458"
  119. },
  120. {
  121. "type": "_",
  122. "target": "invalid_html.tflite",
  123. "source": "https://github.com/lutzroeder/netron/files/4432789/invalid_html.tflite.zip[invalid_html.tflite]",
  124. "error": "Invalid file content. File contains HTML markup.",
  125. "link": "https://github.com/lutzroeder/netron/issues/458"
  126. },
  127. {
  128. "type": "_",
  129. "target": "onnx-metadata.json",
  130. "source": "https://raw.githubusercontent.com/lutzroeder/netron/main/source/onnx-metadata.json",
  131. "error": "Invalid file content. File contains Netron metadata.",
  132. "link": "https://github.com/lutzroeder/netron/blob/main/source/onnx-metadata.json"
  133. },
  134. {
  135. "type": "_",
  136. "target": "ops.pbtxt",
  137. "source": "https://raw.githubusercontent.com/tensorflow/tensorflow/master/tensorflow/core/ops/ops.pbtxt",
  138. "error": "Invalid file content. File contains TensorFlow OpList data.",
  139. "link": "https://github.com/tensorflow/tensorflow/blob/master/tensorflow/core/ops/ops.pbtxt"
  140. },
  141. {
  142. "type": "_",
  143. "target": "preloaded_data.pb",
  144. "source": "https://github.com/user-attachments/files/15981013/preloaded_data.pb.zip[preloaded_data.pb]",
  145. "error": "Invalid file content. File contains chrome_browser_media.PreloadedData.",
  146. "link": "https://github.com/lutzroeder/netron/issues/458"
  147. },
  148. {
  149. "type": "_",
  150. "target": "python-import.pt",
  151. "source": "https://github.com/lutzroeder/netron/files/12139921/python-import.pt.zip[python-import.pt]",
  152. "error": "Invalid file content. File contains Python source code.",
  153. "link": "https://github.com/lutzroeder/netron/issues/458"
  154. },
  155. {
  156. "type": "_",
  157. "target": "python-from-import.pt",
  158. "source": "https://github.com/lutzroeder/netron/files/12139922/python-from-import.pt.zip[python-from-import.pt]",
  159. "error": "Invalid file content. File contains Python source code.",
  160. "link": "https://github.com/lutzroeder/netron/issues/458"
  161. },
  162. {
  163. "type": "_",
  164. "target": "pytorch_invalid_file.pth",
  165. "source": "https://github.com/lutzroeder/netron/files/3269093/pytorch_invalid_file.zip[pytorch_invalid_file.pth]",
  166. "error": "Could not find end of line.",
  167. "link": "https://github.com/lutzroeder/netron/issues/720"
  168. },
  169. {
  170. "type": "_",
  171. "target": "random.onnx",
  172. "source": "https://github.com/lutzroeder/netron/files/7449479/random.onnx.zip[random.onnx]",
  173. "error": "Unsupported file content.",
  174. "link": "https://github.com/lutzroeder/netron/issues/458"
  175. },
  176. {
  177. "type": "_",
  178. "target": "sm_uint8_fence.nnc",
  179. "source": "https://github.com/lutzroeder/netron/files/12446059/sm_uint8_fence.nnc.zip[sm_uint8_fence.nnc]",
  180. "error": "Invalid file content. File contains undocumented NNC data.",
  181. "link": "https://github.com/lutzroeder/netron/issues/1144"
  182. },
  183. {
  184. "type": "_",
  185. "target": "SR_face_x3_530x530.cambricon",
  186. "source": "https://github.com/lutzroeder/netron/files/8783172/SR_face_x3_530x530.cambricon.zip[SR_face_x3_530x530.cambricon]",
  187. "error": "Invalid file content. File contains Cambricon model.",
  188. "link": "https://github.com/lutzroeder/netron/issues/917"
  189. },
  190. {
  191. "type": "_",
  192. "target": "tokenizer.model",
  193. "source": "https://github.com/user-attachments/files/16203080/tokenizer.model.zip[tokenizer.model]",
  194. "error": "Invalid file content. File contains Tokenizer data.",
  195. "link": "https://github.com/lutzroeder/netron/issues/458"
  196. },
  197. {
  198. "type": "_",
  199. "target": "vk_swiftshader_icd.json",
  200. "source": "https://github.com/lutzroeder/netron/files/5398770/vk_swiftshader_icd.json.zip[vk_swiftshader_icd.json]",
  201. "error": "Invalid file content. File contains Vulkan SwiftShader ICD manifest.",
  202. "link": "https://github.com/lutzroeder/netron/issues/458"
  203. },
  204. {
  205. "type": "_",
  206. "target": "yolo-1c.meta",
  207. "source": "https://github.com/lutzroeder/netron/files/5398632/yolo-1c.meta.zip[yolo-1c.meta]",
  208. "error": "Invalid file content. File contains Darkflow metadata.",
  209. "link": "https://github.com/lutzroeder/netron/issues/458"
  210. },
  211. {
  212. "type": "_",
  213. "target": "zip_invalid_archive.zip",
  214. "source": "https://github.com/lutzroeder/netron/files/5468425/zip_invalid_archive.zip",
  215. "error": "Unsupported file content.",
  216. "link": "https://github.com/lutzroeder/netron/issues/250"
  217. },
  218. {
  219. "type": "acuity",
  220. "target": "inception_v1.json",
  221. "source": "https://raw.githubusercontent.com/VeriSilicon/acuity-models/master/models/inception_v1/inception_v1.json",
  222. "link": "https://github.com/VeriSilicon/acuity-models"
  223. },
  224. {
  225. "type": "armnn",
  226. "target": "simple_network.armnn",
  227. "source": "https://github.com/lutzroeder/netron/files/4951689/simple_network.zip[simple_network.armnn]",
  228. "format": "Arm NN",
  229. "link": "https://github.com/lutzroeder/netron/issues/515"
  230. },
  231. {
  232. "type": "armnn",
  233. "target": "ssd_mobilenet_v1.armnn",
  234. "source": "https://raw.githubusercontent.com/ARM-software/armnn/master/samples/serialized/ssd_mobilenet_v1.armnn",
  235. "format": "Arm NN",
  236. "link": "https://github.com/ARM-software/armnn"
  237. },
  238. {
  239. "type": "armnn",
  240. "target": "ssd_mobilenet_v3_small_coco_2019_08_14_q8.armnn",
  241. "source": "https://github.com/lutzroeder/netron/files/3839429/samples.zip[ssd_mobilenet_v3_small_coco_2019_08_14_q8.armnn]",
  242. "format": "Arm NN",
  243. "tags": "quantization",
  244. "link": "https://github.com/lutzroeder/netron/issues/515"
  245. },
  246. {
  247. "type": "armnn",
  248. "target": "ssd_mobilenet_v3_small_coco_2019_08_14_q8.json",
  249. "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]",
  250. "format": "Arm NN",
  251. "tags": "quantization",
  252. "link": "https://github.com/lutzroeder/netron/issues/515"
  253. },
  254. {
  255. "type": "armnn",
  256. "target": "ssd_mobilenet_v3_small_coco_2019_08_14_q16.armnn",
  257. "source": "https://github.com/lutzroeder/netron/files/3839429/samples.zip[ssd_mobilenet_v3_small_coco_2019_08_14_q16.armnn]",
  258. "format": "Arm NN",
  259. "tags": "quantization",
  260. "link": "https://github.com/lutzroeder/netron/issues/515"
  261. },
  262. {
  263. "type": "barracuda",
  264. "target": "3DBallHardLearning.nn",
  265. "source": "https://raw.githubusercontent.com/reinforcement-learning-kr/rl_bootcamp/master/UnitySDK/Assets/ML-Agents/Examples/3DBall/TFModels/3DBallHardLearning.nn",
  266. "format": "Barracuda v16",
  267. "link": "https://github.com/reinforcement-learning-kr/rl_bootcamp"
  268. },
  269. {
  270. "type": "barracuda",
  271. "target": "mobilenet_v2.nn",
  272. "source": "https://raw.githubusercontent.com/Syn-McJ/TFClassify-Unity-Barracuda/master/Assets/Resources/mobilenet_v2.nn",
  273. "format": "Barracuda v16",
  274. "link": "https://github.com/Syn-McJ/TFClassify-Unity-Barracuda"
  275. },
  276. {
  277. "type": "bigdl",
  278. "target": "analytics-zoo_squeezenet-quantize_imagenet_0.1.0.model",
  279. "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]",
  280. "format": "BigDL v0.5.0",
  281. "link": "https://github.com/lutzroeder/netron/issues/355"
  282. },
  283. {
  284. "type": "caffe",
  285. "target": "1D_lstm.prototxt",
  286. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/1D_lstm.prototxt",
  287. "format": "Caffe v2",
  288. "link": "https://github.com/cwlacewe/netscope"
  289. },
  290. {
  291. "type": "caffe",
  292. "target": "age_net.caffemodel",
  293. "source": "https://raw.githubusercontent.com/eveningglow/age-and-gender-classification/master/model/age_net.caffemodel",
  294. "format": "Caffe v1",
  295. "link": "https://github.com/eveningglow/age-and-gender-classification"
  296. },
  297. {
  298. "type": "caffe",
  299. "target": "alexnet.prototxt",
  300. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/alexnet.prototxt",
  301. "format": "Caffe v2",
  302. "link": "https://github.com/cwlacewe/netscope"
  303. },
  304. {
  305. "type": "caffe",
  306. "target": "AlexNet_SalObjSub_deploy.prototxt",
  307. "source": "https://raw.githubusercontent.com/natanielruiz/net-archive/master/salient-object-alexnet/deploy.prototxt",
  308. "format": "Caffe v1",
  309. "link": "https://github.com/natanielruiz/net-archive/tree/master/salient-object-alexnet"
  310. },
  311. {
  312. "type": "caffe",
  313. "target": "autocolorize.prototxt",
  314. "source": "https://github.com/lutzroeder/netron/files/4923194/autocolorize.zip[autocolorize.prototxt]",
  315. "format": "Caffe v2",
  316. "link": "https://github.com/lutzroeder/netron/issues/276"
  317. },
  318. {
  319. "type": "caffe",
  320. "target": "bvlc_alexnet.caffemodel.zip",
  321. "source": "https://github.com/lutzroeder/netron/files/11932662/bvlc_alexnet.caffemodel.zip",
  322. "format": "Caffe v1",
  323. "link": "https://github.com/lutzroeder/netron/issues/276"
  324. },
  325. {
  326. "type": "caffe",
  327. "target": "bvlc_caffenet_full_conv.prototxt",
  328. "source": "https://raw.githubusercontent.com/BVLC/caffe/master/examples/net_surgery/bvlc_caffenet_full_conv.prototxt",
  329. "format": "Caffe v2",
  330. "link": "https://github.com/BVLC/caffe/tree/master/examples/net_surgery"
  331. },
  332. {
  333. "type": "caffe",
  334. "target": "bvlc_alexnet_deploy.prototxt",
  335. "source": "https://raw.githubusercontent.com/BVLC/caffe/master/models/bvlc_alexnet/deploy.prototxt",
  336. "format": "Caffe v2",
  337. "link": "https://github.com/BVLC/caffe/tree/master/models/bvlc_alexnet"
  338. },
  339. {
  340. "type": "caffe",
  341. "target": "caffe_array.prototxt",
  342. "source": "https://github.com/lutzroeder/netron/files/3288816/caffe_examples.zip[caffe_array.prototxt]",
  343. "format": "Caffe v2",
  344. "link": "https://github.com/lutzroeder/netron/issues/276"
  345. },
  346. {
  347. "type": "caffe",
  348. "target": "caffe_invalid_file.caffemodel",
  349. "source": "https://github.com/lutzroeder/netron/files/3288816/caffe_examples.zip[caffe_invalid_file.caffemodel]",
  350. "error": "File format is not caffe.NetParameter (Invalid type '4' at offset 11).",
  351. "link": "https://github.com/lutzroeder/netron/issues/276"
  352. },
  353. {
  354. "type": "caffe",
  355. "target": "caffe_invalid_semicolon.prototxt",
  356. "source": "https://github.com/lutzroeder/netron/files/3288816/caffe_examples.zip[caffe_invalid_semicolon.prototxt]",
  357. "error": "File text format is not caffe.NetParameter (Unexpected token ';' at 7:18).",
  358. "link": "https://github.com/lutzroeder/netron/issues/276"
  359. },
  360. {
  361. "type": "caffe",
  362. "target": "caffe_semicolon.prototxt",
  363. "source": "https://github.com/lutzroeder/netron/files/3288816/caffe_examples.zip[caffe_semicolon.prototxt]",
  364. "format": "Caffe v2",
  365. "link": "https://github.com/lutzroeder/netron/issues/276"
  366. },
  367. {
  368. "type": "caffe",
  369. "target": "cifar10_full_sigmoid_solver_bn.prototxt,cifar10_full_sigmoid_train_test_bn.prototxt",
  370. "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",
  371. "format": "Caffe v2",
  372. "link": "https://github.com/BVLC/caffe/tree/master/examples/cifar10"
  373. },
  374. {
  375. "type": "caffe",
  376. "target": "cityscapes_713_pspnet.prototxt",
  377. "source": "https://github.com/lutzroeder/netron/files/6543206/cityscapes_713_pspnet.prototxt.zip[cityscapes_713_pspnet.prototxt]",
  378. "format": "Caffe v2",
  379. "link": "https://github.com/lutzroeder/netron/issues/276"
  380. },
  381. {
  382. "type": "caffe",
  383. "target": "deepyeast.caffemodel.zip",
  384. "source": "https://github.com/lutzroeder/netron/files/11953829/deepyeast.caffemodel.zip",
  385. "format": "Caffe v2",
  386. "link": "https://github.com/lutzroeder/netron/issues/276"
  387. },
  388. {
  389. "type": "caffe",
  390. "target": "DenseNet_169.prototxt",
  391. "source": "https://raw.githubusercontent.com/shicai/DenseNet-Caffe/master/DenseNet_169.prototxt",
  392. "format": "Caffe v2",
  393. "link": "https://github.com/shicai/DenseNet-Caffe"
  394. },
  395. {
  396. "type": "caffe",
  397. "target": "deploy_iResNet_ROB.tpl.prototxt",
  398. "source": "https://raw.githubusercontent.com/leonzfa/iResNet/master/models/model/deploy_iResNet_ROB.tpl.prototxt",
  399. "error": "File text format is not caffe.NetParameter (Couldn't parse float '$SCALE_WIDTH' at 727:47).",
  400. "link": "https://github.com/leonzfa/iResNet"
  401. },
  402. {
  403. "type": "caffe",
  404. "target": "faster_rcnn_train_test_21cls.pt",
  405. "source": "https://raw.githubusercontent.com/sanghoon/pva-faster-rcnn/master/models/pvanet/pva9.1/faster_rcnn_train_test_21cls.pt",
  406. "format": "Caffe v2",
  407. "link": "https://github.com/sanghoon/pva-faster-rcnn"
  408. },
  409. {
  410. "type": "caffe",
  411. "target": "fasterRCNN_AlexNet.prototxt",
  412. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/fasterRCNN_AlexNet.prototxt",
  413. "format": "Caffe v2",
  414. "link": "https://github.com/cwlacewe/netscope"
  415. },
  416. {
  417. "type": "caffe",
  418. "target": "fasterRCNN_ResNet.prototxt",
  419. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/fasterRCNN_ResNet.prototxt",
  420. "format": "Caffe v2",
  421. "link": "https://github.com/cwlacewe/netscope"
  422. },
  423. {
  424. "type": "caffe",
  425. "target": "fasterRCNN_ZynqNet.prototxt",
  426. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/fasterRCNN_ZynqNet.prototxt",
  427. "format": "Caffe v2",
  428. "link": "https://github.com/cwlacewe/netscope"
  429. },
  430. {
  431. "type": "caffe",
  432. "target": "fcn-16s.prototxt",
  433. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/fcn-16s.prototxt",
  434. "format": "Caffe v1",
  435. "link": "https://github.com/cwlacewe/netscope"
  436. },
  437. {
  438. "type": "caffe",
  439. "target": "fcn-8s-pascal-deploy.prototxt",
  440. "source": "https://raw.githubusercontent.com/HyeonwooNoh/DeconvNet/master/model/FCN/fcn-8s-pascal-deploy.prototxt",
  441. "format": "Caffe v1",
  442. "link": "https://github.com/HyeonwooNoh/DeconvNet"
  443. },
  444. {
  445. "type": "caffe",
  446. "target": "feat_ext_C3D_examples_imagenet_alexnet_train.prototxt",
  447. "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]",
  448. "format": "Caffe v1",
  449. "link": "https://github.com/lutzroeder/netron/issues/276"
  450. },
  451. {
  452. "type": "caffe",
  453. "target": "googlenet.prototxt",
  454. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/googlenet.prototxt",
  455. "format": "Caffe v2",
  456. "link": "https://github.com/cwlacewe/netscope"
  457. },
  458. {
  459. "type": "caffe",
  460. "target": "inceptionv3.prototxt",
  461. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/inceptionv3.prototxt",
  462. "format": "Caffe v2",
  463. "link": "https://github.com/cwlacewe/netscope"
  464. },
  465. {
  466. "type": "caffe",
  467. "target": "inceptionv4.prototxt",
  468. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/inceptionv4.prototxt",
  469. "format": "Caffe v2",
  470. "link": "https://github.com/cwlacewe/netscope"
  471. },
  472. {
  473. "type": "caffe",
  474. "target": "inceptionv4_resnet.prototxt",
  475. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/inceptionv4_resnet.prototxt",
  476. "format": "Caffe v2",
  477. "link": "https://github.com/cwlacewe/netscope"
  478. },
  479. {
  480. "type": "caffe",
  481. "target": "lenet_consolidated_solver.prototxt",
  482. "source": "https://raw.githubusercontent.com/BVLC/caffe/master/examples/mnist/lenet_consolidated_solver.prototxt",
  483. "format": "Caffe v1",
  484. "link": "https://github.com/BVLC/caffe/tree/master/examples/mnist"
  485. },
  486. {
  487. "type": "caffe",
  488. "target": "linreg.prototxt",
  489. "source": "https://raw.githubusercontent.com/BVLC/caffe/master/examples/pycaffe/linreg.prototxt",
  490. "format": "Caffe v2",
  491. "link": "https://github.com/BVLC/caffe/tree/master/examples/pycaffe"
  492. },
  493. {
  494. "type": "caffe",
  495. "target": "lstm.prototxt",
  496. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/lstm.prototxt",
  497. "format": "Caffe v2",
  498. "link": "https://github.com/cwlacewe/netscope"
  499. },
  500. {
  501. "type": "caffe",
  502. "target": "mobilenet.caffemodel",
  503. "source": "https://raw.githubusercontent.com/shicai/MobileNet-Caffe/master/mobilenet.caffemodel",
  504. "format": "Caffe v2",
  505. "link": "https://github.com/shicai/MobileNet-Caffe"
  506. },
  507. {
  508. "type": "caffe",
  509. "target": "mobilenet_deploy.prototxt",
  510. "source": "https://raw.githubusercontent.com/shicai/MobileNet-Caffe/master/mobilenet_deploy.prototxt",
  511. "format": "Caffe v2",
  512. "link": "https://github.com/shicai/MobileNet-Caffe"
  513. },
  514. {
  515. "type": "caffe",
  516. "target": "mobilenet_yolov3_lite_train.prototxt",
  517. "source": "https://raw.githubusercontent.com/eric612/Caffe-YOLOv3-Windows/master/models/yolov3/mobilenet_yolov3_lite_train.prototxt",
  518. "format": "Caffe v2",
  519. "link": "https://github.com/eric612/Caffe-YOLOv3-Windows"
  520. },
  521. {
  522. "type": "caffe",
  523. "target": "mobilenet_yolov3_solver.prototxt,mobilenet_yolov3_train.prototxt",
  524. "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",
  525. "format": "Caffe v2",
  526. "link": "https://github.com/eric612/Caffe-YOLOv3-Windows"
  527. },
  528. {
  529. "type": "caffe",
  530. "target": "mobilenet_v2.caffemodel",
  531. "source": "https://raw.githubusercontent.com/shicai/MobileNet-Caffe/master/mobilenet_v2.caffemodel",
  532. "format": "Caffe v2",
  533. "link": "https://github.com/shicai/MobileNet-Caffe"
  534. },
  535. {
  536. "type": "caffe",
  537. "target": "mobilenet_v2_deploy.prototxt",
  538. "source": "https://raw.githubusercontent.com/shicai/MobileNet-Caffe/master/mobilenet_v2_deploy.prototxt",
  539. "format": "Caffe v2",
  540. "link": "https://github.com/shicai/MobileNet-Caffe"
  541. },
  542. {
  543. "type": "caffe",
  544. "target": "MobileNetSSD_train.prototxt",
  545. "source": "https://github.com/lutzroeder/netron/files/3771164/MobileNetSSD_train.prototxt.txt",
  546. "format": "Caffe v2",
  547. "link": "https://github.com/lutzroeder/netron/issues/358"
  548. },
  549. {
  550. "type": "caffe",
  551. "target": "MobileNetSSD_train_template.prototxt",
  552. "source": "https://raw.githubusercontent.com/chuanqi305/MobileNet-SSD/master/template/MobileNetSSD_train_template.prototxt",
  553. "format": "Caffe v2",
  554. "link": "https://github.com/chuanqi305/MobileNet-SSD"
  555. },
  556. {
  557. "type": "caffe",
  558. "target": "mnist_siamese_solver.prototxt,mnist_siamese_train_test.prototxt",
  559. "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",
  560. "format": "Caffe v2",
  561. "link": "https://github.com/BVLC/caffe/tree/master/examples/siamese"
  562. },
  563. {
  564. "type": "caffe",
  565. "target": "0306.pbtxt",
  566. "source": "https://github.com/lutzroeder/netron/files/14074726/0306.pbtxt.zip[0306.pbtxt]",
  567. "format": "Caffe v2",
  568. "link": "https://github.com/lutzroeder/netron/issues/306"
  569. },
  570. {
  571. "type": "caffe",
  572. "target": "nin.prototxt",
  573. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/nin.prototxt",
  574. "format": "Caffe v1",
  575. "link": "https://github.com/cwlacewe/netscope"
  576. },
  577. {
  578. "type": "caffe",
  579. "target": "ORION_extended_trainval.prototxt",
  580. "source": "https://raw.githubusercontent.com/lmb-freiburg/orion/master/net_archs/modelnet10/ORION_extended_trainval.prototxt",
  581. "format": "Caffe v2",
  582. "link": "https://github.com/lmb-freiburg/orion"
  583. },
  584. {
  585. "type": "caffe",
  586. "target": "panoramic_object_detection_deploy_crop.prototxt.prototxt",
  587. "source": "https://raw.githubusercontent.com/gdlg/panoramic-object-detection/master/examples/inference/deploy_crop.prototxt",
  588. "format": "Caffe v2",
  589. "link": "https://github.com/gdlg/panoramic-object-detection/tree/master/examples/inference"
  590. },
  591. {
  592. "type": "caffe",
  593. "target": "ResNet-18-deploy.prototxt",
  594. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/ResNet-18-deploy.prototxt",
  595. "format": "Caffe v2",
  596. "link": "https://github.com/cwlacewe/netscope"
  597. },
  598. {
  599. "type": "caffe",
  600. "target": "ResNet-34.prototxt",
  601. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/ResNet-34.prototxt",
  602. "format": "Caffe v2",
  603. "link": "https://github.com/cwlacewe/netscope"
  604. },
  605. {
  606. "type": "caffe",
  607. "target": "resnet-50.prototxt",
  608. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/resnet-50.prototxt",
  609. "format": "Caffe v2",
  610. "link": "https://github.com/cwlacewe/netscope"
  611. },
  612. {
  613. "type": "caffe",
  614. "target": "ResNet-50-deploy.prototxt",
  615. "source": "https://deepdetect.com/models/resnet/ResNet-50-deploy.prototxt",
  616. "format": "Caffe v2",
  617. "link": "https://deepdetect.com/models/resnet/"
  618. },
  619. {
  620. "type": "caffe",
  621. "target": "ResNet-50_merged.qconv.winograd.cwl.prototxt",
  622. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/ResNet-50_merged.qconv.winograd.cwl.prototxt",
  623. "link": "https://github.com/cwlacewe/netscope"
  624. },
  625. {
  626. "type": "caffe",
  627. "target": "ResNet-152-deploy.prototxt",
  628. "source": "https://deepdetect.com/models/resnet/ResNet-152-deploy.prototxt",
  629. "format": "Caffe v2",
  630. "link": "https://deepdetect.com/models/resnet/"
  631. },
  632. {
  633. "type": "caffe",
  634. "target": "resnet-152.prototxt",
  635. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/resnet-152.prototxt",
  636. "format": "Caffe v2",
  637. "link": "https://github.com/cwlacewe/netscope"
  638. },
  639. {
  640. "type": "caffe",
  641. "target": "seq2seq_train_ep7_tar.prototxt",
  642. "source": "https://raw.githubusercontent.com/jasjeetIM/Seq2Seq/master/models/s2s/train_ep7_tar.prototxt",
  643. "format": "Caffe v2",
  644. "link": "https://github.com/jasjeetIM/Seq2Seq"
  645. },
  646. {
  647. "type": "caffe",
  648. "target": "se_resnet_50_v1_deploy.prototxt",
  649. "source": "https://raw.githubusercontent.com/shicai/SENet-Caffe/master/se_resnet_50_v1_deploy.prototxt",
  650. "format": "Caffe v2",
  651. "link": "https://github.com/shicai/SENet-Caffe"
  652. },
  653. {
  654. "type": "caffe",
  655. "target": "segnet_basic_inference.prototxt",
  656. "source": "https://raw.githubusercontent.com/alexgkendall/SegNet-Tutorial/master/Models/segnet_basic_inference.prototxt",
  657. "format": "Caffe v2",
  658. "link": "https://github.com/alexgkendall/SegNet-Tutorial"
  659. },
  660. {
  661. "type": "caffe",
  662. "target": "shufflenet_1x_g3_train.prototxt",
  663. "source": "https://raw.githubusercontent.com/Ewenwan/ShuffleNet-2/master/shufflenet_1x_g3_train.prototxt",
  664. "format": "Caffe v2",
  665. "link": "https://github.com/Ewenwan/ShuffleNet-2"
  666. },
  667. {
  668. "type": "caffe",
  669. "target": "squeezenet_v1.1.caffemodel",
  670. "source": "https://raw.githubusercontent.com/DeepScale/SqueezeNet/master/SqueezeNet_v1.1/squeezenet_v1.1.caffemodel",
  671. "format": "Caffe v2",
  672. "link": "https://github.com/DeepScale/SqueezeNet"
  673. },
  674. {
  675. "type": "caffe",
  676. "target": "sq11b2a_e3.prototxt",
  677. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/sq11b2a_e3.prototxt",
  678. "format": "Caffe v2",
  679. "link": "https://github.com/cwlacewe/netscope"
  680. },
  681. {
  682. "type": "caffe",
  683. "target": "squeezenet.prototxt",
  684. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/squeezenet.prototxt",
  685. "format": "Caffe v2",
  686. "link": "https://github.com/cwlacewe/netscope"
  687. },
  688. {
  689. "type": "caffe",
  690. "target": "squeezenet_v11.prototxt",
  691. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/squeezenet_v11.prototxt",
  692. "format": "Caffe v2",
  693. "link": "https://github.com/cwlacewe/netscope"
  694. },
  695. {
  696. "type": "caffe",
  697. "target": "ssd_16nodes_512_batch_train.prototxt",
  698. "source": "https://raw.githubusercontent.com/intel/caffe/master/models/intel_optimized_models/multinode/ssd_16nodes_512_batch/train.prototxt",
  699. "format": "Caffe v2",
  700. "link": "https://github.com/intel/caffe"
  701. },
  702. {
  703. "type": "caffe",
  704. "target": "SSD300.prototxt",
  705. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/SSD300.prototxt",
  706. "format": "Caffe v2",
  707. "link": "https://github.com/cwlacewe/netscope"
  708. },
  709. {
  710. "type": "caffe",
  711. "target": "tsn_bn_inception_flow_deploy.prototxt",
  712. "source": "https://raw.githubusercontent.com/yjxiong/temporal-segment-networks/master/models/hmdb51/tsn_bn_inception_flow_deploy.prototxt",
  713. "format": "Caffe v2",
  714. "link": "https://github.com/yjxiong/temporal-segment-networks"
  715. },
  716. {
  717. "type": "caffe",
  718. "target": "vanillaCNN.caffemodel",
  719. "source": "https://raw.githubusercontent.com/ishay2b/VanillaCNN/master/ZOO/vanillaCNN.caffemodel",
  720. "format": "Caffe v2",
  721. "link": "https://gist.github.com/ishay2b/58248e5f3c3bf575ac40"
  722. },
  723. {
  724. "type": "caffe",
  725. "target": "vgg-16.prototxt",
  726. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/vgg-16.prototxt",
  727. "format": "Caffe v1",
  728. "link": "https://github.com/cwlacewe/netscope"
  729. },
  730. {
  731. "type": "caffe",
  732. "target": "VGG_CNN_M_2048_deploy.prototxt",
  733. "source": "https://raw.githubusercontent.com/natanielruiz/net-archive/master/vgg_cnn_m_2048/VGG_CNN_M_2048_deploy.prototxt",
  734. "format": "Caffe v1",
  735. "link": "https://github.com/natanielruiz/net-archive"
  736. },
  737. {
  738. "type": "caffe",
  739. "target": "VGG_VOC0712Plus_SSD_300x300_ft_deploy.prototxt",
  740. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/VGG_VOC0712Plus_SSD_300x300_ft_deploy.prototxt",
  741. "format": "Caffe v2",
  742. "link": "https://github.com/cwlacewe/netscope"
  743. },
  744. {
  745. "type": "caffe",
  746. "target": "YOLO.prototxt",
  747. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/YOLO.prototxt",
  748. "format": "Caffe v2",
  749. "link": "https://github.com/cwlacewe/netscope"
  750. },
  751. {
  752. "type": "caffe",
  753. "target": "yolov3_gen.prototext.txt",
  754. "source": "https://github.com/lutzroeder/netron/files/5615031/yolov3_gen.prototext.txt.zip[yolov3_gen.prototext.txt]",
  755. "format": "Caffe v2",
  756. "link": "https://github.com/lutzroeder/netron/issues/276"
  757. },
  758. {
  759. "type": "caffe",
  760. "target": "yolov3-tiny.prototxt",
  761. "source": "https://raw.githubusercontent.com/eric612/MobileNet-YOLO/master/models/darknet_yolov3/yolov3-tiny.prototxt",
  762. "format": "Caffe v2",
  763. "link": "https://github.com/eric612/MobileNet-YOLO/tree/master/models/darknet_yolov3"
  764. },
  765. {
  766. "type": "caffe",
  767. "target": "yolov3-spp.prototxt",
  768. "source": "https://raw.githubusercontent.com/eric612/MobileNet-YOLO/master/models/darknet_yolov3/yolov3-spp.prototxt",
  769. "format": "Caffe v2",
  770. "link": "https://github.com/eric612/MobileNet-YOLO/tree/master/models/darknet_yolov3"
  771. },
  772. {
  773. "type": "caffe",
  774. "target": "zynqnet.prototxt",
  775. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/zynqnet.prototxt",
  776. "format": "Caffe v2",
  777. "link": "https://github.com/cwlacewe/netscope"
  778. },
  779. {
  780. "type": "caffe2",
  781. "target": "bvlc_alexnet/init_net.pb,bvlc_alexnet/predict_net.pbtxt",
  782. "source": "https://github.com/lutzroeder/netron/files/11943990/bvlc_alexnet.zip[init_net.pb,predict_net.pbtxt]",
  783. "format": "Caffe2",
  784. "link": "https://github.com/lutzroeder/netron/issues/1116"
  785. },
  786. {
  787. "type": "caffe2",
  788. "target": "bvlc_googlenet/predict_net.pb,bvlc_googlenet/init_net.pb",
  789. "source": "https://github.com/facebookarchive/models/raw/master/bvlc_googlenet/predict_net.pb,https://github.com/facebookarchive/models/raw/master/bvlc_googlenet/init_net.pb",
  790. "format": "Caffe2",
  791. "link": "https://github.com/caffe2/models"
  792. },
  793. {
  794. "type": "caffe2",
  795. "target": "FBNet-A-int8/model.pbtxt,FBNet-A-int8/model_init.pb",
  796. "source": "https://dl.fbaipublicfiles.com/fbnet/models/FBNet_caffe2.zip[FBNet/FBNet-A/int8/model.pbtxt,FBNet/FBNet-A/int8/model_init.pb]",
  797. "format": "Caffe2",
  798. "tags": "quantization",
  799. "link": "https://github.com/facebookresearch/mobile-vision"
  800. },
  801. {
  802. "type": "caffe2",
  803. "target": "generalized_rcnn/net.pbtxt",
  804. "source": "https://github.com/lutzroeder/netron/files/2801714/net.pbtxt.txt",
  805. "format": "Caffe2",
  806. "tags": "skip-render",
  807. "link": "https://github.com/lutzroeder/netron/issues/223"
  808. },
  809. {
  810. "type": "caffe2",
  811. "target": "generalized_rcnn/predict_net.pbtxt",
  812. "source": "https://github.com/lutzroeder/netron/files/2802044/predict_net.pbtxt.txt",
  813. "format": "Caffe2",
  814. "link": "https://github.com/lutzroeder/netron/issues/223"
  815. },
  816. {
  817. "type": "caffe2",
  818. "target": "inception_v2/predict_net.pb,inception_v2/init_net.pb",
  819. "source": "https://github.com/facebookarchive/models/raw/master/inception_v2/predict_net.pb,https://github.com/facebookarchive/models/raw/master/inception_v2/init_net.pb",
  820. "format": "Caffe2",
  821. "link": "https://github.com/caffe2/models"
  822. },
  823. {
  824. "type": "caffe2",
  825. "target": "lenet/predict_net.pbtxt,lenet/init_net.pbtxt",
  826. "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",
  827. "format": "Caffe2",
  828. "link": "https://github.com/jolibrain/deepdetect/tree/master/templates/caffe2"
  829. },
  830. {
  831. "type": "caffe2",
  832. "target": "mask_rcnn_2go/model.pbtxt",
  833. "source": "https://raw.githubusercontent.com/caffe2/models/master/mask_rcnn_2go/model/fp32/model.pbtxt",
  834. "format": "Caffe2",
  835. "link": "https://github.com/lutzroeder/netron/issues/168"
  836. },
  837. {
  838. "type": "caffe2",
  839. "target": "mobilenet_v2/predict_net.pb,mobilenet_v2/init_net.pb",
  840. "source": "https://github.com/facebookarchive/models/raw/master/mobilenet_v2/predict_net.pb,https://github.com/facebookarchive/models/raw/master/mobilenet_v2/init_net.pb",
  841. "format": "Caffe2",
  842. "link": "https://github.com/caffe2/models"
  843. },
  844. {
  845. "type": "caffe2",
  846. "target": "mobilenet_v2/predict_net.pb",
  847. "source": "https://github.com/facebookarchive/models/raw/master/mobilenet_v2/predict_net.pb",
  848. "format": "Caffe2",
  849. "link": "https://github.com/caffe2/models"
  850. },
  851. {
  852. "type": "caffe2",
  853. "target": "while_onnx/predict_net.pb,while_onnx/init_net.pb",
  854. "source": "https://github.com/user-attachments/files/19404049/while_onnx.zip[predict_net.pb,init_net.pb]",
  855. "format": "Caffe2",
  856. "link": "https://github.com/lutzroeder/netron/issues/168"
  857. },
  858. {
  859. "type": "caffe2",
  860. "target": "resnet50/predict_net.pb,resnet50/init_net.pb",
  861. "source": "https://github.com/facebookarchive/models/raw/master/resnet50/predict_net.pb,https://github.com/facebookarchive/models/raw/master/resnet50/init_net.pb",
  862. "format": "Caffe2",
  863. "link": "https://github.com/caffe2/models"
  864. },
  865. {
  866. "type": "caffe2",
  867. "target": "squeezenet/squeezenet.pb,squeezenet/init_net.pb",
  868. "source": "https://github.com/facebookarchive/models/raw/master/squeezenet/predict_net.pb,https://github.com/facebookarchive/models/raw/master/squeezenet/init_net.pb",
  869. "format": "Caffe2",
  870. "link": "https://github.com/caffe2/models"
  871. },
  872. {
  873. "type": "catboost",
  874. "target": "iris_model.cbm",
  875. "source": "https://github.com/lutzroeder/netron/files/15046507/iris_model.cbm.zip[iris_model.cbm]",
  876. "format": "CatBoost",
  877. "error": "'catboost.core.CatBoostClassifier.load_model' not implemented.",
  878. "link": "https://github.com/lutzroeder/netron/issues/1263"
  879. },
  880. {
  881. "type": "catboost",
  882. "target": "model.cbm",
  883. "source": "https://github.com/lutzroeder/netron/files/15046506/model.cbm.zip[model.cbm]",
  884. "format": "CatBoost",
  885. "error": "'catboost.core.CatBoostClassifier.load_model' not implemented.",
  886. "link": "https://github.com/lutzroeder/netron/issues/1263"
  887. },
  888. {
  889. "type": "catboost",
  890. "target": "model.pkl",
  891. "source": "https://github.com/lutzroeder/netron/files/15046504/model.pkl.zip[model.pkl]",
  892. "format": "Pickle",
  893. "error": "Unsupported Pickle type 'autogluon.tabular.models.catboost.catboost_model.CatBoostModel'.",
  894. "link": "https://github.com/lutzroeder/netron/issues/1263"
  895. },
  896. {
  897. "type": "catboost",
  898. "target": "numeric_only_model.cbm",
  899. "source": "https://github.com/lutzroeder/netron/files/15046509/numeric_only_model.cbm.zip[numeric_only_model.cbm]",
  900. "format": "CatBoost",
  901. "error": "'catboost.core.CatBoostClassifier.load_model' not implemented.",
  902. "link": "https://github.com/lutzroeder/netron/issues/1263"
  903. },
  904. {
  905. "type": "circle",
  906. "target": "ArgMax_001",
  907. "source": "https://github.com/lutzroeder/netron/files/7489768/circle_model_samples.zip[ArgMax_001.circle]",
  908. "format": "Circle v0",
  909. "link": "https://github.com/lutzroeder/netron/issues/790"
  910. },
  911. {
  912. "type": "circle",
  913. "target": "FullyConnected_002.circle",
  914. "source": "https://github.com/lutzroeder/netron/files/7489768/circle_model_samples.zip[FullyConnected_002.circle]",
  915. "format": "Circle v0",
  916. "link": "https://github.com/lutzroeder/netron/issues/790"
  917. },
  918. {
  919. "type": "cntk",
  920. "target": "01_OneHidden.dnn",
  921. "source": "https://raw.githubusercontent.com/Microsoft/CNTK/master/Tests/UnitTests/NetworkTests/Models/01_OneHidden.dnn",
  922. "format": "CNTK v1.18",
  923. "link": "https://github.com/Microsoft/CNTK"
  924. },
  925. {
  926. "type": "cntk",
  927. "target": "Bean.cntk",
  928. "source": "https://media.githubusercontent.com/media/Microsoft/ELL-models/master/models/ILSVRC2012/Bean/Bean.cntk.zip[Bean.cntk]",
  929. "format": "CNTK v2",
  930. "link": "https://github.com/Microsoft/ELL-models"
  931. },
  932. {
  933. "type": "cntk",
  934. "target": "cifar10.pretrained.cmf",
  935. "source": "https://raw.githubusercontent.com/Microsoft/CNTK/master/Tutorials/ImageHandsOn/cifar10.pretrained.cmf",
  936. "format": "CNTK v1.14",
  937. "link": "https://github.com/Microsoft/CNTK"
  938. },
  939. {
  940. "type": "cntk",
  941. "target": "cifar10.ResNet.cmf",
  942. "source": "https://raw.githubusercontent.com/Microsoft/CNTK/master/Tutorials/ImageHandsOn/cifar10.ResNet.cmf",
  943. "format": "CNTK v1.10",
  944. "link": "https://github.com/Microsoft/CNTK"
  945. },
  946. {
  947. "type": "cntk",
  948. "target": "cntkSpeechFF.dnn",
  949. "source": "https://github.com/lutzroeder/netron/files/3243442/cntkSpeechFF.dnn.zip[cntkSpeechFF.dnn]",
  950. "format": "CNTK v1.31",
  951. "link": "https://github.com/lutzroeder/netron/issues/153"
  952. },
  953. {
  954. "type": "cntk",
  955. "target": "d_I160x160x3CMCMCMCMCMCMC1AS.model",
  956. "source": "https://media.githubusercontent.com/media/Microsoft/ELL-models/master/models/ILSVRC2012/d_I160x160x3CMCMCMCMCMCMC1AS/d_I160x160x3CMCMCMCMCMCMC1AS.cntk.zip[d_I160x160x3CMCMCMCMCMCMC1AS.cntk]",
  957. "format": "CNTK v2",
  958. "link": "https://github.com/Microsoft/ELL-models/tree/master/models/ILSVRC2012/d_I160x160x3CMCMCMCMCMCMC1AS"
  959. },
  960. {
  961. "type": "cntk",
  962. "target": "DRNN.model",
  963. "source": "https://github.com/lutzroeder/netron/files/9128732/DRNN.model.zip[DRNN.model]",
  964. "format": "CNTK v2",
  965. "assert": "model.modules[0].nodes[3].type.name == 'Convolution'",
  966. "link": "https://github.com/lutzroeder/netron/issues/153"
  967. },
  968. {
  969. "type": "cntk",
  970. "target": "initial_policy_network.dnn",
  971. "source": "https://raw.githubusercontent.com/Microsoft/CNTK/master/bindings/python/cntk/contrib/deeprl/tests/data/initial_policy_network.dnn",
  972. "format": "CNTK v2",
  973. "link": "https://github.com/Microsoft/CNTK"
  974. },
  975. {
  976. "type": "cntk",
  977. "target": "ResNet20_CIFAR10_DataAug.dnn",
  978. "source": "https://raw.githubusercontent.com/Microsoft/CNTK/master/Tests/UnitTests/NetworkTests/Models/ResNet20_CIFAR10_DataAug.dnn",
  979. "format": "CNTK v1.18",
  980. "link": "https://github.com/Microsoft/CNTK"
  981. },
  982. {
  983. "type": "cntk",
  984. "target": "ResNet20_CIFAR10_CNTK.model",
  985. "source": "https://github.com/lutzroeder/netron/files/9128733/ResNet20_CIFAR10_CNTK.model.zip[ResNet20_CIFAR10_CNTK.model]",
  986. "format": "CNTK v2",
  987. "link": "https://github.com/lutzroeder/netron/issues/153"
  988. },
  989. {
  990. "type": "cntk",
  991. "target": "ResNet110_CIFAR10_CNTK.model",
  992. "source": "https://github.com/lutzroeder/netron/files/9128736/ResNet110_CIFAR10_CNTK.model.zip[ResNet110_CIFAR10_CNTK.model]",
  993. "format": "CNTK v2",
  994. "link": "https://github.com/lutzroeder/netron/issues/153"
  995. },
  996. {
  997. "type": "cntk",
  998. "target": "slu.forward.backward.cmf",
  999. "source": "https://raw.githubusercontent.com/Microsoft/CNTK/master/Tutorials/SLUHandsOn/slu.forward.backward.cmf",
  1000. "format": "CNTK v1.14",
  1001. "link": "https://github.com/Microsoft/CNTK"
  1002. },
  1003. {
  1004. "type": "cntk",
  1005. "target": "slu.forward.cmf",
  1006. "source": "https://raw.githubusercontent.com/Microsoft/CNTK/master/Tutorials/SLUHandsOn/slu.forward.cmf",
  1007. "format": "CNTK v1.14",
  1008. "link": "https://github.com/Microsoft/CNTK"
  1009. },
  1010. {
  1011. "type": "cntk",
  1012. "target": "slu.forward.nobn.cmf",
  1013. "source": "https://raw.githubusercontent.com/Microsoft/CNTK/master/Tutorials/SLUHandsOn/slu.forward.nobn.cmf",
  1014. "format": "CNTK v1.14",
  1015. "link": "https://github.com/Microsoft/CNTK"
  1016. },
  1017. {
  1018. "type": "cntk",
  1019. "target": "slu.forward.lookahead.cmf",
  1020. "source": "https://raw.githubusercontent.com/Microsoft/CNTK/master/Tutorials/SLUHandsOn/slu.forward.lookahead.cmf",
  1021. "format": "CNTK v1.14",
  1022. "link": "https://github.com/Microsoft/CNTK"
  1023. },
  1024. {
  1025. "type": "cntk",
  1026. "target": "tutorial_103b_mnist.model",
  1027. "source": "https://github.com/lutzroeder/netron/files/2591620/tutorial_models.zip[tutorial_103b_mnist.model]",
  1028. "format": "CNTK v2",
  1029. "link": "https://github.com/lutzroeder/netron/issues/153"
  1030. },
  1031. {
  1032. "type": "cntk",
  1033. "target": "tutorial_103c_mnist.model",
  1034. "source": "https://github.com/lutzroeder/netron/files/2591620/tutorial_models.zip[tutorial_103c_mnist.model]",
  1035. "format": "CNTK v2",
  1036. "link": "https://github.com/lutzroeder/netron/issues/153"
  1037. },
  1038. {
  1039. "type": "cntk",
  1040. "target": "tutorial_103d_mnist.model",
  1041. "source": "https://github.com/lutzroeder/netron/files/2591620/tutorial_models.zip[tutorial_103d_mnist.model]",
  1042. "format": "CNTK v2",
  1043. "link": "https://github.com/lutzroeder/netron/issues/153"
  1044. },
  1045. {
  1046. "type": "cntk",
  1047. "target": "tutorial_106a_lstm.model",
  1048. "source": "https://github.com/lutzroeder/netron/files/2591620/tutorial_models.zip[tutorial_106a_lstm.model]",
  1049. "format": "CNTK v2",
  1050. "link": "https://github.com/lutzroeder/netron/issues/153"
  1051. },
  1052. {
  1053. "type": "cntk",
  1054. "target": "VDSR.model",
  1055. "source": "https://github.com/lutzroeder/netron/files/9128737/VDSR.model.zip[VDSR.model]",
  1056. "format": "CNTK v2",
  1057. "link": "https://github.com/lutzroeder/netron/issues/153"
  1058. },
  1059. {
  1060. "type": "coreml",
  1061. "target": "accumulator_example_state_model.mlpackage.zip",
  1062. "source": "https://github.com/user-attachments/files/15793987/accumulator_example_state_model.mlpackage.zip",
  1063. "format": "Core ML Package v9",
  1064. "link": "https://github.com/lutzroeder/netron/issues/1291"
  1065. },
  1066. {
  1067. "type": "coreml",
  1068. "target": "combined_adpater_models.mlpackage.zip",
  1069. "source": "https://github.com/user-attachments/files/15793898/combined_adpater_models.mlpackage.zip",
  1070. "format": "Core ML Package v9",
  1071. "link": "https://github.com/lutzroeder/netron/issues/1290"
  1072. },
  1073. {
  1074. "type": "coreml",
  1075. "target": "DeepLabV3.pb",
  1076. "source": "https://docs-assets.developer.apple.com/coreml/models/Image/ImageSegmentation/DeepLabV3/DeepLabV3.mlmodel",
  1077. "format": "Core ML v3",
  1078. "link": "https://developer.apple.com/machine-learning/models"
  1079. },
  1080. {
  1081. "type": "coreml",
  1082. "target": "DocumentClassification.mlmodel",
  1083. "source": "https://raw.githubusercontent.com/toddkramer/DocumentClassifier/master/Sources/DocumentClassification.mlmodel",
  1084. "format": "Core ML v1",
  1085. "link": "https://github.com/toddkramer/DocumentClassifier"
  1086. },
  1087. {
  1088. "type": "coreml",
  1089. "target": "EfficientNetB0.mlpackage,EfficientNetB0.mlpackage/Manifest.json,EfficientNetB0.mlpackage/Data/com.apple.CoreML/model.mlmodel,EfficientNetB0.mlpackage/Data/com.apple.CoreML/weights/weight.bin",
  1090. "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]",
  1091. "format": "Core ML Package v6",
  1092. "link": "https://github.com/lutzroeder/netron/issues/193"
  1093. },
  1094. {
  1095. "type": "coreml",
  1096. "target": "EfficientNetB0.mlpackage.zip",
  1097. "source": "https://github.com/lutzroeder/netron/files/6636195/EfficientNetB0.mlpackage.zip",
  1098. "format": "Core ML Package v6",
  1099. "link": "https://github.com/lutzroeder/netron/issues/193"
  1100. },
  1101. {
  1102. "type": "coreml",
  1103. "target": "EnvSceneClassification.mlmodel",
  1104. "source": "https://raw.githubusercontent.com/anujdutt9/iOS-Audio-Classification/cdf5b72dc351a83168369d0afbd0eeba9ecae448/RealTimeSoundClassifier/RealTimeSoundClassifier/EnvSceneClassification.mlmodel",
  1105. "format": "Core ML v3",
  1106. "tags": "quantization",
  1107. "link": "https://github.com/anujdutt9/iOS-Audio-Classification"
  1108. },
  1109. {
  1110. "type": "coreml",
  1111. "target": "Exermote.mlmodel",
  1112. "source": "https://github.com/lutzroeder/netron/files/13663126/Exermote.mlmodel.zip[Exermote.mlmodel]",
  1113. "format": "Core ML v1",
  1114. "tags": "validation",
  1115. "link": "https://github.com/lutzroeder/netron/issues/193"
  1116. },
  1117. {
  1118. "type": "coreml",
  1119. "target": "Exermote.pbtxt",
  1120. "source": "https://github.com/lutzroeder/netron/files/13663128/Exermote.pbtxt.zip[Exermote.pbtxt]",
  1121. "format": "Core ML v1",
  1122. "link": "https://github.com/lutzroeder/netron/issues/193"
  1123. },
  1124. {
  1125. "type": "coreml",
  1126. "target": "faces_model.mlmodel",
  1127. "source": "https://github.com/NovaTecConsulting/FaceRecognition-in-ARKit/files/1526806/faces_model.mlmodel.zip[faces_model.mlmodel]",
  1128. "format": "Core ML v1",
  1129. "link": "https://github.com/NovaTecConsulting/FaceRecognition-in-ARKit/issues/3"
  1130. },
  1131. {
  1132. "type": "coreml",
  1133. "target": "float16.mlmodel",
  1134. "source": "https://github.com/lutzroeder/netron/files/2382815/model.zip[model.mlmodel]",
  1135. "format": "Core ML v2",
  1136. "link": "https://github.com/lutzroeder/netron/issues/149"
  1137. },
  1138. {
  1139. "type": "coreml",
  1140. "target": "FNS-Candy.mlmodel",
  1141. "source": "https://raw.githubusercontent.com/ileafsolutions/StyleArt/master/StyleArt/CoreMLModels/FNS-Candy.mlmodel",
  1142. "link": "https://github.com/ileafsolutions/StyleArt"
  1143. },
  1144. {
  1145. "type": "coreml",
  1146. "target": "food.mlmodel",
  1147. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food.mlmodel",
  1148. "format": "Core ML v1",
  1149. "link": "https://github.com/kingreza/quantization"
  1150. },
  1151. {
  1152. "type": "coreml",
  1153. "target": "food_kmeans_1.mlmodel",
  1154. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_kmeans_1.mlmodel",
  1155. "format": "Core ML v3",
  1156. "tags": "quantization",
  1157. "link": "https://github.com/kingreza/quantization"
  1158. },
  1159. {
  1160. "type": "coreml",
  1161. "target": "food_kmeans_2.mlmodel",
  1162. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_kmeans_2.mlmodel",
  1163. "format": "Core ML v3",
  1164. "tags": "quantization",
  1165. "link": "https://github.com/kingreza/quantization"
  1166. },
  1167. {
  1168. "type": "coreml",
  1169. "target": "food_kmeans_3.mlmodel",
  1170. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_kmeans_3.mlmodel",
  1171. "format": "Core ML v3",
  1172. "tags": "quantization",
  1173. "link": "https://github.com/kingreza/quantization"
  1174. },
  1175. {
  1176. "type": "coreml",
  1177. "target": "food_kmeans_4.mlmodel",
  1178. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_kmeans_4.mlmodel",
  1179. "format": "Core ML v3",
  1180. "tags": "quantization",
  1181. "link": "https://github.com/kingreza/quantization"
  1182. },
  1183. {
  1184. "type": "coreml",
  1185. "target": "food_kmeans_5.mlmodel",
  1186. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_kmeans_5.mlmodel",
  1187. "format": "Core ML v3",
  1188. "tags": "quantization",
  1189. "link": "https://github.com/kingreza/quantization"
  1190. },
  1191. {
  1192. "type": "coreml",
  1193. "target": "food_kmeans_6.mlmodel",
  1194. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_kmeans_6.mlmodel",
  1195. "format": "Core ML v3",
  1196. "tags": "quantization",
  1197. "link": "https://github.com/kingreza/quantization"
  1198. },
  1199. {
  1200. "type": "coreml",
  1201. "target": "food_kmeans_7.mlmodel",
  1202. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_kmeans_7.mlmodel",
  1203. "format": "Core ML v3",
  1204. "tags": "quantization",
  1205. "link": "https://github.com/kingreza/quantization"
  1206. },
  1207. {
  1208. "type": "coreml",
  1209. "target": "food_kmeans_8.mlmodel",
  1210. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_kmeans_8.mlmodel",
  1211. "format": "Core ML v3",
  1212. "tags": "quantization",
  1213. "link": "https://github.com/kingreza/quantization"
  1214. },
  1215. {
  1216. "type": "coreml",
  1217. "target": "food_kmeans_16.mlmodel",
  1218. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_kmeans_16.mlmodel",
  1219. "format": "Core ML v2",
  1220. "link": "https://github.com/kingreza/quantization"
  1221. },
  1222. {
  1223. "type": "coreml",
  1224. "target": "food_linear_1.mlmodel",
  1225. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_1.mlmodel",
  1226. "format": "Core ML v3",
  1227. "tags": "quantization",
  1228. "link": "https://github.com/kingreza/quantization"
  1229. },
  1230. {
  1231. "type": "coreml",
  1232. "target": "food_linear_2.mlmodel",
  1233. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_2.mlmodel",
  1234. "format": "Core ML v3",
  1235. "tags": "quantization",
  1236. "link": "https://github.com/kingreza/quantization"
  1237. },
  1238. {
  1239. "type": "coreml",
  1240. "target": "food_linear_3.mlmodel",
  1241. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_3.mlmodel",
  1242. "format": "Core ML v3",
  1243. "tags": "quantization",
  1244. "link": "https://github.com/kingreza/quantization"
  1245. },
  1246. {
  1247. "type": "coreml",
  1248. "target": "food_linear_4.mlmodel",
  1249. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_4.mlmodel",
  1250. "format": "Core ML v3",
  1251. "tags": "quantization",
  1252. "link": "https://github.com/kingreza/quantization"
  1253. },
  1254. {
  1255. "type": "coreml",
  1256. "target": "food_linear_5.mlmodel",
  1257. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_5.mlmodel",
  1258. "format": "Core ML v3",
  1259. "tags": "quantization",
  1260. "link": "https://github.com/kingreza/quantization"
  1261. },
  1262. {
  1263. "type": "coreml",
  1264. "target": "food_linear_6.mlmodel",
  1265. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_6.mlmodel",
  1266. "format": "Core ML v3",
  1267. "tags": "quantization",
  1268. "link": "https://github.com/kingreza/quantization"
  1269. },
  1270. {
  1271. "type": "coreml",
  1272. "target": "food_linear_7.mlmodel",
  1273. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_7.mlmodel",
  1274. "format": "Core ML v3",
  1275. "tags": "quantization",
  1276. "link": "https://github.com/kingreza/quantization"
  1277. },
  1278. {
  1279. "type": "coreml",
  1280. "target": "food_linear_8.mlmodel",
  1281. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_8.mlmodel",
  1282. "format": "Core ML v3",
  1283. "tags": "quantization",
  1284. "link": "https://github.com/kingreza/quantization"
  1285. },
  1286. {
  1287. "type": "coreml",
  1288. "target": "food_linear_16.mlmodel",
  1289. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_16.mlmodel",
  1290. "format": "Core ML v2",
  1291. "link": "https://github.com/kingreza/quantization"
  1292. },
  1293. {
  1294. "type": "coreml",
  1295. "target": "food_linear_lut_1.mlmodel",
  1296. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_lut_1.mlmodel",
  1297. "format": "Core ML v3",
  1298. "tags": "quantization",
  1299. "link": "https://github.com/kingreza/quantization"
  1300. },
  1301. {
  1302. "type": "coreml",
  1303. "target": "food_linear_lut_2.mlmodel",
  1304. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_lut_2.mlmodel",
  1305. "format": "Core ML v3",
  1306. "tags": "quantization",
  1307. "link": "https://github.com/kingreza/quantization"
  1308. },
  1309. {
  1310. "type": "coreml",
  1311. "target": "food_linear_lut_3.mlmodel",
  1312. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_lut_3.mlmodel",
  1313. "format": "Core ML v3",
  1314. "tags": "quantization",
  1315. "link": "https://github.com/kingreza/quantization"
  1316. },
  1317. {
  1318. "type": "coreml",
  1319. "target": "food_linear_lut_4.mlmodel",
  1320. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_lut_4.mlmodel",
  1321. "format": "Core ML v3",
  1322. "tags": "quantization",
  1323. "link": "https://github.com/kingreza/quantization"
  1324. },
  1325. {
  1326. "type": "coreml",
  1327. "target": "food_linear_lut_5.mlmodel",
  1328. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_lut_5.mlmodel",
  1329. "format": "Core ML v3",
  1330. "tags": "quantization",
  1331. "link": "https://github.com/kingreza/quantization"
  1332. },
  1333. {
  1334. "type": "coreml",
  1335. "target": "food_linear_lut_6.mlmodel",
  1336. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_lut_6.mlmodel",
  1337. "format": "Core ML v3",
  1338. "tags": "quantization",
  1339. "link": "https://github.com/kingreza/quantization"
  1340. },
  1341. {
  1342. "type": "coreml",
  1343. "target": "food_linear_lut_7.mlmodel",
  1344. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_lut_7.mlmodel",
  1345. "format": "Core ML v3",
  1346. "tags": "quantization",
  1347. "link": "https://github.com/kingreza/quantization"
  1348. },
  1349. {
  1350. "type": "coreml",
  1351. "target": "food_linear_lut_8.mlmodel",
  1352. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_lut_8.mlmodel",
  1353. "format": "Core ML v3",
  1354. "tags": "quantization",
  1355. "link": "https://github.com/kingreza/quantization"
  1356. },
  1357. {
  1358. "type": "coreml",
  1359. "target": "food_linear_lut_16.mlmodel",
  1360. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_lut_16.mlmodel",
  1361. "format": "Core ML v2",
  1362. "link": "https://github.com/kingreza/quantization"
  1363. },
  1364. {
  1365. "type": "coreml",
  1366. "target": "FrameGRUModel.mlpackage.zip",
  1367. "source": "https://github.com/lutzroeder/netron/files/13643385/FrameGRUModel.mlpackage.zip",
  1368. "format": "Core ML Package v4",
  1369. "link": "https://github.com/lutzroeder/netron/issues/193"
  1370. },
  1371. {
  1372. "type": "coreml",
  1373. "target": "GoogLeNetPlaces.mlmodel",
  1374. "source": "https://docs-assets.developer.apple.com/coreml/models/GoogLeNetPlaces.mlmodel"
  1375. },
  1376. {
  1377. "type": "coreml",
  1378. "target": "HED_so3.mlmodel",
  1379. "source": "https://raw.githubusercontent.com/s1ddok/HED-CoreML/master/HED-CoreML/Models/HED_so3.mlmodel",
  1380. "link": "https://github.com/s1ddok/HED-CoreML"
  1381. },
  1382. {
  1383. "type": "coreml",
  1384. "target": "imdb_lstm.mlmodel",
  1385. "source": "https://github.com/lutzroeder/netron/files/2591614/imdb_lstm.mlmodel.zip[imdb_lstm.mlmodel]",
  1386. "format": "Core ML v1",
  1387. "link": "https://github.com/lutzroeder/netron/issues/149"
  1388. },
  1389. {
  1390. "type": "coreml",
  1391. "target": "imdb_bidirectional_lstm.mlmodel",
  1392. "source": "https://github.com/lutzroeder/netron/files/2591615/imdb_bidirectional_lstm.mlmodel.zip[imdb_bidirectional_lstm.mlmodel]",
  1393. "format": "Core ML v1",
  1394. "link": "https://github.com/lutzroeder/netron/issues/149"
  1395. },
  1396. {
  1397. "type": "coreml",
  1398. "target": "Inceptionv3.mlmodel",
  1399. "source": "https://docs-assets.developer.apple.com/coreml/models/Inceptionv3.mlmodel"
  1400. },
  1401. {
  1402. "type": "coreml",
  1403. "target": "LinkedUpdatableTinyDrawingClassifier.mlmodel",
  1404. "source": "https://github.com/lutzroeder/netron/files/4500539/LinkedUpdatableTinyDrawingClassifier.zip[LinkedUpdatableTinyDrawingClassifier.mlmodel]",
  1405. "format": "Core ML v4",
  1406. "link": "https://github.com/lutzroeder/netron/issues/193"
  1407. },
  1408. {
  1409. "type": "coreml",
  1410. "target": "lstm_model.mlpackage.zip",
  1411. "source": "https://github.com/lutzroeder/netron/files/7406821/lstm_model.mlpackage.zip",
  1412. "format": "Core ML Package v6",
  1413. "link": "https://github.com/lutzroeder/netron/issues/832"
  1414. },
  1415. {
  1416. "type": "coreml",
  1417. "target": "MessageClassifier.mlmodel",
  1418. "source": "https://raw.githubusercontent.com/llSourcell/A_guide_to_coreML/master/MessageClassifier.mlmodel",
  1419. "link": "https://github.com/llSourcell/A_guide_to_coreML"
  1420. },
  1421. {
  1422. "type": "coreml",
  1423. "target": "MNIST.mlmodel",
  1424. "source": "https://github.com/ph1ps/MNIST-CoreML/raw/master/MNISTPrediction/MNIST.mlmodel",
  1425. "link": "https://github.com/SwiftBrain/awesome-CoreML-models"
  1426. },
  1427. {
  1428. "type": "coreml",
  1429. "target": "MNISTClassifier.mlmodel",
  1430. "source": "https://docs-assets.developer.apple.com/coreml/models/Image/DrawingClassification/MNISTClassifier/MNISTClassifier.mlmodel",
  1431. "format": "Core ML v1",
  1432. "link": "https://developer.apple.com/machine-learning/models"
  1433. },
  1434. {
  1435. "type": "coreml",
  1436. "target": "MobileNet.mlmodel",
  1437. "source": "https://docs-assets.developer.apple.com/coreml/models/MobileNet.mlmodel"
  1438. },
  1439. {
  1440. "type": "coreml",
  1441. "target": "mobilenet_v2_1.4_224.mlmodel",
  1442. "source": "https://github.com/tf-coreml/tf-coreml/files/2575260/mobilenet_v2_1.4_224.mlmodel.zip[mobilenet_v2_1.4_224.mlmodel]",
  1443. "format": "Core ML v1",
  1444. "link": "https://github.com/tf-coreml/tf-coreml/issues/252"
  1445. },
  1446. {
  1447. "type": "coreml",
  1448. "target": "mobilenet_v2_not_working_netron.mlpackage.zip",
  1449. "source": "https://github.com/lutzroeder/netron/files/7197761/mobilenet_v2_not_working_netron.mlpackage.zip",
  1450. "format": "Core ML Package v6",
  1451. "link": "https://github.com/lutzroeder/netron/issues/812"
  1452. },
  1453. {
  1454. "type": "coreml",
  1455. "target": "MovieRecommender.mlmodel",
  1456. "source": "https://github.com/user-attachments/files/15949637/MovieRecommender.mlmodel.zip[MovieRecommender.mlmodel]",
  1457. "format": "Core ML v4",
  1458. "link": "https://github.com/lutzroeder/netron/issues/193"
  1459. },
  1460. {
  1461. "type": "coreml",
  1462. "target": "NamesDT.mlmodel",
  1463. "source": "https://github.com/cocoa-ai/NamesCoreMLDemo/raw/master/Names/Resources/NamesDT.mlmodel",
  1464. "link": "https://github.com/SwiftBrain/awesome-CoreML-models"
  1465. },
  1466. {
  1467. "type": "coreml",
  1468. "target": "onehot_simple.mlmodel",
  1469. "source": "https://raw.githubusercontent.com/onnx/onnxmltools/master/tests/data/onehot_simple.mlmodel",
  1470. "link": "https://github.com/onnx/onnxmltools/tree/master/tests/data"
  1471. },
  1472. {
  1473. "type": "coreml",
  1474. "target": "PoseEstimationForMobile.mlmodel",
  1475. "source": "https://raw.githubusercontent.com/edvardHua/PoseEstimationForMobile/master/release/cpm_model/model.mlmodel",
  1476. "format": "Core ML v1",
  1477. "link": "https://github.com/edvardHua/PoseEstimationForMobile"
  1478. },
  1479. {
  1480. "type": "coreml",
  1481. "target": "ProductTagger.mlmodel",
  1482. "source": "https://raw.githubusercontent.com/aidev1065/CustomEntityRecognition/master/ProductTagger.mlmodel",
  1483. "format": "Core ML v3",
  1484. "link": "https://github.com/aidev1065/CustomEntityRecognition"
  1485. },
  1486. {
  1487. "type": "coreml",
  1488. "target": "ProgrammingLanguageClassifier.mlmodel",
  1489. "source": "https://raw.githubusercontent.com/Flight-School/Programming-Language-Classifier/master/ProgrammingLanguageClassifier.mlmodel",
  1490. "format": "Core ML v3",
  1491. "link": "https://github.com/Flight-School/Programming-Language-Classifier"
  1492. },
  1493. {
  1494. "type": "coreml",
  1495. "target": "ReadTheRoom.mlmodel",
  1496. "source": "https://raw.githubusercontent.com/CapTechMobile/blogfest-coreml/d8e8c15d33e9591c9e81cb18e5ea4b2fb6972503/ReadTheRoom/ReadTheRoom.mlmodel",
  1497. "format": "Core ML v4",
  1498. "tags": "quantization",
  1499. "link": "https://github.com/CapTechMobile/blogfest-coreml"
  1500. },
  1501. {
  1502. "type": "coreml",
  1503. "target": "SentimentPolarity.mlmodel",
  1504. "source": "https://github.com/cocoa-ai/SentimentCoreMLDemo/raw/master/SentimentPolarity/Resources/SentimentPolarity.mlmodel",
  1505. "link": "https://github.com/SwiftBrain/awesome-CoreML-models"
  1506. },
  1507. {
  1508. "type": "coreml",
  1509. "target": "sentiment_model.mlmodel",
  1510. "source": "https://github.com/lutzroeder/netron/files/12569013/sentiment_model.mlmodel.zip[sentiment_model.mlmodel]",
  1511. "format": "Core ML v1",
  1512. "link": "https://github.com/lutzroeder/netron/issues/193"
  1513. },
  1514. {
  1515. "type": "coreml",
  1516. "target": "simple_activation_quantized_model.mlpackage.zip",
  1517. "source": "https://github.com/lutzroeder/netron/files/12568886/simple_activation_quantized_model.mlpackage.zip",
  1518. "format": "Core ML Package v8",
  1519. "link": "https://github.com/lutzroeder/netron/issues/193"
  1520. },
  1521. {
  1522. "type": "coreml",
  1523. "target": "SqueezeNet.mlmodel",
  1524. "source": "https://github.com/user-attachments/files/15855618/SqueezeNet.mlmodel.zip[SqueezeNet.mlmodel]",
  1525. "format": "Core ML v1",
  1526. "link": "https://github.com/lutzroeder/netron/issues/193"
  1527. },
  1528. {
  1529. "type": "coreml",
  1530. "target": "SqueezeNetFP16.mlmodel",
  1531. "source": "https://github.com/user-attachments/files/15855621/SqueezeNetFP16.mlmodel.zip[SqueezeNetFP16.mlmodel]",
  1532. "format": "Core ML v2",
  1533. "link": "https://github.com/lutzroeder/netron/issues/193"
  1534. },
  1535. {
  1536. "type": "coreml",
  1537. "target": "SqueezeNetInt8LUT.mlmodel",
  1538. "source": "https://github.com/user-attachments/files/15855649/SqueezeNetInt8LUT.mlmodel.zip[SqueezeNetInt8LUT.mlmodel]",
  1539. "format": "Core ML v3",
  1540. "tags": "quantization",
  1541. "link": "https://github.com/lutzroeder/netron/issues/193"
  1542. },
  1543. {
  1544. "type": "coreml",
  1545. "target": "test_categorical_imputer.mlmodel",
  1546. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_categorical_imputer.mlmodel]",
  1547. "format": "Core ML v1",
  1548. "link": "https://github.com/lutzroeder/netron/issues/193"
  1549. },
  1550. {
  1551. "type": "coreml",
  1552. "target": "test_keras_embedding_model.mlmodel",
  1553. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_keras_embedding_model.mlmodel]",
  1554. "format": "Core ML v1",
  1555. "link": "https://github.com/lutzroeder/netron/issues/193"
  1556. },
  1557. {
  1558. "type": "coreml",
  1559. "target": "test_linear_regressor.mlmodel",
  1560. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_linear_regressor.mlmodel]",
  1561. "format": "Core ML v1",
  1562. "link": "https://github.com/lutzroeder/netron/issues/193"
  1563. },
  1564. {
  1565. "type": "coreml",
  1566. "target": "test_normalizer_boston.mlmodel",
  1567. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_normalizer_boston.mlmodel]",
  1568. "format": "Core ML v1",
  1569. "link": "https://github.com/lutzroeder/netron/issues/193"
  1570. },
  1571. {
  1572. "type": "coreml",
  1573. "target": "test_normalizer_random.mlmodel",
  1574. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_normalizer_random.mlmodel]",
  1575. "format": "Core ML v1",
  1576. "link": "https://github.com/lutzroeder/netron/issues/193"
  1577. },
  1578. {
  1579. "type": "coreml",
  1580. "target": "test_one_hot_encoder_many_columns.mlmodel",
  1581. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_one_hot_encoder_many_columns.mlmodel]",
  1582. "format": "Core ML v1",
  1583. "link": "https://github.com/lutzroeder/netron/issues/193"
  1584. },
  1585. {
  1586. "type": "coreml",
  1587. "target": "test_one_hot_encoder_one_column_of_several.mlmodel",
  1588. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_one_hot_encoder_one_column_of_several.mlmodel]",
  1589. "format": "Core ML v1",
  1590. "link": "https://github.com/lutzroeder/netron/issues/193"
  1591. },
  1592. {
  1593. "type": "coreml",
  1594. "target": "test_one_hot_encoder_pipeline.mlmodel",
  1595. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_one_hot_encoder_pipeline.mlmodel]",
  1596. "format": "Core ML v1",
  1597. "link": "https://github.com/lutzroeder/netron/issues/193"
  1598. },
  1599. {
  1600. "type": "coreml",
  1601. "target": "test_random_forest_classifier.mlmodel",
  1602. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_random_forest_classifier.mlmodel]",
  1603. "format": "Core ML v1",
  1604. "link": "https://github.com/lutzroeder/netron/issues/193"
  1605. },
  1606. {
  1607. "type": "coreml",
  1608. "target": "test_random_forest_regressor.mlmodel",
  1609. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_random_forest_regressor.mlmodel]",
  1610. "format": "Core ML v1",
  1611. "link": "https://github.com/lutzroeder/netron/issues/193"
  1612. },
  1613. {
  1614. "type": "coreml",
  1615. "target": "test_support_vector_classifier.mlmodel",
  1616. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_support_vector_classifier.mlmodel]",
  1617. "format": "Core ML v1",
  1618. "link": "https://github.com/lutzroeder/netron/issues/193"
  1619. },
  1620. {
  1621. "type": "coreml",
  1622. "target": "test_support_vector_regressor.mlmodel",
  1623. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_support_vector_regressor.mlmodel]",
  1624. "format": "Core ML v1",
  1625. "link": "https://github.com/lutzroeder/netron/issues/193"
  1626. },
  1627. {
  1628. "type": "coreml",
  1629. "target": "test_tree_regressor.mlmodel",
  1630. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_tree_regressor.mlmodel]",
  1631. "format": "Core ML v1",
  1632. "link": "https://github.com/lutzroeder/netron/issues/193"
  1633. },
  1634. {
  1635. "type": "coreml",
  1636. "target": "UpdatableKNN.mlmodel",
  1637. "source": "https://github.com/lutzroeder/netron/files/3424578/UpdatableKNN.zip[UpdatableKNN.mlmodel]",
  1638. "format": "Core ML v4",
  1639. "link": "https://github.com/lutzroeder/netron/issues/193"
  1640. },
  1641. {
  1642. "type": "coreml",
  1643. "target": "UpdatableMNISTDigitClassifier.mlmodel",
  1644. "source": "https://github.com/lutzroeder/netron/files/3424579/UpdatableMNISTDigitClassifier.zip[UpdatableMNISTDigitClassifier.mlmodel]",
  1645. "format": "Core ML v1",
  1646. "link": "https://github.com/lutzroeder/netron/issues/193"
  1647. },
  1648. {
  1649. "type": "coreml",
  1650. "target": "wave.mlmodel",
  1651. "source": "https://raw.githubusercontent.com/UnusualWolf/coreML/master/StyleArt-master/StyleArt/CoreMLModels/wave.mlmodel",
  1652. "format": "Core ML v1",
  1653. "link": "https://github.com/UnusualWolf/coreML"
  1654. },
  1655. {
  1656. "type": "coreml",
  1657. "target": "YOLOv3Tiny.mlmodel",
  1658. "source": "https://docs-assets.developer.apple.com/coreml/models/Image/ObjectDetection/YOLOv3Tiny/YOLOv3Tiny.mlmodel",
  1659. "format": "Core ML v3",
  1660. "link": "https://developer.apple.com/machine-learning/models"
  1661. },
  1662. {
  1663. "type": "coreml",
  1664. "target": "yolov8n.mlpackage,yolov8n.mlpackage/Manifest.json,yolov8n.mlpackage/Data/com.apple.CoreML/model.mlmodel,yolov8n.mlpackage/Data/com.apple.CoreML/weights/weight.bin",
  1665. "source": "https://github.com/lutzroeder/netron/files/12459452/yolov8n.mlpackage.zip[.,yolov8n.mlpackage/Manifest.json,yolov8n.mlpackage/Data/com.apple.CoreML/model.mlmodel,yolov8n.mlpackage/Data/com.apple.CoreML/weights/weight.bin]",
  1666. "format": "Core ML Package v5",
  1667. "link": "https://github.com/lutzroeder/netron/issues/1145"
  1668. },
  1669. {
  1670. "type": "darknet",
  1671. "target": "alexnet.cfg",
  1672. "source": "https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/alexnet.cfg",
  1673. "format": "Darknet",
  1674. "link": "https://pjreddie.com/darknet/imagenet"
  1675. },
  1676. {
  1677. "type": "darknet",
  1678. "target": "csresnext50-panet-spp.cfg",
  1679. "source": "https://raw.githubusercontent.com/WongKinYiu/CrossStagePartialNetworks/master/cfg/csresnext50-panet-spp.cfg",
  1680. "format": "Darknet",
  1681. "link": "https://github.com/lutzroeder/netron/issues/381"
  1682. },
  1683. {
  1684. "type": "darknet",
  1685. "target": "darknet_invalid_file.cfg",
  1686. "source": "https://github.com/lutzroeder/netron/files/3219696/darknet_invalid_file.cfg.zip[darknet_invalid_file.cfg]",
  1687. "error": "Invalid cfg 'xxxx' at line 4.",
  1688. "link": "https://github.com/lutzroeder/netron/issues/277"
  1689. },
  1690. {
  1691. "type": "darknet",
  1692. "target": "enet-coco.model",
  1693. "source": "https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/enet-coco.cfg",
  1694. "format": "Darknet",
  1695. "link": "https://github.com/lutzroeder/netron/issues/381"
  1696. },
  1697. {
  1698. "type": "darknet",
  1699. "target": "face_small_3.cfg",
  1700. "source": "https://raw.githubusercontent.com/zlmo/Face-Detection/master/cfg/face_small_3.cfg",
  1701. "format": "Darknet",
  1702. "link": "https://github.com/zlmo/Face-Detection"
  1703. },
  1704. {
  1705. "type": "darknet",
  1706. "target": "Gaussian_yolov3_BDD.cfg",
  1707. "source": "https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/Gaussian_yolov3_BDD.cfg",
  1708. "format": "Darknet",
  1709. "link": "https://github.com/AlexeyAB/darknet"
  1710. },
  1711. {
  1712. "type": "darknet",
  1713. "target": "gru.cfg",
  1714. "source": "https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/gru.cfg",
  1715. "format": "Darknet",
  1716. "link": "https://pjreddie.com/darknet"
  1717. },
  1718. {
  1719. "type": "darknet",
  1720. "target": "lstm.train.cfg",
  1721. "source": "https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/lstm.train.cfg",
  1722. "format": "Darknet",
  1723. "link": "https://github.com/AlexeyAB/darknet"
  1724. },
  1725. {
  1726. "type": "darknet",
  1727. "target": "mixnet_m_gpu.cfg",
  1728. "source": "https://github.com/lutzroeder/netron/files/3935529/mixnet_m_gpu.cfg.txt",
  1729. "format": "Darknet",
  1730. "link": "https://github.com/lutzroeder/netron/issues/381"
  1731. },
  1732. {
  1733. "type": "darknet",
  1734. "target": "netron_issue_539_1.cfg",
  1735. "source": "https://github.com/lutzroeder/netron/files/5048435/netron_issue_539_1.zip[netron_issue_539_1.cfg]",
  1736. "format": "Darknet",
  1737. "link": "https://github.com/lutzroeder/netron/issues/539"
  1738. },
  1739. {
  1740. "type": "darknet",
  1741. "target": "netron_issue_539_2.cfg",
  1742. "source": "https://github.com/lutzroeder/netron/files/5048436/netron_issue_539_2.zip[netron_issue_539_2.cfg]",
  1743. "format": "Darknet",
  1744. "link": "https://github.com/lutzroeder/netron/issues/539"
  1745. },
  1746. {
  1747. "type": "darknet",
  1748. "target": "netron_issue_539_3.cfg",
  1749. "source": "https://github.com/lutzroeder/netron/files/5612917/netron_issue_539_3.zip[netron_issue_539_3.cfg]",
  1750. "format": "Darknet",
  1751. "link": "https://github.com/lutzroeder/netron/issues/539"
  1752. },
  1753. {
  1754. "type": "darknet",
  1755. "target": "netron_issue_541.cfg",
  1756. "source": "https://github.com/lutzroeder/netron/files/4968181/netron_issue_541.zip[netron_issue_541.cfg]",
  1757. "format": "Darknet",
  1758. "link": "https://github.com/lutzroeder/netron/issues/541"
  1759. },
  1760. {
  1761. "type": "darknet",
  1762. "target": "netron_issue_569.cfg",
  1763. "source": "https://github.com/lutzroeder/netron/files/5025566/netron_issue_569.zip[netron_issue_569.cfg]",
  1764. "format": "Darknet",
  1765. "link": "https://github.com/lutzroeder/netron/issues/569"
  1766. },
  1767. {
  1768. "type": "darknet",
  1769. "target": "resnet18.cfg",
  1770. "source": "https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/resnet18.cfg",
  1771. "format": "Darknet",
  1772. "link": "https://pjreddie.com/darknet/imagenet"
  1773. },
  1774. {
  1775. "type": "darknet",
  1776. "target": "tiny.weights,tiny.cfg",
  1777. "source": "https://github.com/user-attachments/files/19821790/tiny.zip[tiny.weights,tiny.cfg]",
  1778. "format": "Darknet",
  1779. "assert": "model.modules[0].nodes[0].inputs[1].value[0].initializer.values.length == 64",
  1780. "link": "https://pjreddie.com/darknet/tiny-darknet"
  1781. },
  1782. {
  1783. "type": "darknet",
  1784. "target": "vgg_bn_ssd300.cfg",
  1785. "source": "https://github.com/lutzroeder/netron/files/5287397/vgg_bn_ssd300.cfg.zip[vgg_bn_ssd300.cfg]",
  1786. "error": "Unexpected '[convolutional]' section. First section must be [net] or [network].",
  1787. "link": "https://github.com/lutzroeder/netron/issues/277"
  1788. },
  1789. {
  1790. "type": "darknet",
  1791. "target": "xyolo.test.cfg",
  1792. "source": "https://github.com/lutzroeder/netron/files/6026689/xyolo.test.cfg.zip[xyolo.test.cfg]",
  1793. "format": "Darknet",
  1794. "link": "https://github.com/lutzroeder/netron/issues/277"
  1795. },
  1796. {
  1797. "type": "darknet",
  1798. "target": "yolo-coco.cfg",
  1799. "source": "https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/yolov1/yolo-coco.cfg",
  1800. "format": "Darknet",
  1801. "link": "https://github.com/AlexeyAB/darknet"
  1802. },
  1803. {
  1804. "type": "darknet",
  1805. "target": "yolo-voc.cfg",
  1806. "source": "https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/yolo-voc.cfg",
  1807. "format": "Darknet",
  1808. "link": "https://github.com/AlexeyAB/darknet"
  1809. },
  1810. {
  1811. "type": "darknet",
  1812. "target": "yolo.cfg",
  1813. "source": "https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/yolo.cfg",
  1814. "format": "Darknet",
  1815. "link": "https://github.com/AlexeyAB/darknet"
  1816. },
  1817. {
  1818. "type": "darknet",
  1819. "target": "yolo_v3_tiny_pan3_aa_ae_mixup_scale_giou.cfg",
  1820. "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]",
  1821. "format": "Darknet",
  1822. "link": "https://github.com/lutzroeder/netron/issues/277"
  1823. },
  1824. {
  1825. "type": "darknet",
  1826. "target": "yolo_v3_tiny_lstm.cfg",
  1827. "source": "https://github.com/lutzroeder/netron/files/4999065/yolo_v3_tiny_lstm.zip[yolo_v3_tiny_lstm.cfg]",
  1828. "format": "Darknet",
  1829. "link": "https://github.com/lutzroeder/netron/issues/562"
  1830. },
  1831. {
  1832. "type": "darknet",
  1833. "target": "yolov3-tiny.cfg",
  1834. "source": "https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/yolov3-tiny.cfg",
  1835. "format": "Darknet",
  1836. "link": "https://github.com/AlexeyAB/darknet"
  1837. },
  1838. {
  1839. "type": "darknet",
  1840. "target": "yolov3-tiny_default.cfg.txt",
  1841. "source": "https://github.com/lutzroeder/netron/files/5615015/yolov3-tiny_default.cfg.txt.zip[yolov3-tiny_default.cfg.txt]",
  1842. "format": "Darknet",
  1843. "link": "https://github.com/lutzroeder/netron/issues/277"
  1844. },
  1845. {
  1846. "type": "darknet",
  1847. "target": "yolov3-tiny_3l_shortcut_multilayer_per_feature_softmax.cfg",
  1848. "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]",
  1849. "format": "Darknet",
  1850. "link": "https://github.com/lutzroeder/netron/issues/410"
  1851. },
  1852. {
  1853. "type": "darknet",
  1854. "target": "yolov3_1088x608.cfg",
  1855. "source": "https://github.com/lutzroeder/netron/files/4391007/yolov3_1088x608.cfg.zip[yolov3_1088x608.cfg]",
  1856. "format": "Darknet",
  1857. "link": "https://github.com/lutzroeder/netron/issues/277"
  1858. },
  1859. {
  1860. "type": "darknet",
  1861. "target": "yolov4-tiny.cfg,yolov4-tiny.weights",
  1862. "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",
  1863. "format": "Darknet",
  1864. "assert": "model.modules[0].nodes[0].inputs[1].value[0].initializer.values.length == 128",
  1865. "link": "https://github.com/lutzroeder/netron/issues/531"
  1866. },
  1867. {
  1868. "type": "darknet",
  1869. "target": "yolo9000.cfg",
  1870. "source": "https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/yolo9000.cfg",
  1871. "format": "Darknet",
  1872. "link": "https://github.com/AlexeyAB/darknet"
  1873. },
  1874. {
  1875. "type": "darknet",
  1876. "target": "yolor_p6.cfg",
  1877. "source": "https://github.com/lutzroeder/netron/files/6767257/yolor_p6.cfg.zip[yolor_p6.cfg]",
  1878. "format": "Darknet",
  1879. "link": "https://github.com/lutzroeder/netron/issues/765"
  1880. },
  1881. {
  1882. "type": "dl4j",
  1883. "target": "nasnetmobile_dl4j_inference.v1.zip",
  1884. "source": "https://github.com/lutzroeder/netron/files/11928662/nasnetmobile_dl4j_inference.v1.zip",
  1885. "format": "Deeplearning4j",
  1886. "link": "https://github.com/lutzroeder/netron/issues/303"
  1887. },
  1888. {
  1889. "type": "dl4j",
  1890. "target": "tiny-yolo-voc_dl4j_inference.v2.zip",
  1891. "source": "https://github.com/lutzroeder/netron/files/11928661/tiny-yolo-voc_dl4j_inference.v2.zip",
  1892. "format": "Deeplearning4j",
  1893. "link": "https://github.com/lutzroeder/netron/issues/303"
  1894. },
  1895. {
  1896. "type": "dl4j",
  1897. "target": "unet_dl4j_segment_inference.v1.zip",
  1898. "source": "https://github.com/lutzroeder/netron/files/11928659/unet_dl4j_segment_inference.v1.zip",
  1899. "format": "Deeplearning4j",
  1900. "link": "https://github.com/lutzroeder/netron/issues/303"
  1901. },
  1902. {
  1903. "type": "dl4j",
  1904. "target": "xception_dl4j_inference.v2.zip",
  1905. "source": "https://github.com/lutzroeder/netron/files/11928660/xception_dl4j_inference.v2.zip",
  1906. "format": "Deeplearning4j",
  1907. "link": "https://github.com/lutzroeder/netron/issues/303"
  1908. },
  1909. {
  1910. "type": "dlc",
  1911. "target": "dmonitoring_model_q/model,dmonitoring_model_q/model.params",
  1912. "source": "https://github.com/lutzroeder/netron/files/8767267/dmonitoring_model_q.zip[model,model.params]",
  1913. "format": "DLC",
  1914. "link": "https://github.com/lutzroeder/netron/issues/640"
  1915. },
  1916. {
  1917. "type": "dlc",
  1918. "target": "dmonitoring_model_q.dlc",
  1919. "source": "https://github.com/lutzroeder/netron/files/8767255/dmonitoring_model_q.dlc.zip[dmonitoring_model_q.dlc]",
  1920. "format": "DLC",
  1921. "link": "https://github.com/lutzroeder/netron/issues/640"
  1922. },
  1923. {
  1924. "type": "dlc",
  1925. "target": "inception_v3_quantized.dlc",
  1926. "source": "https://github.com/lutzroeder/netron/files/5615377/inception_v3_quantized.dlc.zip[inception_v3_quantized.dlc]",
  1927. "format": "DLC",
  1928. "link": "https://github.com/lutzroeder/netron/issues/640"
  1929. },
  1930. {
  1931. "type": "dlc",
  1932. "target": "model_front_mibokeh_video.dlc",
  1933. "source": "https://github.com/lutzroeder/netron/files/8767521/model_front_mibokeh_video.dlc.zip[model_front_mibokeh_video.dlc]",
  1934. "format": "DLC",
  1935. "error": "File format is not dlc.v3.NETP (Offset is outside the bounds of the DataView).",
  1936. "link": "https://github.com/lutzroeder/netron/issues/640"
  1937. },
  1938. {
  1939. "type": "dlc",
  1940. "target": "mobile_mosaic_hta/model.params",
  1941. "source": "https://github.com/lutzroeder/netron/files/8767531/mobile_mosaic_hta.zip[model.params]",
  1942. "format": "DLC Weights",
  1943. "link": "https://github.com/lutzroeder/netron/issues/640"
  1944. },
  1945. {
  1946. "type": "dlc",
  1947. "target": "mobilenet_edgetpu_224_1.0_htp.dlc",
  1948. "source": "https://github.com/lutzroeder/netron/files/12207884/mobilenet_edgetpu_224_1.0_htp.dlc.zip[mobilenet_edgetpu_224_1.0_htp.dlc]",
  1949. "format": "DLC",
  1950. "link": "https://github.com/lutzroeder/netron/issues/640"
  1951. },
  1952. {
  1953. "type": "dlc",
  1954. "target": "mobilenet-SSD.dlc",
  1955. "source": "https://github.com/lutzroeder/netron/files/10528507/mobilenet-SSD.dlc.zip[mobilenet-SSD.dlc]",
  1956. "format": "DLC",
  1957. "error": "File contains undocumented DLC v2 data.",
  1958. "link": "https://github.com/lutzroeder/netron/issues/640"
  1959. },
  1960. {
  1961. "type": "dlc",
  1962. "target": "sample.dlc",
  1963. "source": "https://github.com/lutzroeder/netron/files/12207883/sample.dlc.zip[sample.dlc]",
  1964. "format": "DLC",
  1965. "link": "https://github.com/lutzroeder/netron/issues/640"
  1966. },
  1967. {
  1968. "type": "dlc",
  1969. "target": "yolov8n.dlc",
  1970. "source": "https://github.com/lutzroeder/netron/files/13344121/yolov8n.dlc.zip[yolov8n.dlc]",
  1971. "format": "DLC",
  1972. "link": "https://github.com/lutzroeder/netron/issues/640"
  1973. },
  1974. {
  1975. "type": "dlc",
  1976. "target": "yolov8n_op11_v1.dlc",
  1977. "source": "https://github.com/lutzroeder/netron/files/10527011/yolov8n_op11_v1.dlc.zip[yolov8n_op11_v1.dlc]",
  1978. "format": "DLC",
  1979. "assert": "model.modules[0].nodes[0].inputs[2].value[0].initializer.type.shape.dimensions[3] == 16",
  1980. "link": "https://github.com/lutzroeder/netron/issues/1037"
  1981. },
  1982. {
  1983. "type": "dlc",
  1984. "target": "yolov8n_op11_v2.dlc",
  1985. "source": "https://github.com/lutzroeder/netron/files/10527012/yolov8n_op11_v2.dlc.zip[yolov8n_op11_v2.dlc]",
  1986. "format": "DLC",
  1987. "assert": "model.modules[0].nodes[0].inputs[1].value[0].initializer.type.shape.dimensions[3] == 16",
  1988. "link": "https://github.com/lutzroeder/netron/issues/1037"
  1989. },
  1990. {
  1991. "type": "dnn",
  1992. "target": "brows_model.dnn",
  1993. "source": "https://github.com/lutzroeder/netron/files/5118426/brows_model.zip[brows_model.dnn]",
  1994. "format": "SnapML v1",
  1995. "link": "https://github.com/lutzroeder/netron/issues/581"
  1996. },
  1997. {
  1998. "type": "dot",
  1999. "target": "chart_fr1.dot",
  2000. "source": "https://github.com/user-attachments/files/17928647/chart_fr1.dot.zip[chart_fr1.dot]",
  2001. "format": "DOT",
  2002. "link": "https://github.com/lutzroeder/netron/issues/1368"
  2003. },
  2004. {
  2005. "type": "dot",
  2006. "target": "dataflow.dot",
  2007. "source": "https://github.com/user-attachments/files/17928508/dataflow.dot.zip[dataflow.dot]",
  2008. "format": "DOT",
  2009. "link": "https://github.com/lutzroeder/netron/issues/1368"
  2010. },
  2011. {
  2012. "type": "dot",
  2013. "target": "edges.dot",
  2014. "source": "https://github.com/user-attachments/files/17928569/edges.dot.zip[edges.dot]",
  2015. "format": "DOT",
  2016. "link": "https://github.com/lutzroeder/netron/issues/1368"
  2017. },
  2018. {
  2019. "type": "dot",
  2020. "target": "EfficientDet-d0.onnx.dot",
  2021. "source": "https://github.com/user-attachments/files/17180084/EfficientDet-d0.onnx.dot.zip[EfficientDet-d0.onnx.dot]",
  2022. "format": "DOT",
  2023. "tags": "skip-render",
  2024. "link": "https://github.com/lutzroeder/netron/issues/1368"
  2025. },
  2026. {
  2027. "type": "dot",
  2028. "target": "fg.dot",
  2029. "source": "https://github.com/user-attachments/files/17928899/fg.dot.zip[fg.dot]",
  2030. "format": "DOT",
  2031. "link": "https://github.com/lutzroeder/netron/issues/1368"
  2032. },
  2033. {
  2034. "type": "dot",
  2035. "target": "gpt2-10.onnx.dot",
  2036. "source": "https://github.com/user-attachments/files/17180085/gpt2-10.onnx.dot.zip[gpt2-10.onnx.dot]",
  2037. "format": "DOT",
  2038. "link": "https://github.com/lutzroeder/netron/issues/1368"
  2039. },
  2040. {
  2041. "type": "dot",
  2042. "target": "homekey",
  2043. "source": "https://github.com/user-attachments/files/17928509/homekey.dot.zip[homekey.dot]",
  2044. "format": "DOT",
  2045. "link": "https://github.com/lutzroeder/netron/issues/1368"
  2046. },
  2047. {
  2048. "type": "dot",
  2049. "target": "mb_v1_ssd_with_flag.dot",
  2050. "source": "https://github.com/user-attachments/files/17928515/mb_v1_ssd_with_flag.dot.zip[mb_v1_ssd_with_flag.dot]",
  2051. "format": "DOT",
  2052. "link": "https://github.com/lutzroeder/netron/issues/1368"
  2053. },
  2054. {
  2055. "type": "dot",
  2056. "target": "mobilenetv1.dot",
  2057. "source": "https://github.com/user-attachments/files/17928510/mobilenetv1.dot.zip[mobilenetv1.dot]",
  2058. "format": "DOT",
  2059. "link": "https://github.com/lutzroeder/netron/issues/1368"
  2060. },
  2061. {
  2062. "type": "dot",
  2063. "target": "nth.dot",
  2064. "source": "https://github.com/user-attachments/files/17928645/nth.dot.zip[nth.dot]",
  2065. "format": "DOT",
  2066. "link": "https://github.com/lutzroeder/netron/issues/1368"
  2067. },
  2068. {
  2069. "type": "dot",
  2070. "target": "pilot.dot",
  2071. "source": "https://github.com/user-attachments/files/17928648/pilot.dot.zip[pilot.dot]",
  2072. "format": "DOT",
  2073. "link": "https://github.com/lutzroeder/netron/issues/1368"
  2074. },
  2075. {
  2076. "type": "dot",
  2077. "target": "resnet18.dot",
  2078. "source": "https://github.com/user-attachments/files/17175694/resnet18.dot.zip[resnet18.dot]",
  2079. "format": "DOT",
  2080. "assert": "model.modules[0].nodes.length == 71",
  2081. "link": "https://github.com/lutzroeder/netron/issues/1368"
  2082. },
  2083. {
  2084. "type": "dot",
  2085. "target": "squeezenet.dot",
  2086. "source": "https://github.com/user-attachments/files/17928516/squeezenet.dot.zip[squeezenet.dot]",
  2087. "format": "DOT",
  2088. "link": "https://github.com/lutzroeder/netron/issues/1368"
  2089. },
  2090. {
  2091. "type": "espresso",
  2092. "target": "segmentation.mlmodelc.zip",
  2093. "source": "https://github.com/user-attachments/files/15315833/segmentation.mlmodelc.zip",
  2094. "format": "Espresso v2.0",
  2095. "link": "https://github.com/lutzroeder/netron/issues/193"
  2096. },
  2097. {
  2098. "type": "espresso",
  2099. "target": "SqueezeNet.mlmodelc.zip",
  2100. "source": "https://github.com/user-attachments/files/15535445/SqueezeNet.mlmodelc.zip",
  2101. "format": "Espresso v2.0",
  2102. "link": "https://github.com/lutzroeder/netron/issues/193"
  2103. },
  2104. {
  2105. "type": "executorch",
  2106. "target": "add.pte",
  2107. "source": "https://github.com/lutzroeder/netron/files/13156981/add.pte.zip[add.pte]",
  2108. "format": "ExecuTorch v0",
  2109. "link": "https://github.com/lutzroeder/netron/issues/1175"
  2110. },
  2111. {
  2112. "type": "executorch",
  2113. "target": "mobilenet_v2.pte",
  2114. "source": "https://github.com/user-attachments/files/18462557/mobilenet_v2.pte.zip[mobilenet_v2.pte]",
  2115. "format": "ExecuTorch v0",
  2116. "tags": "validation",
  2117. "link": "https://github.com/lutzroeder/netron/issues/1211"
  2118. },
  2119. {
  2120. "type": "executorch",
  2121. "target": "mv2_xnnpack.pte",
  2122. "source": "https://github.com/user-attachments/files/18462560/mv2_xnnpack.pte.zip[mv2_xnnpack.pte]",
  2123. "format": "ExecuTorch v0",
  2124. "link": "https://github.com/lutzroeder/netron/issues/1175"
  2125. },
  2126. {
  2127. "type": "executorch",
  2128. "target": "mv2_vulkan.pte",
  2129. "source": "https://github.com/user-attachments/files/18514115/mv2_vulkan.pte.zip[mv2_vulkan.pte]",
  2130. "format": "ExecuTorch v0",
  2131. "link": "https://github.com/lutzroeder/netron/issues/1175"
  2132. },
  2133. {
  2134. "type": "executorch",
  2135. "target": "nanogpt.pte.zip",
  2136. "source": "https://github.com/user-attachments/files/19726086/nanogpt.pte.zip",
  2137. "format": "ExecuTorch v0",
  2138. "link": "https://github.com/lutzroeder/netron/issues/1175"
  2139. },
  2140. {
  2141. "type": "executorch",
  2142. "target": "style_transfer_candy_coreml.pte",
  2143. "source": "https://github.com/user-attachments/files/18469498/style_transfer_candy_coreml.pte.zip[style_transfer_candy_coreml.pte]",
  2144. "format": "ExecuTorch v0",
  2145. "link": "https://github.com/lutzroeder/netron/issues/1175"
  2146. },
  2147. {
  2148. "type": "executorch",
  2149. "target": "style_transfer_candy_xnnpack.pte",
  2150. "source": "https://github.com/user-attachments/files/18469499/style_transfer_candy_xnnpack.pte.zip[style_transfer_candy_xnnpack.pte]",
  2151. "format": "ExecuTorch v0",
  2152. "link": "https://github.com/lutzroeder/netron/issues/1175"
  2153. },
  2154. {
  2155. "type": "flax",
  2156. "target": "flax_model.msgpack",
  2157. "source": "https://github.com/lutzroeder/netron/files/8567810/flax_model.msgpack.zip[flax_model.msgpack]",
  2158. "format": "Flax",
  2159. "link": "https://github.com/lutzroeder/netron/issues/850"
  2160. },
  2161. {
  2162. "type": "flux",
  2163. "target": "helloworld.bson",
  2164. "source": "https://github.com/lutzroeder/netron/files/3638212/helloworld.zip[helloworld.bson]",
  2165. "error": "File contains unsupported Flux data.",
  2166. "format": "Flux",
  2167. "link": "https://github.com/lutzroeder/netron/issues/334"
  2168. },
  2169. {
  2170. "type": "gguf",
  2171. "target": "mixtral-8x7b-v0.1.Q4_K_M.gguf",
  2172. "source": "https://github.com/lutzroeder/netron/files/13802180/mixtral-8x7b-v0.1.Q4_K_M.gguf.zip[mixtral-8x7b-v0.1.Q4_K_M.gguf]",
  2173. "format": "GGUF v3",
  2174. "tags": "quantization",
  2175. "link": "https://github.com/lutzroeder/netron/issues/1209"
  2176. },
  2177. {
  2178. "type": "gguf",
  2179. "target": "phi-2.Q2_K.gguf",
  2180. "source": "https://github.com/lutzroeder/netron/files/13825087/phi-2.Q2_K.gguf.zip[phi-2.Q2_K.gguf]",
  2181. "format": "GGUF v3",
  2182. "tags": "validation,quantization",
  2183. "link": "https://github.com/lutzroeder/netron/issues/1209"
  2184. },
  2185. {
  2186. "type": "gguf",
  2187. "target": "vicuna-33b.Q2_K.gguf",
  2188. "source": "https://github.com/lutzroeder/netron/files/13825089/vicuna-33b.Q2_K.gguf.zip[vicuna-33b.Q2_K.gguf]",
  2189. "format": "GGUF v2",
  2190. "tags": "quantization",
  2191. "link": "https://github.com/lutzroeder/netron/issues/1209"
  2192. },
  2193. {
  2194. "type": "hailo",
  2195. "target": "fcn_hailo_pp_v2.har",
  2196. "source": "https://github.com/lutzroeder/netron/files/13482814/fcn_hailo_pp_v2.har.zip[fcn_hailo_pp_v2.har]",
  2197. "format": "Hailo Archive v3.26.0.dev0",
  2198. "link": "https://github.com/lutzroeder/netron/issues/1058"
  2199. },
  2200. {
  2201. "type": "hailo",
  2202. "target": "llama.hn",
  2203. "source": "https://github.com/user-attachments/files/16163387/llama.hn.zip[llama.hn]",
  2204. "format": "Hailo NN",
  2205. "tags": "skip-render",
  2206. "link": "https://github.com/lutzroeder/netron/issues/1058"
  2207. },
  2208. {
  2209. "type": "hailo",
  2210. "target": "resnet_v1_8.hn",
  2211. "source": "https://github.com/lutzroeder/netron/files/11015765/resnet_v1_8.zip[resnet_v1_8.hn]",
  2212. "format": "Hailo NN",
  2213. "link": "https://github.com/lutzroeder/netron/issues/1058"
  2214. },
  2215. {
  2216. "type": "hailo",
  2217. "target": "resnet_v1_8.har",
  2218. "source": "https://github.com/lutzroeder/netron/files/11015765/resnet_v1_8.zip[resnet_v1_8_quantized.har]",
  2219. "format": "Hailo Archive v3.23.0",
  2220. "link": "https://github.com/lutzroeder/netron/issues/1058"
  2221. },
  2222. {
  2223. "type": "hailo",
  2224. "target": "VD_M_sRGB_4k_Apr03.har",
  2225. "source": "https://github.com/user-attachments/files/16163445/VD_M_sRGB_4k_Apr03.har.zip[VD_M_sRGB_4k_Apr03.har]",
  2226. "format": "Hailo Archive v3.26.0",
  2227. "link": "https://github.com/lutzroeder/netron/issues/1058"
  2228. },
  2229. {
  2230. "type": "hickle",
  2231. "target": "googlenet.h5",
  2232. "source": "https://github.com/vadimkantorov/metriclearningbench/releases/download/data/googlenet.h5",
  2233. "format": "Hickle Weights",
  2234. "link": "https://github.com/lutzroeder/netron/issues/998"
  2235. },
  2236. {
  2237. "type": "kann",
  2238. "target": "googlenet-fp16.kgraph",
  2239. "source": "https://github.com/kalray/kann-models-zoo/raw/refs/heads/main/utils/kann-graph/googlenet-fp16.kgraph",
  2240. "format": "KaNN",
  2241. "link": "https://github.com/lutzroeder/netron/issues/1408"
  2242. },
  2243. {
  2244. "type": "kann",
  2245. "target": "mobilenet-v2-fp16.kgraph",
  2246. "source": "https://github.com/kalray/kann-models-zoo/raw/refs/heads/main/utils/kann-graph/mobilenet-v2-fp16.kgraph",
  2247. "format": "KaNN",
  2248. "tags": "quantization",
  2249. "link": "https://github.com/lutzroeder/netron/issues/1408"
  2250. },
  2251. {
  2252. "type": "kann",
  2253. "target": "resnet50-v1.5-mlperf-quantized-fp16.kgraph",
  2254. "source": "https://github.com/kalray/kann-models-zoo/raw/refs/heads/main/utils/kann-graph/resnet50-v1.5-mlperf-quantized-fp16.kgraph",
  2255. "format": "KaNN",
  2256. "assert": "model.modules[0].nodes[88].inputs[1].value[0].quantization.type == 'linear'",
  2257. "tags": "quantization",
  2258. "link": "https://github.com/lutzroeder/netron/issues/1408"
  2259. },
  2260. {
  2261. "type": "kann",
  2262. "target": "squeezenet-v1-fp16.kgraph",
  2263. "source": "https://github.com/kalray/kann-models-zoo/raw/refs/heads/main/utils/kann-graph/squeezenet-v1-fp16.kgraph",
  2264. "format": "KaNN",
  2265. "link": "https://github.com/lutzroeder/netron/issues/1408"
  2266. },
  2267. {
  2268. "type": "kann",
  2269. "target": "yolov3-fp16.kgraph",
  2270. "source": "https://github.com/kalray/kann-models-zoo/raw/refs/heads/main/utils/kann-graph/yolov3-fp16.kgraph",
  2271. "format": "KaNN",
  2272. "link": "https://github.com/lutzroeder/netron/issues/1408"
  2273. },
  2274. {
  2275. "type": "keras",
  2276. "target": "0326.json",
  2277. "source": "https://github.com/lutzroeder/netron/files/13367043/0326.json.zip[0326.json]",
  2278. "format": "Keras v2.2.4-tf",
  2279. "link": "https://github.com/lutzroeder/netron/issues/326"
  2280. },
  2281. {
  2282. "type": "keras",
  2283. "target": "0428",
  2284. "source": "https://github.com/lutzroeder/netron/files/14074802/0428.h5.zip[0428.h5]",
  2285. "format": "Keras v2.2.4-tf",
  2286. "link": "https://github.com/lutzroeder/netron/issues/428"
  2287. },
  2288. {
  2289. "type": "keras",
  2290. "target": "0435.h5",
  2291. "source": "https://github.com/lutzroeder/netron/files/14074803/0435.h5.zip[0435.h5]",
  2292. "format": "Keras v2.2.4",
  2293. "link": "https://github.com/lutzroeder/netron/issues/435"
  2294. },
  2295. {
  2296. "type": "keras",
  2297. "target": "0553.h5",
  2298. "source": "https://github.com/lutzroeder/netron/files/14074804/0553.h5.zip[0553.h5]",
  2299. "format": "Keras v2.2.4-tf",
  2300. "link": "https://github.com/lutzroeder/netron/issues/553"
  2301. },
  2302. {
  2303. "type": "keras",
  2304. "target": "0855.h5",
  2305. "source": "https://github.com/lutzroeder/netron/files/14074805/0855.h5.zip[0855.h5]",
  2306. "format": "Keras v2.7.0",
  2307. "link": "https://github.com/lutzroeder/netron/issues/855"
  2308. },
  2309. {
  2310. "type": "keras",
  2311. "target": "1141.1.keras",
  2312. "source": "https://github.com/lutzroeder/netron/files/13329220/1141.zip[1141.1.keras]",
  2313. "format": "Keras v2.13.1",
  2314. "link": "https://github.com/lutzroeder/netron/issues/1141"
  2315. },
  2316. {
  2317. "type": "keras",
  2318. "target": "1141.2.keras",
  2319. "source": "https://github.com/lutzroeder/netron/files/13329220/1141.zip[1141.2.keras]",
  2320. "format": "Keras v2.13.1",
  2321. "link": "https://github.com/lutzroeder/netron/issues/1141"
  2322. },
  2323. {
  2324. "type": "keras",
  2325. "target": "1151.1.keras",
  2326. "source": "https://github.com/lutzroeder/netron/files/13329206/1151.zip[1151.1.keras]",
  2327. "format": "Keras v2.14.0",
  2328. "link": "https://github.com/lutzroeder/netron/issues/1151"
  2329. },
  2330. {
  2331. "type": "keras",
  2332. "target": "1151.2.keras",
  2333. "source": "https://github.com/lutzroeder/netron/files/13329206/1151.zip[1151.2.keras]",
  2334. "format": "Keras v2.14.0",
  2335. "link": "https://github.com/lutzroeder/netron/issues/1151"
  2336. },
  2337. {
  2338. "type": "keras",
  2339. "target": "1151.3.keras",
  2340. "source": "https://github.com/lutzroeder/netron/files/13329206/1151.zip[1151.3.keras]",
  2341. "format": "Keras v2.14.0",
  2342. "link": "https://github.com/lutzroeder/netron/issues/1151"
  2343. },
  2344. {
  2345. "type": "keras",
  2346. "target": "1151.4.keras",
  2347. "source": "https://github.com/lutzroeder/netron/files/13329206/1151.zip[1151.4.keras]",
  2348. "format": "Keras v2.13.1",
  2349. "tags": "validation",
  2350. "link": "https://github.com/lutzroeder/netron/issues/1151"
  2351. },
  2352. {
  2353. "type": "keras",
  2354. "target": "babi_rnn.h5",
  2355. "source": "https://github.com/lutzroeder/netron/files/2592329/keras_models.zip[babi_rnn.h5]",
  2356. "format": "Keras v2.1.2",
  2357. "link": "https://github.com/lutzroeder/netron/issues/57"
  2358. },
  2359. {
  2360. "type": "keras",
  2361. "target": "betago.hdf5",
  2362. "source": "https://raw.githubusercontent.com/maxpumperla/deep_learning_and_the_game_of_go/master/code/agents/betago.hdf5",
  2363. "format": "Keras v2.0.8",
  2364. "link": "https://github.com/lutzroeder/netron/issues/57"
  2365. },
  2366. {
  2367. "type": "keras",
  2368. "target": "bidirectional_lstm.h5",
  2369. "source": "https://github.com/lutzroeder/netron/files/2592329/keras_models.zip[bidirectional_lstm.h5]",
  2370. "format": "Keras v2.1.2",
  2371. "link": "https://github.com/lutzroeder/netron/issues/57"
  2372. },
  2373. {
  2374. "type": "keras",
  2375. "target": "cats_and_dogs_small_1.h5",
  2376. "source": "https://raw.githubusercontent.com/wwells/CUNY_DATA_698/master/DL_Coursework/DLR/cats_and_dogs_small_1.h5",
  2377. "format": "Keras v2.1.5",
  2378. "link": "https://github.com/wwells/CUNY_DATA_698/tree/master/DL_Coursework/DLR"
  2379. },
  2380. {
  2381. "type": "keras",
  2382. "target": "cats_and_dogs_small_2.h5",
  2383. "source": "https://raw.githubusercontent.com/kylehamilton/deep-learning-with-r-notebooks/master/cats_and_dogs_small_2.h5",
  2384. "format": "Keras v2.0.9",
  2385. "link": "https://github.com/kylehamilton/deep-learning-with-r-notebooks"
  2386. },
  2387. {
  2388. "type": "keras",
  2389. "target": "cats_and_dogs_2_activation.h5",
  2390. "source": "https://github.com/lutzroeder/netron/files/2592329/keras_models.zip[cats_and_dogs_2_activation.h5]",
  2391. "format": "Keras v2.1.3",
  2392. "link": "https://github.com/lutzroeder/netron/issues/57"
  2393. },
  2394. {
  2395. "type": "keras",
  2396. "target": "cifar10_m4_iter_70000.caffemodel.h5",
  2397. "source": "https://raw.githubusercontent.com/ARM-software/ML-examples/d229d37863d69963f36e9da92dfd25f592925b9d/cmsisnn-cifar10/models/cifar10_m4_iter_70000.caffemodel.h5",
  2398. "format": "HDF5 Weights",
  2399. "link": "https://github.com/ARM-software/ML-examples"
  2400. },
  2401. {
  2402. "type": "keras",
  2403. "target": "CNN_SN_flaw1_v1.h5",
  2404. "source": "https://github.com/lutzroeder/netron/files/2452413/CNN_SN_flaw1_v1.h5.zip[CNN_SN_flaw1_v1.h5]",
  2405. "format": "Keras v2.2.3",
  2406. "link": "https://github.com/lutzroeder/netron/issues/157"
  2407. },
  2408. {
  2409. "type": "keras",
  2410. "target": "data_prediction.hdf5",
  2411. "source": "https://github.com/lutzroeder/netron/files/8694214/data_prediction.hdf5.zip[data_prediction.hdf5]",
  2412. "format": "HDF5 Weights",
  2413. "link": "https://github.com/lutzroeder/netron/issues/467"
  2414. },
  2415. {
  2416. "type": "keras",
  2417. "target": "demo_mnist_convnet.keras",
  2418. "source": "https://github.com/lutzroeder/netron/files/13066160/demo_mnist_convnet.keras.zip[demo_mnist_convnet.keras]",
  2419. "format": "Keras v0.1.7",
  2420. "link": "https://github.com/lutzroeder/netron/issues/57"
  2421. },
  2422. {
  2423. "type": "keras",
  2424. "target": "DenseNet121.h5.zip",
  2425. "source": "https://github.com/lutzroeder/netron/files/6251712/DenseNet121.h5.zip",
  2426. "format": "Keras v2.4.0",
  2427. "link": "https://github.com/lutzroeder/netron/issues/57"
  2428. },
  2429. {
  2430. "type": "keras",
  2431. "target": "DP_label_tokenizer.json",
  2432. "source": "https://github.com/user-attachments/files/19275615/DP_label_tokenizer.json.zip[DP_label_tokenizer.json]",
  2433. "format": "Keras",
  2434. "link": "https://github.com/lutzroeder/netron/issues/57"
  2435. },
  2436. {
  2437. "type": "keras",
  2438. "target": "generating_images_with_vaes.h5",
  2439. "source": "https://github.com/lutzroeder/netron/files/2592326/generating_images_with_vaes.h5.zip[generating_images_with_vaes.h5]",
  2440. "format": "Keras v2.1.3",
  2441. "link": "https://github.com/fchollet/deep-learning-with-python-notebooks/blob/master/8.4-generating-images-with-vaes.ipynb"
  2442. },
  2443. {
  2444. "type": "keras",
  2445. "target": "generator_model.h5",
  2446. "source": "https://raw.githubusercontent.com/mattya/chainer-DCGAN/master/generator_model.h5",
  2447. "format": "HDF5 Weights",
  2448. "link": "https://github.com/mattya/chainer-DCGAN"
  2449. },
  2450. {
  2451. "type": "keras",
  2452. "target": "imdb_embedding.h5",
  2453. "source": "https://github.com/lutzroeder/netron/files/2592329/keras_models.zip[imdb_embedding.h5]",
  2454. "format": "Keras v2.1.3",
  2455. "link": "https://github.com/lutzroeder/netron/issues/57"
  2456. },
  2457. {
  2458. "type": "keras",
  2459. "target": "imdb_simplernn.h5",
  2460. "source": "https://github.com/lutzroeder/netron/files/2592329/keras_models.zip[imdb_simplernn.h5]",
  2461. "format": "Keras v2.1.3",
  2462. "link": "https://github.com/lutzroeder/netron/issues/57"
  2463. },
  2464. {
  2465. "type": "keras",
  2466. "target": "InceptionResNetV2.h5.zip",
  2467. "source": "https://github.com/lutzroeder/netron/files/6098150/InceptionResNetV2.h5.zip",
  2468. "format": "Keras v2.4.0",
  2469. "link": "https://github.com/lutzroeder/netron/issues/57"
  2470. },
  2471. {
  2472. "type": "keras",
  2473. "target": "InceptionV3.h5.zip",
  2474. "source": "https://github.com/lutzroeder/netron/files/6098151/InceptionV3.h5.zip",
  2475. "format": "Keras v2.4.0",
  2476. "link": "https://github.com/lutzroeder/netron/issues/57"
  2477. },
  2478. {
  2479. "type": "keras",
  2480. "target": "keras_metadata.pb",
  2481. "source": "https://github.com/lutzroeder/netron/files/6751650/keras_metadata.pb.zip[keras_metadata.pb]",
  2482. "format": "Keras Saved Metadata",
  2483. "link": "https://github.com/lutzroeder/netron/issues/458"
  2484. },
  2485. {
  2486. "type": "keras",
  2487. "target": "lstm_seq2seq.h5",
  2488. "source": "https://github.com/lutzroeder/netron/files/2592328/lstm_seq2seq.zip[lstm_seq2seq.h5]",
  2489. "format": "Keras v2.1.2",
  2490. "link": "https://github.com/lutzroeder/netron/issues/57"
  2491. },
  2492. {
  2493. "type": "keras",
  2494. "target": "lstm_seq2seq.json",
  2495. "source": "https://github.com/lutzroeder/netron/files/2592328/lstm_seq2seq.zip[lstm_seq2seq.json] ",
  2496. "format": "Keras",
  2497. "link": "https://github.com/lutzroeder/netron/issues/57"
  2498. },
  2499. {
  2500. "type": "keras",
  2501. "target": "lzf.h5",
  2502. "source": "https://github.com/user-attachments/files/17692525/lzf.hdf5.zip[lzf.hdf5]",
  2503. "format": "HDF5 Weights",
  2504. "link": "https://github.com/lutzroeder/netron/issues/467"
  2505. },
  2506. {
  2507. "type": "keras",
  2508. "target": "mlp.h5",
  2509. "source": "https://github.com/lutzroeder/netron/files/3666244/mlp.zip[mlp.h5]",
  2510. "format": "HDF5 Weights",
  2511. "link": "https://github.com/lutzroeder/netron/issues/337"
  2512. },
  2513. {
  2514. "type": "keras",
  2515. "target": "mimo.h5",
  2516. "source": "https://github.com/lutzroeder/netron/files/2565761/mimo.h5.zip[mimo.h5]",
  2517. "format": "Keras v2.2.0",
  2518. "link": "https://github.com/lutzroeder/netron/issues/138"
  2519. },
  2520. {
  2521. "type": "keras",
  2522. "target": "mnist_float16.h5",
  2523. "source": "https://github.com/lutzroeder/netron/files/2592324/mnist.zip[mnist_float16.h5]",
  2524. "format": "Keras v2.1.2",
  2525. "link": "https://github.com/lutzroeder/netron/issues/57"
  2526. },
  2527. {
  2528. "type": "keras",
  2529. "target": "mnist_float32.h5",
  2530. "source": "https://github.com/lutzroeder/netron/files/2592324/mnist.zip[mnist_float32.h5]",
  2531. "format": "Keras v2.1.2",
  2532. "link": "https://github.com/lutzroeder/netron/issues/57"
  2533. },
  2534. {
  2535. "type": "keras",
  2536. "target": "mnist_float64.h5",
  2537. "source": "https://github.com/lutzroeder/netron/files/2592324/mnist.zip[mnist_float64.h5]",
  2538. "format": "Keras v2.1.2",
  2539. "link": "https://github.com/lutzroeder/netron/issues/57"
  2540. },
  2541. {
  2542. "type": "keras",
  2543. "target": "mobilenet.h5",
  2544. "source": "https://raw.githubusercontent.com/aio-libs/aiohttp-demos/master/demos/imagetagger/tests/data/mobilenet.h5",
  2545. "format": "Keras v2.2.2",
  2546. "link": "https://github.com/aio-libs/aiohttp-demos/tree/master/demos/imagetagger/tests/data"
  2547. },
  2548. {
  2549. "type": "keras",
  2550. "target": "mobilenet_v1_1.0_224_quant.hdf5",
  2551. "source": "https://github.com/lutzroeder/netron/files/4484451/mobilenet_v1_1.0_224_quant.zip[mobilenet_v1_1.0_224_quant.hdf5]",
  2552. "format": "HDF5 Weights",
  2553. "link": "https://github.com/lutzroeder/netron/issues/467"
  2554. },
  2555. {
  2556. "type": "keras",
  2557. "target": "MobileNetV2.h5.zip",
  2558. "source": "https://github.com/lutzroeder/netron/files/6098152/MobileNetV2.h5.zip",
  2559. "link": "https://github.com/lutzroeder/netron/issues/57"
  2560. },
  2561. {
  2562. "type": "keras",
  2563. "target": "model.weights.h5/model.weights.h5",
  2564. "source": "https://github.com/lutzroeder/netron/files/13326420/model.weights.h5.zip[model.weights.h5]",
  2565. "format": "Keras Weights",
  2566. "link": "https://github.com/lutzroeder/netron/issues/57"
  2567. },
  2568. {
  2569. "type": "keras",
  2570. "target": "model.weights.npz/model.weights.npz",
  2571. "source": "https://github.com/lutzroeder/netron/files/13326421/model.weights.npz.zip[model.weights.npz]",
  2572. "format": "Keras Weights",
  2573. "link": "https://github.com/lutzroeder/netron/issues/57"
  2574. },
  2575. {
  2576. "type": "keras",
  2577. "target": "model_float32.h5",
  2578. "source": "https://github.com/lutzroeder/netron/files/7759357/model_float32.h5.zip[model_float32.h5]",
  2579. "format": "Keras v2.7.0",
  2580. "link": "https://github.com/lutzroeder/netron/issues/540"
  2581. },
  2582. {
  2583. "type": "keras",
  2584. "target": "model_hydra.h5",
  2585. "source": "https://github.com/lutzroeder/netron/files/10398337/model_hydra.h5.zip[model_hydra.h5]",
  2586. "format": "Keras v2.11.0",
  2587. "link": "https://github.com/lutzroeder/netron/issues/1035"
  2588. },
  2589. {
  2590. "type": "keras",
  2591. "target": "multi_input_and_output_model.keras",
  2592. "source": "https://github.com/lutzroeder/netron/files/13275502/functional_api.zip[multi_input_and_output_model.keras]",
  2593. "format": "Keras v0.1.7",
  2594. "link": "https://github.com/lutzroeder/netron/issues/1180"
  2595. },
  2596. {
  2597. "type": "keras",
  2598. "target": "NASNetMobile.h5.zip",
  2599. "source": "https://github.com/lutzroeder/netron/files/6098153/NASNetMobile.h5.zip",
  2600. "format": "Keras v2.4.0",
  2601. "link": "https://github.com/lutzroeder/netron/issues/57"
  2602. },
  2603. {
  2604. "type": "keras",
  2605. "target": "nested_bidrectional.h5",
  2606. "source": "https://github.com/lutzroeder/netron/files/4304644/nested_bidrectional.zip[nested_bidrectional.h5]",
  2607. "format": "Keras v2.3.1",
  2608. "link": "https://github.com/lutzroeder/netron/issues/428"
  2609. },
  2610. {
  2611. "type": "keras",
  2612. "target": "nested.h5.keras",
  2613. "source": "https://github.com/lutzroeder/netron/files/13324444/nested.zip[nested.h5.keras]",
  2614. "format": "Keras v2.14.0",
  2615. "link": "https://github.com/lutzroeder/netron/issues/57"
  2616. },
  2617. {
  2618. "type": "keras",
  2619. "target": "nested.h5/config.json,nested.h5/model.weights.h5",
  2620. "source": "https://github.com/lutzroeder/netron/files/13432710/nested.h5.zip[config.json,model.weights.h5]",
  2621. "format": "Keras",
  2622. "link": "https://github.com/lutzroeder/netron/issues/57"
  2623. },
  2624. {
  2625. "type": "keras",
  2626. "target": "nested.npz.keras",
  2627. "source": "https://github.com/lutzroeder/netron/files/13324444/nested.zip[nested.npz.keras]",
  2628. "format": "Keras v2.14.0",
  2629. "link": "https://github.com/lutzroeder/netron/issues/57"
  2630. },
  2631. {
  2632. "type": "keras",
  2633. "target": "nested.npz/config.json,nested.npz/model.weights.npz",
  2634. "source": "https://github.com/lutzroeder/netron/files/13432711/nested.npz.zip[config.json,model.weights.npz]",
  2635. "format": "Keras",
  2636. "link": "https://github.com/lutzroeder/netron/issues/57"
  2637. },
  2638. {
  2639. "type": "keras",
  2640. "target": "nested_bidrectional.weights",
  2641. "source": "https://github.com/lutzroeder/netron/files/4304644/nested_bidrectional.zip[nested_bidrectional_weights.h5]",
  2642. "format": "Keras Weights v2.3.1",
  2643. "link": "https://github.com/lutzroeder/netron/issues/428"
  2644. },
  2645. {
  2646. "type": "keras",
  2647. "target": "nietzsche.h5",
  2648. "source": "https://github.com/lutzroeder/netron/files/2592329/keras_models.zip[nietzsche.h5]",
  2649. "format": "Keras v2.1.3",
  2650. "link": "https://github.com/lutzroeder/netron/issues/57"
  2651. },
  2652. {
  2653. "type": "keras",
  2654. "target": "pickle_utils.keras",
  2655. "source": "https://github.com/lutzroeder/netron/files/12034968/pickle_utils.zip[pickle_utils.keras]",
  2656. "format": "Keras v2.13.1",
  2657. "link": "https://github.com/lutzroeder/netron/issues/1120"
  2658. },
  2659. {
  2660. "type": "keras",
  2661. "target": "pickle_utils.pkl",
  2662. "source": "https://github.com/lutzroeder/netron/files/12034968/pickle_utils.zip[pickle_utils.pkl]",
  2663. "format": "Keras v2.13.1",
  2664. "link": "https://github.com/lutzroeder/netron/issues/1120"
  2665. },
  2666. {
  2667. "type": "keras",
  2668. "target": "residual_cnn.h5",
  2669. "source": "https://github.com/lutzroeder/netron/files/2592329/keras_models.zip[residual_cnn.h5]",
  2670. "format": "Keras v2.1.2",
  2671. "link": "https://github.com/lutzroeder/netron/issues/57"
  2672. },
  2673. {
  2674. "type": "keras",
  2675. "target": "resnet50.h5.keras",
  2676. "source": "https://github.com/lutzroeder/netron/files/13324443/resnet50.zip[resnet50.h5.keras]",
  2677. "format": "Keras v0.1.7",
  2678. "link": "https://github.com/lutzroeder/netron/issues/57"
  2679. },
  2680. {
  2681. "type": "keras",
  2682. "target": "resnet50.npz.keras",
  2683. "source": "https://github.com/lutzroeder/netron/files/13324443/resnet50.zip[resnet50.npz.keras]",
  2684. "format": "Keras v0.1.7",
  2685. "link": "https://github.com/lutzroeder/netron/issues/57"
  2686. },
  2687. {
  2688. "type": "keras",
  2689. "target": "resnet50_weights_tf_dim_ordering_tf_kernels.h5",
  2690. "source": "https://github.com/fchollet/deep-learning-models/releases/download/v0.2/resnet50_weights_tf_dim_ordering_tf_kernels.h5",
  2691. "format": "Keras Weights"
  2692. },
  2693. {
  2694. "type": "keras",
  2695. "target": "resnet50_csv_16.json",
  2696. "source": "https://github.com/lutzroeder/netron/files/4202466/resnet50_csv_16.json.zip[resnet50_csv_16.json]",
  2697. "format": "Keras",
  2698. "link": "https://github.com/lutzroeder/netron/issues/426"
  2699. },
  2700. {
  2701. "type": "keras",
  2702. "target": "sentiment_model.h5",
  2703. "source": "https://github.com/lutzroeder/netron/files/2592329/keras_models.zip[sentiment_model.h5]",
  2704. "format": "Keras v2.1.3",
  2705. "link": "https://github.com/lutzroeder/netron/issues/57"
  2706. },
  2707. {
  2708. "type": "keras",
  2709. "target": "siamese_net.json",
  2710. "source": "https://github.com/lutzroeder/netron/files/2592353/siamese_net.json.zip[siamese_net.json]",
  2711. "format": "Keras",
  2712. "link": "https://github.com/lutzroeder/netron/issues/130"
  2713. },
  2714. {
  2715. "type": "keras",
  2716. "target": "snapshot_parent_0097.h5",
  2717. "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",
  2718. "error": "File format is not HDF5 Weights.",
  2719. "link": "https://github.com/uber-research/deep-neuroevolution"
  2720. },
  2721. {
  2722. "type": "keras",
  2723. "target": "tecogan_model.h5",
  2724. "source": "https://nnabla.org/pretrained-models/nnabla-examples/GANs/tecogan/tecogan_model.h5",
  2725. "format": "HDF5 Weights",
  2726. "link": "https://github.com/sony/nnabla-examples/issues/192"
  2727. },
  2728. {
  2729. "type": "keras",
  2730. "target": "time_distributed.h5",
  2731. "source": "https://github.com/lutzroeder/netron/files/2592329/keras_models.zip[time_distributed.h5]",
  2732. "format": "Keras v2.1.2",
  2733. "link": "https://github.com/lutzroeder/netron/issues/57"
  2734. },
  2735. {
  2736. "type": "keras",
  2737. "target": "thisnotworks.h5",
  2738. "source": "https://github.com/lutzroeder/netron/files/7764266/thisnotworks.h5.zip[thisnotworks.h5]",
  2739. "format": "Keras v2.4.0",
  2740. "runtime": "tensorflow",
  2741. "link": "https://github.com/lutzroeder/netron/issues/540"
  2742. },
  2743. {
  2744. "type": "keras",
  2745. "target": "tiny-yolo-voc.h5",
  2746. "source": "https://raw.githubusercontent.com/hollance/YOLO-CoreML-MPSNNGraph/master/Convert/yad2k/model_data/tiny-yolo-voc.h5",
  2747. "format": "Keras v1.2.2",
  2748. "link": "https://github.com/hollance/YOLO-CoreML-MPSNNGraph/tree/master/Convert/yad2k/model_data"
  2749. },
  2750. {
  2751. "type": "keras",
  2752. "target": "yolov3-tiny.h5",
  2753. "source": "https://github.com/lutzroeder/netron/files/5823763/yolov3-tiny.h5.zip[yolov3-tiny.h5]",
  2754. "format": "Keras v2.4.0",
  2755. "runtime": "tensorflow",
  2756. "link": "https://github.com/lutzroeder/netron/issues/540"
  2757. },
  2758. {
  2759. "type": "keras",
  2760. "target": "test11.h5",
  2761. "source": "https://github.com/lutzroeder/netron/files/7874228/test11.h5.zip[test11.h5]",
  2762. "format": "HDF5 Weights",
  2763. "link": "https://github.com/lutzroeder/netron/issues/467"
  2764. },
  2765. {
  2766. "type": "keras",
  2767. "target": "tiramisu_fc_dense103_model.json",
  2768. "source": "https://raw.githubusercontent.com/0bserver07/One-Hundred-Layers-Tiramisu/master/tiramisu_fc_dense103_model.json",
  2769. "format": "Keras v2.0.2",
  2770. "runtime": "tensorflow",
  2771. "link": "https://github.com/0bserver07/One-Hundred-Layers-Tiramisu"
  2772. },
  2773. {
  2774. "type": "keras",
  2775. "target": "VGG19.h5.zip",
  2776. "source": "https://github.com/lutzroeder/netron/files/6098155/VGG19.h5.zip",
  2777. "link": "https://github.com/lutzroeder/netron/issues/57"
  2778. },
  2779. {
  2780. "type": "kmodel",
  2781. "target": "cifar10.kmodel",
  2782. "source": "https://github.com/lutzroeder/netron/files/7965167/cifar10.kmodel.zip[cifar10.kmodel]",
  2783. "format": "kmodel v3",
  2784. "link": "https://github.com/lutzroeder/netron/issues/871"
  2785. },
  2786. {
  2787. "type": "kmodel",
  2788. "target": "deskv2beta4.kmodel",
  2789. "source": "https://github.com/lutzroeder/netron/files/9040640/deskv2beta4.kmodel.zip[deskv2beta4.kmodel]",
  2790. "format": "kmodel v4",
  2791. "link": "https://github.com/lutzroeder/netron/issues/871"
  2792. },
  2793. {
  2794. "type": "kmodel",
  2795. "target": "iris.kmodel",
  2796. "source": "https://github.com/lutzroeder/netron/files/8111178/iris.kmodel.zip[iris.kmodel]",
  2797. "format": "kmodel v4",
  2798. "link": "https://github.com/lutzroeder/netron/issues/871"
  2799. },
  2800. {
  2801. "type": "kmodel",
  2802. "target": "LPbox_1_branch.kmodel",
  2803. "source": "https://github.com/lutzroeder/netron/files/8402871/LPbox_1_branch.kmodel.zip[LPbox_1_branch.kmodel]",
  2804. "format": "kmodel v4",
  2805. "link": "https://github.com/lutzroeder/netron/issues/871"
  2806. },
  2807. {
  2808. "type": "kmodel",
  2809. "target": "mbnetv1.kmodel",
  2810. "source": "https://github.com/lutzroeder/netron/files/8111310/mbnetv1.kmodel.zip[mbnetv1.kmodel]",
  2811. "format": "kmodel v3",
  2812. "link": "https://github.com/lutzroeder/netron/issues/871"
  2813. },
  2814. {
  2815. "type": "kmodel",
  2816. "target": "mbnet75.kmodel",
  2817. "source": "https://github.com/lutzroeder/netron/files/9040676/mbnet75.kmodel.zip[mbnet75.kmodel]",
  2818. "format": "kmodel v4",
  2819. "link": "https://github.com/lutzroeder/netron/issues/871"
  2820. },
  2821. {
  2822. "type": "kmodel",
  2823. "target": "mobilenet_v2.kmodel",
  2824. "source": "https://github.com/lutzroeder/netron/files/7965168/mobilenet_v2.kmodel.zip[mobilenet_v2.kmodel]",
  2825. "format": "kmodel v5",
  2826. "link": "https://github.com/lutzroeder/netron/issues/871"
  2827. },
  2828. {
  2829. "type": "kmodel",
  2830. "target": "model.kmodel",
  2831. "source": "https://github.com/lutzroeder/netron/files/8111371/model.kmodel.zip[model.kmodel]",
  2832. "format": "kmodel v4",
  2833. "link": "https://github.com/lutzroeder/netron/issues/871"
  2834. },
  2835. {
  2836. "type": "kmodel",
  2837. "target": "mnist.kmodel",
  2838. "source": "https://github.com/lutzroeder/netron/files/8111312/mnist.kmodel.zip[mnist.kmodel]",
  2839. "format": "kmodel v5",
  2840. "link": "https://github.com/lutzroeder/netron/issues/871"
  2841. },
  2842. {
  2843. "type": "kmodel",
  2844. "target": "RFB-320.kmodel",
  2845. "source": "https://github.com/lutzroeder/netron/files/7965166/RFB-320.kmodel.zip[RFB-320.kmodel]",
  2846. "format": "kmodel v4",
  2847. "link": "https://github.com/lutzroeder/netron/issues/871"
  2848. },
  2849. {
  2850. "type": "kmodel",
  2851. "target": "test1.kmodel",
  2852. "source": "https://github.com/lutzroeder/netron/files/8568261/test1.kmodel.zip[test1.kmodel]",
  2853. "format": "kmodel v4",
  2854. "link": "https://github.com/lutzroeder/netron/issues/871"
  2855. },
  2856. {
  2857. "type": "kmodel",
  2858. "target": "ulffd_landmark.kmodel",
  2859. "source": "https://github.com/lutzroeder/netron/files/8111629/ulffd_landmark.kmodel.zip[ulffd_landmark.kmodel]",
  2860. "format": "kmodel v4",
  2861. "link": "https://github.com/lutzroeder/netron/issues/871"
  2862. },
  2863. {
  2864. "type": "kmodel",
  2865. "target": "yolofast.kmodel",
  2866. "source": "https://github.com/lutzroeder/netron/files/8758983/yolofast.kmodel.zip[yolofast.kmodel]",
  2867. "format": "kmodel v5",
  2868. "link": "https://github.com/lutzroeder/netron/issues/871"
  2869. },
  2870. {
  2871. "type": "kmodel",
  2872. "target": "yolox_nano_224.kmodel",
  2873. "source": "https://github.com/lutzroeder/netron/files/8695383/yolox_nano_224.kmodel.zip[yolox_nano_224.kmodel]",
  2874. "format": "kmodel v5",
  2875. "link": "https://github.com/lutzroeder/netron/issues/871"
  2876. },
  2877. {
  2878. "type": "lasagne",
  2879. "target": "net2.pkl",
  2880. "source": "https://raw.githubusercontent.com/Aabglov/LasaganeTest/master/results/net2.pkl",
  2881. "format": "Lasagne",
  2882. "link": "https://github.com/Aabglov/LasaganeTest"
  2883. },
  2884. {
  2885. "type": "lightgbm",
  2886. "target": "rf_classifier.model",
  2887. "source": "https://github.com/lutzroeder/netron/files/6329766/rf_classifier.model.zip[rf_classifier.model]",
  2888. "format": "LightGBM v3",
  2889. "tags": "quantization",
  2890. "link": "https://github.com/lutzroeder/netron/issues/669"
  2891. },
  2892. {
  2893. "type": "lightgbm",
  2894. "target": "simple_example.pkl",
  2895. "source": "https://github.com/lutzroeder/netron/files/5978325/simple_example.pkl.zip[simple_example.pkl]",
  2896. "format": "LightGBM Pickle v2",
  2897. "tags": "quantization",
  2898. "link": "https://github.com/lutzroeder/netron/issues/669"
  2899. },
  2900. {
  2901. "type": "lightgbm",
  2902. "target": "simple_example.txt",
  2903. "source": "https://github.com/lutzroeder/netron/files/5832361/simple_example.txt.zip[simple_example.txt]",
  2904. "format": "LightGBM v3",
  2905. "link": "https://github.com/lutzroeder/netron/issues/669"
  2906. },
  2907. {
  2908. "type": "mediapipe",
  2909. "target": "clipped_images_from_file_at_24fps.pbtxt",
  2910. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/graphs/media_sequence/clipped_images_from_file_at_24fps.pbtxt",
  2911. "format": "MediaPipe",
  2912. "link": "https://github.com/google/mediapipe"
  2913. },
  2914. {
  2915. "type": "mediapipe",
  2916. "target": "cpu_oss_hairsegment.pbtxt",
  2917. "source": "https://github.com/lutzroeder/netron/files/5760736/cpu_oss_hairsegment.pbtxt.zip[cpu_oss_hairsegment.pbtxt]",
  2918. "format": "MediaPipe",
  2919. "link": "https://github.com/lutzroeder/netron/issues/423"
  2920. },
  2921. {
  2922. "type": "mediapipe",
  2923. "target": "face_detection_mobile_cpu.pbtxt",
  2924. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/graphs/face_detection/face_detection_mobile_cpu.pbtxt",
  2925. "format": "MediaPipe",
  2926. "link": "https://github.com/google/mediapipe"
  2927. },
  2928. {
  2929. "type": "mediapipe",
  2930. "target": "face_landmarks_from_pose_cpu.pbtxt",
  2931. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/modules/holistic_landmark/face_landmarks_from_pose_cpu.pbtxt",
  2932. "format": "MediaPipe",
  2933. "link": "https://github.com/lutzroeder/netron/issues/550"
  2934. },
  2935. {
  2936. "type": "mediapipe",
  2937. "target": "hand_detection_mobile.pbtxt",
  2938. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/graphs/hand_tracking/hand_detection_mobile.pbtxt",
  2939. "format": "MediaPipe",
  2940. "link": "https://github.com/google/mediapipe"
  2941. },
  2942. {
  2943. "type": "mediapipe",
  2944. "target": "hand_tracking.pbtxt",
  2945. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/modules/holistic_landmark/hand_tracking.pbtxt",
  2946. "format": "MediaPipe",
  2947. "link": "https://github.com/lutzroeder/netron/issues/550"
  2948. },
  2949. {
  2950. "type": "mediapipe",
  2951. "target": "hand_tracking_mobile.pbtxt",
  2952. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/graphs/hand_tracking/hand_tracking_mobile.pbtxt",
  2953. "format": "MediaPipe",
  2954. "link": "https://github.com/google/mediapipe"
  2955. },
  2956. {
  2957. "type": "mediapipe",
  2958. "target": "object_detection_desktop_live.pbtxt",
  2959. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/examples/coral/graphs/object_detection_desktop_live.pbtxt",
  2960. "format": "MediaPipe",
  2961. "link": "https://github.com/google/mediapipe"
  2962. },
  2963. {
  2964. "type": "mediapipe",
  2965. "target": "object_occlusion_tracking.pbtxt",
  2966. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/graphs/object_detection_3d/object_occlusion_tracking.pbtxt",
  2967. "format": "MediaPipe",
  2968. "link": "https://github.com/lutzroeder/netron/issues/444"
  2969. },
  2970. {
  2971. "type": "mediapipe",
  2972. "target": "tvl1_flow_and_rgb_from_file.pbtxt",
  2973. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/graphs/media_sequence/tvl1_flow_and_rgb_from_file.pbtxt",
  2974. "format": "MediaPipe",
  2975. "link": "https://github.com/google/mediapipe"
  2976. },
  2977. {
  2978. "type": "mediapipe",
  2979. "target": "yt8m_dataset_model_inference.pbtxt",
  2980. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/graphs/youtube8m/yt8m_dataset_model_inference.pbtxt",
  2981. "format": "MediaPipe",
  2982. "link": "https://github.com/google/mediapipe"
  2983. },
  2984. {
  2985. "type": "megengine",
  2986. "target": "add_with_data.mge",
  2987. "source": "https://github.com/lutzroeder/netron/files/10529167/add_with_data.mge.zip[add_with_data.mge]",
  2988. "format": "MegEngine Mge v2",
  2989. "link": "https://github.com/lutzroeder/netron/issues/607"
  2990. },
  2991. {
  2992. "type": "megengine",
  2993. "target": "mge_duplicate_value.tm",
  2994. "source": "https://github.com/lutzroeder/netron/files/14964811/mge_duplicate_value.tm.zip[mge_duplicate_value.tm]",
  2995. "format": "MegEngine v1.12.2",
  2996. "link": "https://github.com/lutzroeder/netron/issues/607"
  2997. },
  2998. {
  2999. "type": "megengine",
  3000. "target": "mobilenetv1.tm",
  3001. "source": "https://github.com/lutzroeder/netron/files/9257882/mobilenetv1.tm.zip[mobilenetv1.tm]",
  3002. "format": "MegEngine v1.10.0",
  3003. "assert": "model.modules[0].nodes[1].inputs[4].value[0].type.shape.dimensions[1] == 32",
  3004. "link": "https://github.com/lutzroeder/netron/issues/607"
  3005. },
  3006. {
  3007. "type": "megengine",
  3008. "target": "mobilenetv3-large.mge",
  3009. "source": "https://github.com/lutzroeder/netron/files/10379182/mobilenetv3-large.mge.zip[mobilenetv3-large.mge]",
  3010. "format": "MegEngine Mge v2",
  3011. "link": "https://github.com/lutzroeder/netron/issues/607"
  3012. },
  3013. {
  3014. "type": "megengine",
  3015. "target": "shufflenet_v2_x1_0.tm",
  3016. "source": "https://github.com/lutzroeder/netron/files/9257733/shufflenet_v2_x1_0.tm.zip[shufflenet_v2_x1_0.tm]",
  3017. "format": "MegEngine v1.10.0",
  3018. "assert": "model.modules[0].nodes.length == 351",
  3019. "link": "https://github.com/lutzroeder/netron/issues/607"
  3020. },
  3021. {
  3022. "type": "megengine",
  3023. "target": "shufflenetv2.mge",
  3024. "source": "https://github.com/lutzroeder/netron/files/10379184/shufflenetv2.mge.zip[shufflenetv2.mge]",
  3025. "format": "MegEngine Mge v2",
  3026. "link": "https://github.com/lutzroeder/netron/issues/607"
  3027. },
  3028. {
  3029. "type": "megengine",
  3030. "target": "test.mge",
  3031. "source": "https://github.com/lutzroeder/netron/files/10379177/test.mge.zip[test.mge]",
  3032. "format": "MegEngine Mge v2",
  3033. "link": "https://github.com/lutzroeder/netron/issues/607"
  3034. },
  3035. {
  3036. "type": "message",
  3037. "target": "inception_v3_traced.message",
  3038. "source": "https://github.com/user-attachments/files/17640875/inception_v3_traced.message.zip[inception_v3_traced.message]",
  3039. "format": "TorchScript v2.6.0.dev20241105",
  3040. "link": "https://github.com/lutzroeder/netron/issues/607"
  3041. },
  3042. {
  3043. "type": "message",
  3044. "target": "resnet34.maxviz",
  3045. "source": "https://github.com/lutzroeder/netron/files/13421032/resnet34.maxviz.zip[resnet34.maxviz]",
  3046. "tags": "skip-render",
  3047. "format": "Modular v0.0",
  3048. "link": "https://github.com/lutzroeder/netron/issues/1187"
  3049. },
  3050. {
  3051. "type": "mlnet",
  3052. "target": "BinaryClassification_AutoML_SentimentModel.zip",
  3053. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/BinaryClassification_AutoML/SentimentAnalysis/MLModels/SentimentModel.zip",
  3054. "format": "ML.NET v1.0.27701.1",
  3055. "link": "https://github.com/dotnet/machinelearning-samples"
  3056. },
  3057. {
  3058. "type": "mlnet",
  3059. "target": "BikeDemandForecasting.zip",
  3060. "source": "https://github.com/lutzroeder/netron/files/4042150/MLModel.zip",
  3061. "format": "ML.NET v1.4.28305.1",
  3062. "link": "https://github.com/dotnet/machinelearning-samples"
  3063. },
  3064. {
  3065. "type": "mlnet",
  3066. "target": "ep_model1.zip",
  3067. "source": "https://github.com/lutzroeder/netron/files/4216033/ep_model1.zip",
  3068. "format": "ML.NET v1.0.0.0",
  3069. "link": "https://github.com/lutzroeder/netron/issues/170"
  3070. },
  3071. {
  3072. "type": "mlnet",
  3073. "target": "ep_model3.zip",
  3074. "source": "https://github.com/lutzroeder/netron/files/4216304/ep_model3.zip",
  3075. "format": "ML.NET v1.0.0.0",
  3076. "link": "https://github.com/lutzroeder/netron/issues/170"
  3077. },
  3078. {
  3079. "type": "mlnet",
  3080. "target": "FastTreeModel.zip",
  3081. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/Regression_BikeSharingDemand/BikeSharingDemand/MLModels/FastTreeModel.zip",
  3082. "format": "ML.NET v1.0.0.0",
  3083. "link": "https://github.com/dotnet/machinelearning-samples"
  3084. },
  3085. {
  3086. "type": "mlnet",
  3087. "target": "FastTreeTweedieModel.zip",
  3088. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/Regression_BikeSharingDemand/BikeSharingDemand/MLModels/FastTreeTweedieModel.zip",
  3089. "format": "ML.NET v1.0.0.0",
  3090. "link": "https://github.com/dotnet/machinelearning-samples"
  3091. },
  3092. {
  3093. "type": "mlnet",
  3094. "target": "GitHubLabelerModel.zip",
  3095. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/end-to-end-apps/MulticlassClassification-GitHubLabeler/GitHubLabeler/MLModels/GitHubLabelerModel.zip",
  3096. "format": "ML.NET v1.0.27701.1",
  3097. "link": "https://github.com/dotnet/machinelearning-samples"
  3098. },
  3099. {
  3100. "type": "mlnet",
  3101. "target": "ImageClassification.Predict.imageClassifier.zip",
  3102. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/DeepLearning_TensorFlowEstimator/ImageClassification.Predict/assets/inputs/MLNETModel/imageClassifier.zip",
  3103. "format": "ML.NET v1.4.28230.4",
  3104. "link": "https://github.com/dotnet/machinelearning-samples"
  3105. },
  3106. {
  3107. "type": "mlnet",
  3108. "target": "IrisClassificationModel.zip",
  3109. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/MulticlassClassification_Iris/IrisClassification/MLModels/IrisClassificationModel.zip",
  3110. "format": "ML.NET v1.0.0.0",
  3111. "link": "https://github.com/dotnet/machinelearning-samples"
  3112. },
  3113. {
  3114. "type": "mlnet",
  3115. "target": "MovieRecommender_Model.zip",
  3116. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/end-to-end-apps/Recommendation-MovieRecommender/MovieRecommender_Model/Model/model.zip",
  3117. "format": "ML.NET v1.4.28230.4",
  3118. "link": "https://github.com/dotnet/machinelearning-samples"
  3119. },
  3120. {
  3121. "type": "mlnet",
  3122. "target": "ngram.zip",
  3123. "source": "https://github.com/lutzroeder/netron/files/4216079/ngram.zip",
  3124. "format": "ML.NET v3.10.29.504",
  3125. "link": "https://github.com/lutzroeder/netron/issues/170"
  3126. },
  3127. {
  3128. "type": "mlnet",
  3129. "target": "PoissonModel.zip",
  3130. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/Regression_BikeSharingDemand/BikeSharingDemand/MLModels/PoissonModel.zip",
  3131. "format": "ML.NET v1.0.0.0",
  3132. "link": "https://github.com/dotnet/machinelearning-samples"
  3133. },
  3134. {
  3135. "type": "mlnet",
  3136. "target": "product_month_fastTreeTweedie.zip",
  3137. "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",
  3138. "format": "ML.NET v1.3.28006.10",
  3139. "link": "https://github.com/dotnet/machinelearning-samples"
  3140. },
  3141. {
  3142. "type": "mlnet",
  3143. "target": "ProductSalesChangePointModel.zip",
  3144. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/end-to-end-apps/AnomalyDetection-Sales/SpikeDetectionE2EApp/MLModels/ProductSalesChangePointModel.zip",
  3145. "format": "ML.NET v1.4.28305.1",
  3146. "link": "https://github.com/dotnet/machinelearning-samples"
  3147. },
  3148. {
  3149. "type": "mlnet",
  3150. "target": "ProductSalesSpikeModel.zip",
  3151. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/end-to-end-apps/AnomalyDetection-Sales/SpikeDetectionE2EApp/MLModels/ProductSalesSpikeModel.zip",
  3152. "format": "ML.NET v1.4.28305.1",
  3153. "link": "https://github.com/dotnet/machinelearning-samples"
  3154. },
  3155. {
  3156. "type": "mlnet",
  3157. "target": "randomizedPca.zip",
  3158. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/AnomalyDetection_CreditCardFraudDetection/CreditCardFraudDetection.Predictor/assets/input/randomizedPca.zip",
  3159. "format": "ML.NET v1.2.27902.10",
  3160. "link": "https://github.com/dotnet/machinelearning-samples"
  3161. },
  3162. {
  3163. "type": "mlnet",
  3164. "target": "retailClustering.zip",
  3165. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/Clustering_CustomerSegmentation/CustomerSegmentation.Train/assets/outputs/retailClustering.zip",
  3166. "format": "ML.NET v1.0.27701.1",
  3167. "link": "https://github.com/dotnet/machinelearning-samples"
  3168. },
  3169. {
  3170. "type": "mlnet",
  3171. "target": "SDCAModel.zip",
  3172. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/Regression_BikeSharingDemand/BikeSharingDemand/MLModels/SDCAModel.zip",
  3173. "format": "ML.NET v1.0.0.0",
  3174. "link": "https://github.com/dotnet/machinelearning-samples"
  3175. },
  3176. {
  3177. "type": "mlnet",
  3178. "target": "TaxiFareModel.zip",
  3179. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/Regression_AutoML/TaxiFarePrediction/MLModels/TaxiFareModel.zip",
  3180. "format": "ML.NET v1.5.28926.5",
  3181. "link": "https://github.com/dotnet/machinelearning-samples"
  3182. },
  3183. {
  3184. "type": "mlnet",
  3185. "target": "termlookup_with_key.zip",
  3186. "source": "https://github.com/lutzroeder/netron/files/4216237/termlookup_with_key.zip",
  3187. "format": "ML.NET v1.0.0.0",
  3188. "link": "https://github.com/lutzroeder/netron/issues/170"
  3189. },
  3190. {
  3191. "type": "mlnet",
  3192. "target": "TinyYoloModel.zip",
  3193. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/61b428c746f39069a9d1d92f9e0f819e6beb30f3/samples/csharp/end-to-end-apps/DeepLearning_ObjectDetection_Onnx/OnnxObjectDetectionE2EAPP/ML/MLNETModel/TinyYoloModel.zip",
  3194. "format": "ML.NET v1.0.27701.1"
  3195. },
  3196. {
  3197. "type": "mlir",
  3198. "target": "1043.mlir",
  3199. "source": "https://github.com/lutzroeder/netron/files/14074683/1043.mlir.zip[1043.mlir]",
  3200. "format": "MLIR",
  3201. "link": "https://github.com/lutzroeder/netron/issues/1044"
  3202. },
  3203. {
  3204. "type": "mlir",
  3205. "target": "example.mlir",
  3206. "source": "https://github.com/user-attachments/files/17792104/example.mlir.zip[example.mlir]",
  3207. "format": "MLIR",
  3208. "error": "Expected token of type '=', but got '%' at 10:59.",
  3209. "link": "https://github.com/lutzroeder/netron/issues/1044"
  3210. },
  3211. {
  3212. "type": "mlir",
  3213. "target": "examples.mnist_xla.mlir",
  3214. "source": "https://github.com/lutzroeder/netron/files/10672271/examples.mnist_xla.mlir.zip[examples.mnist_xla.mlir]",
  3215. "format": "MLIR",
  3216. "link": "https://github.com/lutzroeder/netron/issues/1044"
  3217. },
  3218. {
  3219. "type": "mlir",
  3220. "target": "codegen.toy.mlir",
  3221. "source": "https://github.com/user-attachments/files/17878028/codegen.toy.mlir.zip[codegen.toy.mlir]",
  3222. "format": "MLIR",
  3223. "link": "https://github.com/lutzroeder/netron/issues/1044"
  3224. },
  3225. {
  3226. "type": "mlir",
  3227. "target": "ctlz.mlir",
  3228. "source": "https://github.com/user-attachments/files/17894431/ctlz.mlir.zip[ctlz.mlir]",
  3229. "format": "MLIR",
  3230. "link": "https://github.com/lutzroeder/netron/issues/1044"
  3231. },
  3232. {
  3233. "type": "mlir",
  3234. "target": "embedding_bm1684x_f16_tpu.mlir",
  3235. "source": "https://github.com/user-attachments/files/15525787/embedding_bm1684x_f16_tpu.mlir.txt",
  3236. "format": "MLIR",
  3237. "link": "https://github.com/lutzroeder/netron/issues/1044"
  3238. },
  3239. {
  3240. "type": "mlir",
  3241. "target": "gemmreluadd.onnx.mlir",
  3242. "source": "https://github.com/user-attachments/files/17640922/gemmreluadd.onnx.mlir.zip[gemmreluadd.onnx.mlir]",
  3243. "format": "MLIR",
  3244. "link": "https://github.com/lutzroeder/netron/issues/1044"
  3245. },
  3246. {
  3247. "type": "mlir",
  3248. "target": "gemm.onnx.mlir",
  3249. "source": "https://github.com/user-attachments/files/17775324/gemm.onnx.mlir.zip[gemm.onnx.mlir]",
  3250. "format": "MLIR",
  3251. "error": "Expected token of type '=', but got ')' at 50:37.",
  3252. "link": "https://github.com/lutzroeder/netron/issues/1044"
  3253. },
  3254. {
  3255. "type": "mlir",
  3256. "target": "mlp.mlir",
  3257. "source": "https://github.com/user-attachments/files/17264712/mlp.mlir.zip[mlp.mlir]",
  3258. "format": "MLIR",
  3259. "link": "https://github.com/lutzroeder/netron/issues/1044"
  3260. },
  3261. {
  3262. "type": "mlir",
  3263. "target": "mlp_haiku.mlir",
  3264. "source": "https://github.com/user-attachments/files/17260022/mlp_haiku.mlir.zip[mlp_haiku.mlir]",
  3265. "format": "MLIR",
  3266. "link": "https://github.com/lutzroeder/netron/issues/1044"
  3267. },
  3268. {
  3269. "type": "mlir",
  3270. "target": "mnist.onnx.mlir",
  3271. "source": "https://github.com/user-attachments/files/17640924/mnist.onnx.mlir.zip[mnist.onnx.mlir]",
  3272. "format": "MLIR",
  3273. "link": "https://github.com/lutzroeder/netron/issues/1044"
  3274. },
  3275. {
  3276. "type": "mlir",
  3277. "target": "mnist.onnx.dense.mlir",
  3278. "source": "https://github.com/user-attachments/files/17775783/mnist.onnx.dense.mlir.zip[mnist.onnx.dense.mlir]",
  3279. "format": "MLIR",
  3280. "link": "https://github.com/lutzroeder/netron/issues/1044"
  3281. },
  3282. {
  3283. "type": "mlir",
  3284. "target": "model.mlirbc",
  3285. "source": "https://github.com/user-attachments/files/17179955/model.mlirbc.zip[model.mlirbc]",
  3286. "format": "MLIR",
  3287. "error": "File contains unsupported MLIR bytecode data.",
  3288. "link": "https://github.com/lutzroeder/netron/issues/1044"
  3289. },
  3290. {
  3291. "type": "mlir",
  3292. "target": "resnet18-v1-op13-fp32-onnxzoo-simplified.onnx.mlir",
  3293. "source": "https://github.com/user-attachments/files/17640926/resnet18-v1-op13-fp32-onnxzoo-simplified.onnx.mlir.zip[resnet18-v1-op13-fp32-onnxzoo-simplified.onnx.mlir]",
  3294. "format": "MLIR",
  3295. "link": "https://github.com/lutzroeder/netron/issues/1044"
  3296. },
  3297. {
  3298. "type": "mlir",
  3299. "target": "sample.mlir",
  3300. "source": "https://github.com/user-attachments/files/17792073/sample.mlir.zip[sample.mlir]",
  3301. "format": "MLIR",
  3302. "error": "Unexpected operation name '>' at 4:58.",
  3303. "link": "https://github.com/lutzroeder/netron/issues/1044"
  3304. },
  3305. {
  3306. "type": "mlir",
  3307. "target": "sha256.mlir",
  3308. "source": "https://github.com/user-attachments/files/17788766/sha256.mlir.zip[sha256.mlir]",
  3309. "format": "MLIR",
  3310. "link": "https://github.com/lutzroeder/netron/issues/1044"
  3311. },
  3312. {
  3313. "type": "mlir",
  3314. "target": "stablehlo_ea.mlir",
  3315. "source": "https://github.com/user-attachments/files/21081168/stablehlo_ea.mlir.zip[stablehlo_ea.mlir]",
  3316. "format": "MLIR",
  3317. "link": "https://github.com/lutzroeder/netron/issues/1044"
  3318. },
  3319. {
  3320. "type": "mlir",
  3321. "target": "stablehlo_gpt_125M.mlir",
  3322. "source": "https://github.com/user-attachments/files/21081167/stablehlo_gpt_125M.mlir.zip[stablehlo_gpt_125M.mlir]",
  3323. "format": "MLIR",
  3324. "error": "Expected token of type ')', but got 'id' at 14:40.",
  3325. "link": "https://github.com/lutzroeder/netron/issues/1044"
  3326. },
  3327. {
  3328. "type": "mlir",
  3329. "target": "stablehlo_mlp.mlir",
  3330. "source": "https://github.com/user-attachments/files/21081165/stablehlo_mlp.mlir.zip[stablehlo_mlp.mlir]",
  3331. "format": "MLIR",
  3332. "link": "https://github.com/lutzroeder/netron/issues/1044"
  3333. },
  3334. {
  3335. "type": "mlir",
  3336. "target": "stablehlo_resnet18.mlir",
  3337. "source": "https://github.com/user-attachments/files/21081166/stablehlo_resnet18.mlir.zip[stablehlo_resnet18.mlir]",
  3338. "format": "MLIR",
  3339. "error": "Unexpected value '=' at 52:56.",
  3340. "link": "https://github.com/lutzroeder/netron/issues/1044"
  3341. },
  3342. {
  3343. "type": "mlir",
  3344. "target": "torch_mlir_3423.mlir",
  3345. "source": "https://github.com/user-attachments/files/17775259/torch-mlir-3423.mlir.zip[torch-mlir-3423.mlir]",
  3346. "format": "MLIR",
  3347. "link": "https://github.com/lutzroeder/netron/issues/1044"
  3348. },
  3349. {
  3350. "type": "mlir",
  3351. "target": "torch_mlir_3429.mlir",
  3352. "source": "https://github.com/user-attachments/files/17605115/torch_mlir_3429.mlir.zip[torch_mlir_3429.mlir]",
  3353. "format": "MLIR",
  3354. "link": "https://github.com/lutzroeder/netron/issues/1044"
  3355. },
  3356. {
  3357. "type": "mlir",
  3358. "target": "toy_gemms.mlir",
  3359. "source": "https://github.com/user-attachments/files/18049387/toy_gemms.mlir.zip[toy_gemms.mlir]",
  3360. "format": "MLIR",
  3361. "link": "https://github.com/lutzroeder/netron/issues/1044"
  3362. },
  3363. {
  3364. "type": "mlir",
  3365. "target": "versioned-op-2.0.mlirbc",
  3366. "source": "https://github.com/user-attachments/files/17174958/versioned-op-2.0.mlirbc.zip[versioned-op-2.0.mlirbc]",
  3367. "format": "MLIR",
  3368. "error": "File contains unsupported MLIR bytecode data.",
  3369. "link": "https://github.com/lutzroeder/netron/issues/1044"
  3370. },
  3371. {
  3372. "type": "mlir",
  3373. "target": "wcr.mlir",
  3374. "source": "https://github.com/user-attachments/files/17788767/wcr.mlir.zip[wcr.mlir]",
  3375. "format": "MLIR",
  3376. "link": "https://github.com/lutzroeder/netron/issues/1044"
  3377. },
  3378. {
  3379. "type": "mnn",
  3380. "target": "blazeface.mnn",
  3381. "source": "https://raw.githubusercontent.com/xindongzhang/MNN-APPLICATIONS/master/applications/blazeface/tensorflow/jni/blazeface.mnn",
  3382. "format": "MNN v2",
  3383. "error": "Invalid tensor data length.",
  3384. "link": "https://github.com/xindongzhang/MNN-APPLICATIONS"
  3385. },
  3386. {
  3387. "type": "mnn",
  3388. "target": "blazeface_quant.mnn",
  3389. "source": "https://raw.githubusercontent.com/xindongzhang/MNN-APPLICATIONS/master/applications/blazeface/tensorflow/jni/blazeface_quant.mnn",
  3390. "format": "MNN v2",
  3391. "link": "https://github.com/xindongzhang/MNN-APPLICATIONS"
  3392. },
  3393. {
  3394. "type": "mnn",
  3395. "target": "face_det.mnn",
  3396. "source": "https://raw.githubusercontent.com/xindongzhang/MNN-APPLICATIONS/master/applications/mssd/tflite/jni/face_det.mnn",
  3397. "format": "MNN v2",
  3398. "error": "Invalid tensor data length.",
  3399. "link": "https://github.com/xindongzhang/MNN-APPLICATIONS"
  3400. },
  3401. {
  3402. "type": "mnn",
  3403. "target": "Kmeans.mnn",
  3404. "source": "https://github.com/lutzroeder/netron/files/5405963/Kmeans.mnn.zip[Kmeans.mnn]",
  3405. "format": "MNN v2",
  3406. "link": "https://github.com/lutzroeder/netron/issues/341"
  3407. },
  3408. {
  3409. "type": "mnn",
  3410. "target": "inception-v3.mnn",
  3411. "source": "https://raw.githubusercontent.com/alibaba/MNN/master/benchmark/models/inception-v3.mnn",
  3412. "format": "MNN v2",
  3413. "link": "https://github.com/alibaba/MNN"
  3414. },
  3415. {
  3416. "type": "mnn",
  3417. "target": "inception-v3.mnn",
  3418. "source": "https://raw.githubusercontent.com/alibaba/MNN/master/benchmark/models/inception-v3.mnn",
  3419. "format": "MNN v2",
  3420. "link": "https://github.com/alibaba/MNN"
  3421. },
  3422. {
  3423. "type": "mnn",
  3424. "target": "mobilenet-v1-1.0.mnn",
  3425. "source": "https://raw.githubusercontent.com/alibaba/MNN/master/benchmark/models/mobilenet-v1-1.0.mnn",
  3426. "format": "MNN v2",
  3427. "link": "https://github.com/alibaba/MNN"
  3428. },
  3429. {
  3430. "type": "mnn",
  3431. "target": "MobileNetV2_224.mnn",
  3432. "source": "https://raw.githubusercontent.com/alibaba/MNN/master/benchmark/models/MobileNetV2_224.mnn",
  3433. "format": "MNN v2",
  3434. "link": "https://github.com/alibaba/MNN"
  3435. },
  3436. {
  3437. "type": "mnn",
  3438. "target": "resnet-v2-50.mnn",
  3439. "source": "https://raw.githubusercontent.com/alibaba/MNN/master/benchmark/models/resnet-v2-50.mnn",
  3440. "format": "MNN v2",
  3441. "link": "https://github.com/alibaba/MNN"
  3442. },
  3443. {
  3444. "type": "mnn",
  3445. "target": "simple.mnn",
  3446. "source": "https://github.com/lutzroeder/netron/files/3698466/simple.mnn.zip[simple.mnn]",
  3447. "format": "MNN v2",
  3448. "link": "https://github.com/lutzroeder/netron/issues/341"
  3449. },
  3450. {
  3451. "type": "mnn",
  3452. "target": "SqueezeNetV1.0.mnn",
  3453. "source": "https://raw.githubusercontent.com/alibaba/MNN/master/benchmark/models/SqueezeNetV1.0.mnn",
  3454. "format": "MNN v2",
  3455. "link": "https://github.com/alibaba/MNN"
  3456. },
  3457. {
  3458. "type": "mnn",
  3459. "target": "tf_body_det.mnn",
  3460. "source": "https://raw.githubusercontent.com/xindongzhang/MNN-APPLICATIONS/master/applications/mssd/tensorflow/jni/tf_body_det.mnn",
  3461. "format": "MNN v2",
  3462. "error": "Invalid tensor data length.",
  3463. "link": "https://github.com/xindongzhang/MNN-APPLICATIONS"
  3464. },
  3465. {
  3466. "type": "mslite",
  3467. "target": "blazeface_quant.ms",
  3468. "source": "https://github.com/lutzroeder/netron/files/6097966/blazeface_quant.ms.zip[blazeface_quant.ms]",
  3469. "error": "MSL0 format is deprecated.",
  3470. "link": "https://github.com/lutzroeder/netron/issues/600"
  3471. },
  3472. {
  3473. "type": "mslite",
  3474. "target": "control_flow_ut_while_0122.ms",
  3475. "source": "https://github.com/lutzroeder/netron/files/6097971/control_flow_ut_while_0122.ms.zip[control_flow_ut_while_0122.ms]",
  3476. "error": "MSL1 format is deprecated.",
  3477. "link": "https://github.com/lutzroeder/netron/issues/600"
  3478. },
  3479. {
  3480. "type": "mslite",
  3481. "target": "mnist",
  3482. "source": "https://github.com/lutzroeder/netron/files/6128484/mnist.ms.zip[mnist.ms]",
  3483. "tags": "quantization",
  3484. "format": "MindSpore Lite v1.2.0",
  3485. "link": "https://github.com/lutzroeder/netron/issues/600"
  3486. },
  3487. {
  3488. "type": "mslite",
  3489. "target": "squeezenet1.1.ms",
  3490. "source": "https://github.com/lutzroeder/netron/files/6128485/squeezenet1.1.ms.zip[squeezenet1.1.ms]",
  3491. "tags": "quantization",
  3492. "format": "MindSpore Lite v1.2.0",
  3493. "link": "https://github.com/lutzroeder/netron/issues/600"
  3494. },
  3495. {
  3496. "type": "mxnet",
  3497. "target": "bvlc_alexnet-symbol.zip",
  3498. "source": "https://github.com/lutzroeder/netron/files/11931595/bvlc_alexnet-symbol.zip",
  3499. "format": "MXNet v0.10.0",
  3500. "link": "https://github.com/lutzroeder/netron/issues/723"
  3501. },
  3502. {
  3503. "type": "mxnet",
  3504. "target": "crepe.mar",
  3505. "source": "https://github.com/lutzroeder/netron/files/11931753/crepe.mar.zip[crepe.mar]",
  3506. "format": "MXNet Model Archive v1.0",
  3507. "link": "https://github.com/lutzroeder/netron/issues/723"
  3508. },
  3509. {
  3510. "type": "mxnet",
  3511. "target": "conv_weights_sharing.json",
  3512. "source": "https://github.com/lutzroeder/netron/files/3016064/conv_weights_sharing.json.zip[conv_weights_sharing.json]",
  3513. "format": "MXNet v1.3.0",
  3514. "link": "https://github.com/lutzroeder/netron/issues/245"
  3515. },
  3516. {
  3517. "type": "mxnet",
  3518. "target": "deep3d-symbol.json",
  3519. "source": "https://raw.githubusercontent.com/dmlc/mxnet-gtc-tutorial/master/deep3d/deep3d-symbol.json",
  3520. "format": "MXNet",
  3521. "link": "https://github.com/dmlc/mxnet-gtc-tutorial/tree/master/deep3d"
  3522. },
  3523. {
  3524. "type": "mxnet",
  3525. "target": "dpn68-symbol.json",
  3526. "source": "http://s3.amazonaws.com/store.carml.org/models/mxnet/dpn68/dpn68-symbol.json",
  3527. "format": "MXNet",
  3528. "link": "https://github.com/rai-project/mxnet/blob/master/builtin_models/DPN68.yml"
  3529. },
  3530. {
  3531. "type": "mxnet",
  3532. "target": "ferplus.model",
  3533. "source": "https://s3.amazonaws.com/model-server/models/FERPlus/ferplus.model",
  3534. "format": "MXNet Model Server v0.2",
  3535. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  3536. },
  3537. {
  3538. "type": "mxnet",
  3539. "target": "inception_resnet_v2-symbol.json",
  3540. "source": "https://raw.githubusercontent.com/soeaver/mxnet-model/master/cls/inception/inception_resnet_v2-symbol.json",
  3541. "format": "MXNet v1.0.1",
  3542. "link": "https://github.com/soeaver/mxnet-model/tree/master/cls"
  3543. },
  3544. {
  3545. "type": "mxnet",
  3546. "target": "inception_v1.model",
  3547. "source": "https://s3.amazonaws.com/model-server/models/onnx-inception_v1/inception_v1.model",
  3548. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  3549. },
  3550. {
  3551. "type": "mxnet",
  3552. "target": "inception_v3-symbol.json",
  3553. "source": "https://raw.githubusercontent.com/soeaver/mxnet-model/master/cls/inception/inception_v3-symbol.json",
  3554. "format": "MXNet v0.11.0",
  3555. "link": "https://github.com/soeaver/mxnet-model/tree/master/cls"
  3556. },
  3557. {
  3558. "type": "mxnet",
  3559. "target": "Inception-7-symbol.json",
  3560. "source": "https://raw.githubusercontent.com/bzshang/yelp-photo-classification/master/mxnet_model/inception_v3/Inception-7-symbol.json",
  3561. "format": "MXNet",
  3562. "link": "https://github.com/bzshang/yelp-photo-classification/tree/master/mxnet_model/inception_v3"
  3563. },
  3564. {
  3565. "type": "mxnet",
  3566. "target": "Inception-BN.model",
  3567. "source": "https://s3.amazonaws.com/model-server/models/inception-bn/Inception-BN.model"
  3568. },
  3569. {
  3570. "type": "mxnet",
  3571. "target": "lstm_ptb.model",
  3572. "source": "https://github.com/lutzroeder/netron/files/11931628/lstm_ptb.model.zip[lstm_ptb.model]",
  3573. "format": "MXNet Model Server v0.1",
  3574. "link": "https://github.com/lutzroeder/netron/issues/723"
  3575. },
  3576. {
  3577. "type": "mxnet",
  3578. "target": "lstm_ptb-symbol.json",
  3579. "source": "https://s3.amazonaws.com/model-server/models/lstm_ptb/lstm_ptb-symbol.json",
  3580. "format": "MXNet v0.11.0",
  3581. "link": "https://github.com/awslabs/mxnet-model-server/tree/master/examples/lstm_ptb"
  3582. },
  3583. {
  3584. "type": "mxnet",
  3585. "target": "nin.model",
  3586. "source": "https://s3.amazonaws.com/model-server/models/nin/nin.model",
  3587. "format": "MXNet Model Server v0.1",
  3588. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  3589. },
  3590. {
  3591. "type": "mxnet",
  3592. "target": "resnet-18.model",
  3593. "source": "https://s3.amazonaws.com/model-server/models/resnet-18/resnet-18.model",
  3594. "format": "MXNet Model Server v0.1",
  3595. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  3596. },
  3597. {
  3598. "type": "mxnet",
  3599. "target": "resnet-50-0000.params.zip",
  3600. "source": "https://github.com/lutzroeder/netron/files/11931742/resnet-50-0000.params.zip",
  3601. "format": "MXNet",
  3602. "link": "https://github.com/lutzroeder/netron/issues/723"
  3603. },
  3604. {
  3605. "type": "mxnet",
  3606. "target": "resnext-101-64x4d.model",
  3607. "source": "https://github.com/lutzroeder/netron/files/6179250/resnext-101-64x4d.model.zip[resnext-101-64x4d.model]",
  3608. "format": "MXNet Model Server v0.1",
  3609. "runtime": "MXNet v0.12",
  3610. "link": "https://github.com/lutzroeder/netron/issues/286"
  3611. },
  3612. {
  3613. "type": "mxnet",
  3614. "target": "squeezenet_v1.1.model",
  3615. "source": "https://s3.amazonaws.com/model-server/models/squeezenet_v1.1/squeezenet_v1.1.model"
  3616. },
  3617. {
  3618. "type": "mxnet",
  3619. "target": "squeezenet_v1.1.mar",
  3620. "source": "https://s3.amazonaws.com/model-server/model_archive_1.0/squeezenet_v1.1.mar",
  3621. "format": "MXNet Model Archive v1.0",
  3622. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  3623. },
  3624. {
  3625. "type": "mxnet",
  3626. "target": "vgg16.mar",
  3627. "source": "https://github.com/lutzroeder/netron/files/6179223/vgg16.mar.zip[vgg16.mar]",
  3628. "format": "MXNet Model Archive v1.0",
  3629. "link": "https://github.com/lutzroeder/netron/issues/286"
  3630. },
  3631. {
  3632. "type": "ncnn",
  3633. "target": "0397.param",
  3634. "source": "https://github.com/lutzroeder/netron/files/14074806/0397.param.zip[0397.param]",
  3635. "format": "ncnn",
  3636. "link": "https://github.com/lutzroeder/netron/issues/397"
  3637. },
  3638. {
  3639. "type": "ncnn",
  3640. "target": "centerface.param,centerface.bin",
  3641. "source": "https://raw.githubusercontent.com/MirrorYuChen/ncnn_example/798f64b7d5f0b883e05cb994258d43658b0661b6/models/centerface.param,https://raw.githubusercontent.com/MirrorYuChen/ncnn_example/798f64b7d5f0b883e05cb994258d43658b0661b6/models/centerface.bin",
  3642. "format": "ncnn",
  3643. "assert": "model.modules[0].nodes[0].type.name == 'Convolution'",
  3644. "link": "https://github.com/MirrorYuChen/ncnn_example"
  3645. },
  3646. {
  3647. "type": "ncnn",
  3648. "target": "ch_recv4.ncnn.param,ch_recv4.ncnn.bin",
  3649. "source": "https://github.com/user-attachments/files/15937032/ch_recv4.ncnn.param.zip[ch_recv4.ncnn.param,ch_recv4.ncnn.bin]",
  3650. "format": "ncnn",
  3651. "link": "https://github.com/lutzroeder/netron/issues/296"
  3652. },
  3653. {
  3654. "type": "ncnn",
  3655. "target": "darknet_yolov2.zip",
  3656. "source": "https://github.com/user-attachments/files/15981002/darknet_yolov2.zip",
  3657. "format": "ncnn",
  3658. "assert": "model.modules[0].nodes[0].inputs[1].value[0].initializer.type.dataType == 'float32'",
  3659. "link": "https://github.com/lutzroeder/netron/issues/296"
  3660. },
  3661. {
  3662. "type": "ncnn",
  3663. "target": "darknet_yolov2.cfg.ncnn,darknet_yolov2.weights.ncnn",
  3664. "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",
  3665. "format": "ncnn",
  3666. "link": "https://github.com/00liujj/gen-ncnn-models"
  3667. },
  3668. {
  3669. "type": "ncnn",
  3670. "target": "encoder_jit_trace-pnnx.ncnn.param,encoder_jit_trace-pnnx.ncnn.bin",
  3671. "source": "https://huggingface.co/bookbot/sherpa-ncnn-pruned-transducer-stateless7-streaming-id/resolve/main/encoder_jit_trace-pnnx.ncnn.param?download=true,https://huggingface.co/bookbot/sherpa-ncnn-pruned-transducer-stateless7-streaming-id/resolve/main/encoder_jit_trace-pnnx.ncnn.bin?download=true",
  3672. "format": "ncnn",
  3673. "assert": "model.modules[0].nodes[845].inputs[1].value[0].quantization.type == 'lookup'",
  3674. "tags": "quantization,skip-render",
  3675. "link": "https://huggingface.co/bookbot/sherpa-ncnn-pruned-transducer-stateless7-streaming-id"
  3676. },
  3677. {
  3678. "type": "ncnn",
  3679. "target": "faces_wider_squeezenet.param,faces_wider_squeezenet.bin",
  3680. "source": "https://deepdetect.com/models/init/embedded/images/detection/squeezenet_ssd_faces_ncnn.tar.gz[faces_wider_squeezenet.param,faces_wider_squeezenet.bin]",
  3681. "format": "ncnn",
  3682. "link": "https://www.deepdetect.com/models/faces_embedded_ncnn"
  3683. },
  3684. {
  3685. "type": "ncnn",
  3686. "target": "frozen.pb.cfg.ncnn,frozen.pb.weights.ncnn",
  3687. "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",
  3688. "format": "ncnn",
  3689. "link": "https://github.com/00liujj/gen-ncnn-models"
  3690. },
  3691. {
  3692. "type": "ncnn",
  3693. "target": "googlenet.param",
  3694. "source": "https://raw.githubusercontent.com/Tencent/ncnn/master/benchmark/googlenet.param",
  3695. "format": "ncnn",
  3696. "link": "https://github.com/Tencent/ncnn"
  3697. },
  3698. {
  3699. "type": "ncnn",
  3700. "target": "joiner_jit_trace-pnnx.ncnn.int8.param,joiner_jit_trace-pnnx.ncnn.int8.bin",
  3701. "source": "https://github.com/user-attachments/files/16531037/joiner_jit_trace-pnnx.ncnn.int8.zip[joiner_jit_trace-pnnx.ncnn.int8.param,joiner_jit_trace-pnnx.ncnn.int8.bin]",
  3702. "format": "ncnn",
  3703. "assert": "model.modules[0].nodes[0].inputs[1].value[0].type.dataType == 'int8'",
  3704. "link": "https://github.com/lutzroeder/netron/issues/296"
  3705. },
  3706. {
  3707. "type": "ncnn",
  3708. "target": "mnet-opt.param,mnet-opt.bin",
  3709. "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",
  3710. "format": "ncnn",
  3711. "assert": "model.modules[0].nodes[0].inputs[1].value[0].type.dataType == 'float16'",
  3712. "link": "https://github.com/MirrorYuChen/ncnn_example"
  3713. },
  3714. {
  3715. "type": "ncnn",
  3716. "target": "mnet.25.zip",
  3717. "source": "https://github.com/lutzroeder/netron/files/6813063/mnet.25.zip",
  3718. "format": "ncnn",
  3719. "link": "https://github.com/lutzroeder/netron/issues/768"
  3720. },
  3721. {
  3722. "type": "ncnn",
  3723. "target": "mobilefacenet.bin,mobilefacenet.param",
  3724. "source": "https://raw.githubusercontent.com/GRAYKEY/mobilefacenet_ncnn/master/models/mobilefacenet.bin,https://raw.githubusercontent.com/GRAYKEY/mobilefacenet_ncnn/master/models/mobilefacenet.param",
  3725. "format": "ncnn",
  3726. "link": "https://github.com/GRAYKEY/mobilefacenet_ncnn"
  3727. },
  3728. {
  3729. "type": "ncnn",
  3730. "target": "mobilenetv2_yolov3.param",
  3731. "source": "https://raw.githubusercontent.com/Tencent/ncnn/master/benchmark/mobilenetv2_yolov3.param",
  3732. "format": "ncnn",
  3733. "tags": "validation",
  3734. "link": "https://github.com/Tencent/ncnn"
  3735. },
  3736. {
  3737. "type": "ncnn",
  3738. "target": "MobileNetSSD_deploy.param.bin,MobileNetSSD_deploy.bin",
  3739. "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",
  3740. "format": "ncnn",
  3741. "assert": "model.modules[0].nodes[1].type.name == 'Convolution'",
  3742. "link": "https://github.com/chehongshu/ncnnforandroid_objectiondetection_Mobilenetssd"
  3743. },
  3744. {
  3745. "type": "ncnn",
  3746. "target": "ncnn_yolo2_det3.bin,ncnn_yolo2_det3.param",
  3747. "source": "https://raw.githubusercontent.com/kyo055/ncnn_yolo2/master/models/det3.bin,https://raw.githubusercontent.com/kyo055/ncnn_yolo2/master/models/det3.param",
  3748. "format": "ncnn",
  3749. "link": "https://github.com/kyo055/ncnn_yolo2"
  3750. },
  3751. {
  3752. "type": "ncnn",
  3753. "target": "proxylessnasnet.param",
  3754. "source": "https://raw.githubusercontent.com/Tencent/ncnn/master/benchmark/proxylessnasnet.param",
  3755. "format": "ncnn",
  3756. "link": "https://github.com/Tencent/ncnn"
  3757. },
  3758. {
  3759. "type": "ncnn",
  3760. "target": "resnet18_int8.param",
  3761. "source": "https://raw.githubusercontent.com/Tencent/ncnn/master/benchmark/resnet18_int8.param",
  3762. "format": "ncnn",
  3763. "link": "https://github.com/Tencent/ncnn"
  3764. },
  3765. {
  3766. "type": "ncnn",
  3767. "target": "rnn-lstm-gru.param,rnn-lstm-gru.bin",
  3768. "source": "https://github.com/lutzroeder/netron/files/5800011/rnn-lstm-gru.zip[rnn-lstm-gru.param,rnn-lstm-gru.bin]",
  3769. "format": "ncnn",
  3770. "link": "https://github.com/lutzroeder/netron/issues/296"
  3771. },
  3772. {
  3773. "type": "ncnn",
  3774. "target": "shufflenet.param",
  3775. "source": "https://raw.githubusercontent.com/Tencent/ncnn/master/benchmark/shufflenet.param",
  3776. "format": "ncnn",
  3777. "link": "https://github.com/Tencent/ncnn"
  3778. },
  3779. {
  3780. "type": "ncnn",
  3781. "target": "squeezenet.param",
  3782. "source": "https://raw.githubusercontent.com/Tencent/ncnn/master/benchmark/squeezenet.param",
  3783. "format": "ncnn",
  3784. "link": "https://github.com/Tencent/ncnn"
  3785. },
  3786. {
  3787. "type": "ncnn",
  3788. "target": "squeezenet_v1.1.param.bin,squeezenet_v1.1.bin",
  3789. "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",
  3790. "format": "ncnn",
  3791. "link": "https://github.com/Tencent/ncnn"
  3792. },
  3793. {
  3794. "type": "ncnn",
  3795. "target": "squeezenet_v1.1.bin",
  3796. "source": "https://raw.githubusercontent.com/nihui/ncnn-android-squeezenet/master/app/src/main/assets/squeezenet_v1.1.bin",
  3797. "format": "ncnn",
  3798. "link": "https://github.com/Tencent/ncnn"
  3799. },
  3800. {
  3801. "type": "ncnn",
  3802. "target": "ssdmobilenet.param",
  3803. "source": "https://github.com/lutzroeder/netron/files/5165601/ssdmobilenet.zip[ssdmobilenet.param]",
  3804. "format": "ncnn",
  3805. "link": "https://github.com/lutzroeder/netron/issues/296"
  3806. },
  3807. {
  3808. "type": "ncnn",
  3809. "target": "test_nn_Conv1d.ncnn.param,test_nn_Conv1d.ncnn.bin",
  3810. "source": "https://github.com/lutzroeder/netron/files/7796942/ncnn-20211231.zip[test_nn_Conv3d.ncnn.param,test_nn_Conv3d.ncnn.bin]",
  3811. "format": "ncnn",
  3812. "link": "https://github.com/lutzroeder/netron/issues/296"
  3813. },
  3814. {
  3815. "type": "ncnn",
  3816. "target": "test_nn_Conv3d.ncnn.param,test_nn_Conv3d.ncnn.bin",
  3817. "source": "https://github.com/lutzroeder/netron/files/7796942/ncnn-20211231.zip[test_nn_Conv3d.ncnn.param,test_nn_Conv3d.ncnn.bin]",
  3818. "format": "ncnn",
  3819. "link": "https://github.com/lutzroeder/netron/issues/296"
  3820. },
  3821. {
  3822. "type": "ncnn",
  3823. "target": "test_nn_MultiheadAttention.ncnn.param,test_nn_MultiheadAttention.ncnn.bin",
  3824. "source": "https://github.com/lutzroeder/netron/files/7796942/ncnn-20211231.zip[test_nn_MultiheadAttention.ncnn.param,test_nn_MultiheadAttention.ncnn.bin]",
  3825. "format": "ncnn",
  3826. "link": "https://github.com/lutzroeder/netron/issues/296"
  3827. },
  3828. {
  3829. "type": "ncnn",
  3830. "target": "vgg16.param",
  3831. "source": "https://raw.githubusercontent.com/Tencent/ncnn/master/benchmark/vgg16.param",
  3832. "format": "ncnn",
  3833. "link": "https://github.com/Tencent/ncnn"
  3834. },
  3835. {
  3836. "type": "ncnn",
  3837. "target": "v5lite-i8e.param,v5lite-i8e.bin",
  3838. "source": "https://github.com/user-attachments/files/16321516/v5lite-i8e.zip[v5lite-i8e.param,v5lite-i8e.bin]",
  3839. "format": "ncnn",
  3840. "link": "https://github.com/Tencent/ncnn"
  3841. },
  3842. {
  3843. "type": "nnabla",
  3844. "target": "Resnet-18.nnp",
  3845. "source": "https://nnabla.org/pretrained-models/nnp_models/imagenet/Resnet-18/Resnet-18.nnp",
  3846. "format": "NNabla v0.1",
  3847. "link": "https://nnabla.readthedocs.io/en/latest/python/api/models/imagenet.html"
  3848. },
  3849. {
  3850. "type": "nnabla",
  3851. "target": "MobileNet-v2.nnp",
  3852. "source": "https://nnabla.org/pretrained-models/nnp_models/imagenet/MobileNet-v2/MobileNet-v2.nnp",
  3853. "format": "NNabla v0.1",
  3854. "link": "https://nnabla.readthedocs.io/en/latest/python/api/models/imagenet.html"
  3855. },
  3856. {
  3857. "type": "nnabla",
  3858. "target": "SqueezeNet-1.1.nnp",
  3859. "source": "https://nnabla.org/pretrained-models/nnp_models/imagenet/SqueezeNet-1.1/SqueezeNet-1.1.nnp",
  3860. "format": "NNabla v0.1",
  3861. "link": "https://nnabla.readthedocs.io/en/latest/python/api/models/imagenet.html"
  3862. },
  3863. {
  3864. "type": "nnabla",
  3865. "target": "NIN.nnp",
  3866. "source": "https://nnabla.org/pretrained-models/nnp_models/imagenet/NIN/NIN.nnp",
  3867. "format": "NNabla v0.1",
  3868. "link": "https://nnabla.readthedocs.io/en/latest/python/api/models/imagenet.html"
  3869. },
  3870. {
  3871. "type": "nnabla",
  3872. "target": "results.nnp",
  3873. "source": "https://github.com/lutzroeder/netron/files/14927097/results.nnp.zip[results.nnp]",
  3874. "format": "NNabla v0.1",
  3875. "link": "https://github.com/lutzroeder/netron/issues/759"
  3876. },
  3877. {
  3878. "type": "nnabla",
  3879. "target": "ShuffleNet-0.5x.nnp",
  3880. "source": "https://nnabla.org/pretrained-models/nnp_models/imagenet/ShuffleNet-0.5x/ShuffleNet-0.5x.nnp",
  3881. "format": "NNabla v0.1",
  3882. "link": "https://nnabla.readthedocs.io/en/latest/python/api/models/imagenet.html"
  3883. },
  3884. {
  3885. "type": "nnef",
  3886. "target": "squeezenet_v1.0.onnx.nnef.tgz",
  3887. "source": "https://github.com/user-attachments/files/15283489/squeezenet_v1.0.onnx.nnef.tgz",
  3888. "format": "NNEF v1.0",
  3889. "error": "NNEF v1.0 support not implemented.",
  3890. "link": "https://github.com/lutzroeder/netron/issues/1274"
  3891. },
  3892. {
  3893. "type": "numpy",
  3894. "target": "complex128.npy",
  3895. "source": "https://github.com/user-attachments/files/16554725/complex128.npy.zip[complex128.npy]",
  3896. "format": "NumPy Array",
  3897. "assert": "model.modules[0].nodes[0].inputs[0].value[0].type.dataType == 'complex128'",
  3898. "link": "https://github.com/lutzroeder/netron/issues/711"
  3899. },
  3900. {
  3901. "type": "numpy",
  3902. "target": "cifar10-1w-1a.npz",
  3903. "source": "https://raw.githubusercontent.com/Xilinx/BNN-PYNQ/master/bnn/src/training/cifar10-1w-1a.npz",
  3904. "format": "NumPy Archive",
  3905. "link": "https://github.com/Xilinx/BNN-PYNQ"
  3906. },
  3907. {
  3908. "type": "numpy",
  3909. "target": "float8_e5m2.npy",
  3910. "source": "https://github.com/user-attachments/files/16022842/float8_e5m2.npy.zip[float8_e5m2.npy]",
  3911. "format": "NumPy Array",
  3912. "link": "https://github.com/lutzroeder/netron/issues/711"
  3913. },
  3914. {
  3915. "type": "numpy",
  3916. "target": "mlp",
  3917. "source": "https://github.com/lutzroeder/netron/files/6225731/mlp.zip[mlp.npz]",
  3918. "format": "NumPy Archive",
  3919. "link": "https://github.com/lutzroeder/netron/issues/711"
  3920. },
  3921. {
  3922. "type": "numpy",
  3923. "target": "object.npy",
  3924. "source": "https://github.com/lutzroeder/netron/files/9485289/object.npy.zip[object.npy]",
  3925. "format": "NumPy Array",
  3926. "link": "https://github.com/lutzroeder/netron/issues/711"
  3927. },
  3928. {
  3929. "type": "numpy",
  3930. "target": "string_matrix.npy",
  3931. "source": "https://github.com/lutzroeder/netron/files/11854272/string_matrix.npy.zip[string_matrix.npy]",
  3932. "format": "NumPy Array",
  3933. "link": "https://github.com/lutzroeder/netron/issues/711"
  3934. },
  3935. {
  3936. "type": "numpy",
  3937. "target": "StringDType.npy",
  3938. "source": "https://github.com/user-attachments/files/16061374/StringDType.npy.zip[StringDType.npy]",
  3939. "format": "NumPy Array",
  3940. "link": "https://github.com/lutzroeder/netron/issues/711"
  3941. },
  3942. {
  3943. "type": "numpy",
  3944. "target": "struct.npy",
  3945. "source": "https://github.com/user-attachments/files/16075809/struct.npy.zip[struct.npy]",
  3946. "format": "NumPy Array",
  3947. "error": "Unexpected token '(', ...\" \"<U10\"], (\"age\", \"<\"... is not valid JSON",
  3948. "link": "https://github.com/lutzroeder/netron/issues/711"
  3949. },
  3950. {
  3951. "type": "numpy",
  3952. "target": "tensor.npy",
  3953. "source": "https://github.com/lutzroeder/netron/files/6225732/tensor.npy.zip[tensor.npy]",
  3954. "format": "NumPy Array",
  3955. "link": "https://github.com/lutzroeder/netron/issues/711"
  3956. },
  3957. {
  3958. "type": "numpy",
  3959. "target": "void.npy",
  3960. "source": "https://github.com/user-attachments/files/16075808/void.npy.zip[void.npy]",
  3961. "format": "NumPy Array",
  3962. "link": "https://github.com/lutzroeder/netron/issues/711"
  3963. },
  3964. {
  3965. "type": "onednn",
  3966. "target": "f8_matmul.json",
  3967. "source": "https://github.com/lutzroeder/netron/files/14018893/f8_matmul.json.zip[f8_matmul.json]",
  3968. "format": "oneDNN v3.3.0",
  3969. "link": "https://github.com/lutzroeder/netron/issues/1006"
  3970. },
  3971. {
  3972. "type": "onednn",
  3973. "target": "int4-matmul.json",
  3974. "source": "https://github.com/user-attachments/files/16884596/int4-matmul.json.zip[int4-matmul.json]",
  3975. "format": "oneDNN v3.6.0",
  3976. "link": "https://github.com/lutzroeder/netron/issues/1006"
  3977. },
  3978. {
  3979. "type": "onednn",
  3980. "target": "resnet50-sample-graph.json",
  3981. "source": "https://github.com/lutzroeder/netron/files/10065168/resnet50-sample-graph.json.zip[resnet50-sample-graph.json]",
  3982. "format": "oneDNN v3.0.0",
  3983. "link": "https://github.com/lutzroeder/netron/issues/1006"
  3984. },
  3985. {
  3986. "type": "onednn",
  3987. "target": "sample-graph-100001.json",
  3988. "source": "https://github.com/lutzroeder/netron/files/10037438/sample-graph-100001.json.zip[sample-graph-100001.json]",
  3989. "format": "oneDNN v3.0.0",
  3990. "link": "https://github.com/lutzroeder/netron/issues/1006"
  3991. },
  3992. {
  3993. "type": "onednn",
  3994. "target": "sample-graph-with-ports-100001.json",
  3995. "source": "https://github.com/lutzroeder/netron/files/11544591/sample-graph-with-ports-100001.json.zip[sample-graph-with-ports-100001.json]",
  3996. "format": "oneDNN v3.1.0",
  3997. "link": "https://github.com/lutzroeder/netron/issues/1006"
  3998. },
  3999. {
  4000. "type": "onnx",
  4001. "target": "arcface-resnet100.onnx.zip",
  4002. "source": "https://github.com/lutzroeder/netron/files/11943519/arcface-resnet100.onnx.zip",
  4003. "format": "ONNX v3",
  4004. "link": "https://github.com/lutzroeder/netron/issues/6"
  4005. },
  4006. {
  4007. "type": "onnx",
  4008. "target": "aten_sum_dim_onnx_inlined.onnx",
  4009. "source": "https://github.com/lutzroeder/netron/files/12811469/aten_sum_dim_onnx.txt.zip[aten_sum_dim_onnx_inlined.onnx]",
  4010. "format": "ONNX v8",
  4011. "link": "https://github.com/lutzroeder/netron/issues/884"
  4012. },
  4013. {
  4014. "type": "onnx",
  4015. "target": "aten_sum_dim_onnx.onnx",
  4016. "source": "https://github.com/lutzroeder/netron/files/12811469/aten_sum_dim_onnx.txt.zip[aten_sum_dim_onnx.onnx]",
  4017. "format": "ONNX v8",
  4018. "link": "https://github.com/lutzroeder/netron/issues/884"
  4019. },
  4020. {
  4021. "type": "onnx",
  4022. "target": "aten_sum_dim_onnx.txt",
  4023. "source": "https://github.com/lutzroeder/netron/files/12811469/aten_sum_dim_onnx.txt.zip[aten_sum_dim_onnx.txt]",
  4024. "format": "ONNX Text v8",
  4025. "link": "https://github.com/lutzroeder/netron/issues/884"
  4026. },
  4027. {
  4028. "type": "onnx",
  4029. "target": "bert-base-uncased.onnx.zip",
  4030. "source": "https://github.com/lutzroeder/netron/files/7705191/bert-base-uncased.onnx.zip",
  4031. "format": "ONNX v7",
  4032. "link": "https://github.com/lutzroeder/netron/issues/6"
  4033. },
  4034. {
  4035. "type": "onnx",
  4036. "target": "bertsquad-10.zip",
  4037. "source": "https://github.com/lutzroeder/netron/files/5251086/bertsquad-10.zip",
  4038. "format": "ONNX v5",
  4039. "producer": "tf2onnx 1.5.2",
  4040. "link": "https://github.com/onnx/models/blob/master/text/machine_comprehension/bert-squad/README.md"
  4041. },
  4042. {
  4043. "type": "onnx",
  4044. "target": "bfloat16.int32_data.onnx",
  4045. "source": "https://github.com/lutzroeder/netron/files/11740995/bfloat16.onnx.zip[bfloat16.int32_data.onnx]",
  4046. "format": "ONNX v8",
  4047. "producer": "onnx-example",
  4048. "link": "https://github.com/lutzroeder/netron/issues/6"
  4049. },
  4050. {
  4051. "type": "onnx",
  4052. "target": "bfloat16.raw_data.onnx",
  4053. "source": "https://github.com/lutzroeder/netron/files/11740995/bfloat16.onnx.zip[bfloat16.raw_data.onnx]",
  4054. "format": "ONNX v8",
  4055. "link": "https://github.com/lutzroeder/netron/issues/6"
  4056. },
  4057. {
  4058. "type": "onnx",
  4059. "target": "bidaf-9.onnx.zip",
  4060. "source": "https://github.com/lutzroeder/netron/files/6572387/bidaf-9.onnx.zip",
  4061. "format": "ONNX v4",
  4062. "producer": "CNTK 2.7",
  4063. "link": "https://github.com/lutzroeder/netron/issues/6"
  4064. },
  4065. {
  4066. "type": "onnx",
  4067. "target": "bvlc_alexnet_opset_3.onnx.zip",
  4068. "source": "https://github.com/lutzroeder/netron/files/5296267/bvlc_alexnet_opset_3.onnx.zip",
  4069. "format": "ONNX v3",
  4070. "link": "https://github.com/lutzroeder/netron/issues/6"
  4071. },
  4072. {
  4073. "type": "onnx",
  4074. "target": "candy.json.zip",
  4075. "source": "https://github.com/lutzroeder/netron/files/12329067/candy.json.zip",
  4076. "format": "ONNX v3",
  4077. "assert": "model.modules[0].nodes[2].attributes[1].visible == false",
  4078. "link": "https://github.com/lutzroeder/netron/issues/6"
  4079. },
  4080. {
  4081. "type": "onnx",
  4082. "target": "candy.onnx",
  4083. "source": "https://raw.githubusercontent.com/Microsoft/Windows-Machine-Learning/master/Samples/FNSCandyStyleTransfer/UWP/cs/Assets/candy.onnx",
  4084. "format": "ONNX v3",
  4085. "assert": "model.modules[0].nodes[2].attributes[1].visible == false",
  4086. "tags": "validation",
  4087. "link": "https://github.com/Microsoft/Windows-Machine-Learning/tree/master/Samples/FNSCandyStyleTransfer/UWP/cs/Assets"
  4088. },
  4089. {
  4090. "type": "onnx",
  4091. "target": "candy.ort",
  4092. "source": "https://github.com/lutzroeder/netron/files/6844795/candy.ort.zip[candy.ort]",
  4093. "format": "ONNX Runtime v3",
  4094. "tags": "validation",
  4095. "link": "https://github.com/lutzroeder/netron/issues/767"
  4096. },
  4097. {
  4098. "type": "onnx",
  4099. "target": "Clara_DenseNet_dynamo.onnx.zip",
  4100. "source": "https://github.com/user-attachments/files/15358151/Clara_DenseNet_dynamo.onnx.zip",
  4101. "format": "ONNX v8",
  4102. "link": "https://github.com/lutzroeder/netron/issues/1208"
  4103. },
  4104. {
  4105. "type": "onnx",
  4106. "target": "cnn.onnx",
  4107. "source": "https://github.com/lutzroeder/netron/files/7148909/cnn.onnx.zip[cnn.onnx]",
  4108. "format": "ONNX v6",
  4109. "tags": "skip-render",
  4110. "link": "https://github.com/lutzroeder/netron/issues/589"
  4111. },
  4112. {
  4113. "type": "onnx",
  4114. "target": "complex_init.onnx",
  4115. "source": "https://github.com/lutzroeder/netron/files/8582128/complex_init.onnx.zip[complex_init.onnx]",
  4116. "format": "ONNX v4",
  4117. "link": "https://github.com/lutzroeder/netron/issues/905"
  4118. },
  4119. {
  4120. "type": "onnx",
  4121. "target": "conv_autopad.onnx",
  4122. "source": "https://raw.githubusercontent.com/microsoft/onnxruntime/master/onnxruntime/test/testdata/conv_autopad.onnx",
  4123. "format": "ONNX v3",
  4124. "link": "https://github.com/microsoft/onnxruntime/tree/master/onnxruntime/test/testdata"
  4125. },
  4126. {
  4127. "type": "onnx",
  4128. "target": "coo_normal_sparse.onnx",
  4129. "source": "https://github.com/lutzroeder/netron/files/6080534/coo_normal_sparse.onnx.zip[coo_normal_sparse.onnx]",
  4130. "format": "ONNX v7",
  4131. "link": "https://github.com/lutzroeder/netron/issues/693"
  4132. },
  4133. {
  4134. "type": "onnx",
  4135. "target": "decoder_model_merged.onnx",
  4136. "source": "https://github.com/lutzroeder/netron/files/10830273/decoder_model_merged.onnx.zip[decoder_model_merged.onnx]",
  4137. "format": "ONNX v8",
  4138. "link": "https://github.com/lutzroeder/netron/issues/1052"
  4139. },
  4140. {
  4141. "type": "onnx",
  4142. "target": "denotation_Add_ImageNet1920WithImageMetadataBgr8_SRGB_0_255.onnx",
  4143. "source": "https://github.com/lutzroeder/netron/files/2587943/onnx_denotation_models.zip[denotation_Add_ImageNet1920WithImageMetadataBgr8_SRGB_0_255.onnx]",
  4144. "format": "ONNX v3",
  4145. "assert": "model.modules[0].nodes[0].outputs[0].value[0].type.denotation == 'Image(Bgr8,SRGB,NominalRange_0_255)'",
  4146. "link": "https://github.com/lutzroeder/netron/issues/183"
  4147. },
  4148. {
  4149. "type": "onnx",
  4150. "target": "denotation_Add_ImageNet1920WithImageMetadataBgra8_SRGB_0_255.onnx",
  4151. "source": "https://github.com/lutzroeder/netron/files/2587943/onnx_denotation_models.zip[denotation_Add_ImageNet1920WithImageMetadataBgra8_SRGB_0_255.onnx]",
  4152. "format": "ONNX v3",
  4153. "link": "https://github.com/lutzroeder/netron/issues/183"
  4154. },
  4155. {
  4156. "type": "onnx",
  4157. "target": "denotation_Add_ImageNet1920WithImageMetadataRgb8_SRGB_0_255.onnx",
  4158. "source": "https://github.com/lutzroeder/netron/files/2587943/onnx_denotation_models.zip[denotation_Add_ImageNet1920WithImageMetadataRgb8_SRGB_0_255.onnx]",
  4159. "format": "ONNX v3",
  4160. "link": "https://github.com/lutzroeder/netron/issues/183"
  4161. },
  4162. {
  4163. "type": "onnx",
  4164. "target": "denotation_Add_ImageNet1920WithImageMetadataRgba8_SRGB_0_255.onnx",
  4165. "source": "https://github.com/lutzroeder/netron/files/2587943/onnx_denotation_models.zip[denotation_Add_ImageNet1920WithImageMetadataRgba8_SRGB_0_255.onnx]",
  4166. "format": "ONNX v3",
  4167. "link": "https://github.com/lutzroeder/netron/issues/183"
  4168. },
  4169. {
  4170. "type": "onnx",
  4171. "target": "duplicate_function.onnx",
  4172. "source": "https://github.com/user-attachments/files/17901407/duplicate_function.onnx.zip[duplicate_function.onnx]",
  4173. "format": "ONNX v8",
  4174. "assert": "model.modules[0].nodes[0].type.nodes[0].type.name == 'Sub'",
  4175. "link": "https://github.com/lutzroeder/netron/issues/6"
  4176. },
  4177. {
  4178. "type": "onnx",
  4179. "target": "DocumentClassification.onnx",
  4180. "source": "https://github.com/lutzroeder/netron/files/2592479/DocumentClassification.onnx.zip[DocumentClassification.onnx]",
  4181. "format": "ONNX v3",
  4182. "link": "https://github.com/lutzroeder/netron/issues/6"
  4183. },
  4184. {
  4185. "type": "onnx",
  4186. "target": "EfficientDet-d0.onnx.zip",
  4187. "source": "https://github.com/user-attachments/files/17180063/EfficientDet-d0.onnx.zip",
  4188. "format": "ONNX v6",
  4189. "link": "https://github.com/lutzroeder/netron/issues/589"
  4190. },
  4191. {
  4192. "type": "onnx",
  4193. "target": "eisber_model3.pbtxt",
  4194. "source": "https://github.com/lutzroeder/netron/files/4209090/eisber_model3.pbtxt.zip[eisber_model3.pbtxt]",
  4195. "format": "ONNX v3",
  4196. "link": "https://github.com/lutzroeder/netron/issues/139"
  4197. },
  4198. {
  4199. "type": "onnx",
  4200. "target": "eisber_model3.pbtxt.gz",
  4201. "source": "https://github.com/lutzroeder/netron/files/6490172/eisber_model3.pbtxt.gz",
  4202. "format": "ONNX v3",
  4203. "link": "https://github.com/lutzroeder/netron/issues/249"
  4204. },
  4205. {
  4206. "type": "onnx",
  4207. "target": "eisber_model3_invalid.pbtxt",
  4208. "source": "https://github.com/lutzroeder/netron/files/5011185/eisber_model3_invalid.pbtxt.zip[eisber_model3_invalid.pbtxt]",
  4209. "error": "File text format is not onnx.ModelProto (Unexpected '}' instead of ':' at 6:3).",
  4210. "link": "https://github.com/lutzroeder/netron/issues/139"
  4211. },
  4212. {
  4213. "type": "onnx",
  4214. "target": "end2end_tfc_w1a1_oqnt_streamlined.onnx",
  4215. "source": "https://github.com/lutzroeder/netron/files/4885362/end2end_tfc_w1a1_oqnt_streamlined.zip[end2end_tfc_w1a1_oqnt_streamlined.onnx]",
  4216. "format": "ONNX v4",
  4217. "tags": "quantization",
  4218. "link": "https://github.com/lutzroeder/netron/issues/532"
  4219. },
  4220. {
  4221. "type": "onnx",
  4222. "target": "Exermote.onnx",
  4223. "source": "https://github.com/lutzroeder/netron/files/2592478/Exermote.onnx.zip[Exermote.onnx]",
  4224. "format": "ONNX v3",
  4225. "link": "https://github.com/lutzroeder/netron/issues/6"
  4226. },
  4227. {
  4228. "type": "onnx",
  4229. "target": "FastStyleNet.onnx",
  4230. "source": "https://raw.githubusercontent.com/tkat0/chainer-nnvm-example/master/models/chainer-fast-neuralstyle/FastStyleNet.onnx",
  4231. "format": "ONNX v1",
  4232. "producer": "Chainer 3.2.0"
  4233. },
  4234. {
  4235. "type": "onnx",
  4236. "target": "float4e2m1.pb",
  4237. "source": "https://github.com/user-attachments/files/16737906/float4e2m1.pb.zip[float4e2m1.pb]",
  4238. "format": "ONNX Tensor",
  4239. "assert": "model.modules[0].nodes[0].attributes[0].value.type.dataType == 'float4e2m1'",
  4240. "link": "https://github.com/lutzroeder/netron/issues/6"
  4241. },
  4242. {
  4243. "type": "onnx",
  4244. "target": "float8.onnx",
  4245. "source": "https://github.com/user-attachments/files/16737904/float8.onnx.zip[float8.onnx]",
  4246. "format": "ONNX v9",
  4247. "link": "https://github.com/lutzroeder/netron/issues/6"
  4248. },
  4249. {
  4250. "type": "onnx",
  4251. "target": "func_attr.onnx",
  4252. "source": "https://github.com/user-attachments/files/19379749/func_attr.onnx.zip[func_attr.onnx]",
  4253. "format": "ONNX v8",
  4254. "assert": "model.modules[0].nodes[1].type.attributes[1].value == 'some_value'",
  4255. "link": "https://github.com/lutzroeder/netron/issues/6"
  4256. },
  4257. {
  4258. "type": "onnx",
  4259. "target": "gather.json",
  4260. "source": "https://github.com/lutzroeder/netron/files/12306625/gather.json.zip[gather.json]",
  4261. "format": "ONNX v6",
  4262. "link": "https://github.com/lutzroeder/netron/issues/6"
  4263. },
  4264. {
  4265. "type": "onnx",
  4266. "target": "gpt2.onnx.zip",
  4267. "source": "https://github.com/lutzroeder/netron/files/11583198/gpt2.onnx.zip",
  4268. "format": "ONNX v7",
  4269. "link": "https://github.com/lutzroeder/netron/issues/6"
  4270. },
  4271. {
  4272. "type": "onnx",
  4273. "target": "gpt2-10.onnx.zip",
  4274. "source": "https://github.com/lutzroeder/netron/files/7786929/gpt2-10.onnx.zip",
  4275. "format": "ONNX v6",
  4276. "link": "https://github.com/lutzroeder/netron/issues/6"
  4277. },
  4278. {
  4279. "type": "onnx",
  4280. "target": "gpt2-lm-head-bs-12.onnx.zip",
  4281. "source": "https://github.com/user-attachments/files/17003061/gpt2-lm-head-bs-12.onnx.zip",
  4282. "format": "ONNX v7",
  4283. "link": "https://github.com/lutzroeder/netron/issues/6"
  4284. },
  4285. {
  4286. "type": "onnx",
  4287. "target": "gpt2_export.onnx.zip",
  4288. "source": "https://github.com/lutzroeder/netron/files/14189783/gpt2_export.onnx.zip",
  4289. "format": "ONNX v8",
  4290. "link": "https://github.com/lutzroeder/netron/issues/1208"
  4291. },
  4292. {
  4293. "type": "onnx",
  4294. "target": "if_k1.onnx",
  4295. "source": "https://github.com/user-attachments/files/19404101/if_k1.onnx.zip[if_k1.onnx]",
  4296. "format": "ONNX v6",
  4297. "link": "https://github.com/lutzroeder/netron/issues/6"
  4298. },
  4299. {
  4300. "type": "onnx",
  4301. "target": "if_test.pbtxt",
  4302. "source": "https://github.com/user-attachments/files/19404140/if_test.pbtxt.zip[if_test.pbtxt]",
  4303. "format": "ONNX v3",
  4304. "link": "https://github.com/lutzroeder/netron/issues/6"
  4305. },
  4306. {
  4307. "type": "onnx",
  4308. "target": "input_0.pb",
  4309. "source": "https://github.com/lutzroeder/netron/files/11067440/input_0.pb.zip[input_0.pb]",
  4310. "format": "ONNX Tensor",
  4311. "link": "https://github.com/lutzroeder/netron/issues/6"
  4312. },
  4313. {
  4314. "type": "onnx",
  4315. "target": "inception_v1_opset_9.onnx.zip",
  4316. "source": "https://github.com/lutzroeder/netron/files/15214459/inception_v1_opset_9.onnx.zip",
  4317. "format": "ONNX v3",
  4318. "link": "https://github.com/lutzroeder/netron/issues/6"
  4319. },
  4320. {
  4321. "type": "onnx",
  4322. "target": "inception_v2_opset_6.onnx.zip",
  4323. "source": "https://github.com/lutzroeder/netron/files/6572388/inception_v2_opset_6.onnx.zip",
  4324. "format": "ONNX v3",
  4325. "link": "https://github.com/lutzroeder/netron/issues/6"
  4326. },
  4327. {
  4328. "type": "onnx",
  4329. "target": "inception_v2_opset_9.onnx.zip",
  4330. "source": "https://github.com/lutzroeder/netron/files/6572391/inception_v2_opset_9.onnx.zip",
  4331. "format": "ONNX v3",
  4332. "link": "https://github.com/lutzroeder/netron/issues/6"
  4333. },
  4334. {
  4335. "type": "onnx",
  4336. "target": "int4.int32_data.pb",
  4337. "source": "https://github.com/lutzroeder/netron/files/13898075/int4.int32_data.pb.zip[int4.int32_data.pb]",
  4338. "format": "ONNX Tensor",
  4339. "link": "https://github.com/lutzroeder/netron/issues/6"
  4340. },
  4341. {
  4342. "type": "onnx",
  4343. "target": "issue_119.onnx",
  4344. "source": "https://github.com/lutzroeder/netron/files/10349170/issue_119.onnx.zip[issue_119.onnx]",
  4345. "format": "ONNX v4",
  4346. "link": "https://github.com/lutzroeder/netron/issues/119"
  4347. },
  4348. {
  4349. "type": "onnx",
  4350. "target": "issue_589.onnx.zip",
  4351. "source": "https://github.com/lutzroeder/netron/files/10349190/issue_589.onnx.zip",
  4352. "format": "ONNX v6",
  4353. "tags": "skip-render",
  4354. "link": "https://github.com/lutzroeder/netron/issues/589"
  4355. },
  4356. {
  4357. "type": "onnx",
  4358. "target": "issue_845.onnx",
  4359. "source": "https://github.com/lutzroeder/netron/files/10349194/issue_845.onnx.zip[issue_845.onnx]",
  4360. "format": "ONNX v4",
  4361. "link": "https://github.com/lutzroeder/netron/issues/6"
  4362. },
  4363. {
  4364. "type": "onnx",
  4365. "target": "issue_1029.onnx",
  4366. "source": "https://github.com/lutzroeder/netron/files/10344328/issue_1029.onnx.zip[issue_1029.onnx]",
  4367. "format": "ONNX v8",
  4368. "link": "https://github.com/lutzroeder/netron/issues/1029"
  4369. },
  4370. {
  4371. "type": "onnx",
  4372. "target": "issue_1138.json",
  4373. "source": "https://github.com/lutzroeder/netron/files/12343742/issue_1138.json.zip[issue_1138.json]",
  4374. "format": "ONNX v9",
  4375. "link": "https://github.com/lutzroeder/netron/issues/1138"
  4376. },
  4377. {
  4378. "type": "onnx",
  4379. "target": "issue_1138.onnx",
  4380. "source": "https://github.com/lutzroeder/netron/files/12343684/issue_1138.onnx.zip[issue_1138.onnx]",
  4381. "format": "ONNX v9",
  4382. "link": "https://github.com/lutzroeder/netron/issues/1138"
  4383. },
  4384. {
  4385. "type": "onnx",
  4386. "target": "Kmeans.onnx",
  4387. "source": "https://github.com/lutzroeder/netron/files/2592495/Kmeans.onnx.zip[Kmeans.onnx]",
  4388. "format": "ONNX v3",
  4389. "producer": "ML.NET 0.7.27009.0",
  4390. "link": "https://github.com/lutzroeder/netron/issues/6"
  4391. },
  4392. {
  4393. "type": "onnx",
  4394. "target": "Kmeans.pbtxt",
  4395. "source": "https://github.com/lutzroeder/netron/files/4209089/Kmeans.pbtxt.zip[Kmeans.pbtxt]",
  4396. "format": "ONNX v3",
  4397. "producer": "ML.NET 0.7.27009.0",
  4398. "link": "https://github.com/lutzroeder/netron/issues/139"
  4399. },
  4400. {
  4401. "type": "onnx",
  4402. "target": "LabelEncoder.onnx",
  4403. "source": "https://raw.githubusercontent.com/microsoft/onnxruntime/master/onnxruntime/test/testdata/LabelEncoder.onnx",
  4404. "format": "ONNX v3",
  4405. "link": "https://github.com/Microsoft/onnxruntime/tree/master/onnxruntime/test/testdata"
  4406. },
  4407. {
  4408. "type": "onnx",
  4409. "target": "Llama-3.2-1B-Instruct-q4f16.onnx.zip",
  4410. "source": "https://github.com/user-attachments/files/17198233/Llama-3.2-1B-Instruct-q4f16.onnx.zip",
  4411. "format": "ONNX v7",
  4412. "link": "https://github.com/lutzroeder/netron/issues/6"
  4413. },
  4414. {
  4415. "type": "onnx",
  4416. "target": "last_hidden_state_crf_jud.onnx",
  4417. "source": "https://github.com/lutzroeder/netron/files/7148912/last_hidden_state_crf_jud.onnx.zip[last_hidden_state_crf_jud.onnx]",
  4418. "format": "ONNX v6",
  4419. "tags": "skip-render",
  4420. "link": "https://github.com/lutzroeder/netron/issues/589"
  4421. },
  4422. {
  4423. "type": "onnx",
  4424. "target": "longformer.onnx.zip",
  4425. "source": "https://github.com/user-attachments/files/17266929/longformer.onnx.zip",
  4426. "format": "ONNX v9",
  4427. "link": "https://github.com/lutzroeder/netron/issues/6"
  4428. },
  4429. {
  4430. "type": "onnx",
  4431. "target": "loop_dlrm_s_pytorch.onnx",
  4432. "source": "https://github.com/user-attachments/files/19404092/loop_dlrm_s_pytorch.onnx.zip[loop_dlrm_s_pytorch.onnx]",
  4433. "format": "ONNX v6",
  4434. "link": "https://github.com/lutzroeder/netron/issues/6"
  4435. },
  4436. {
  4437. "type": "onnx",
  4438. "target": "loop_test.pbtxt",
  4439. "source": "https://github.com/user-attachments/files/19404142/loop_test.pbtxt.zip[loop_test.pbtxt]",
  4440. "format": "ONNX v3",
  4441. "link": "https://github.com/lutzroeder/netron/issues/6"
  4442. },
  4443. {
  4444. "type": "onnx",
  4445. "target": "maskDet_opt.onnx",
  4446. "source": "https://github.com/lutzroeder/netron/files/8238283/maskDet_opt.onnx.zip[maskDet_opt.onnx]",
  4447. "format": "ONNX v4",
  4448. "link": "https://github.com/lutzroeder/netron/issues/6"
  4449. },
  4450. {
  4451. "type": "onnx",
  4452. "target": "maskrcnn.onnx.zip",
  4453. "source": "https://github.com/lutzroeder/netron/files/5322320/maskrcnn.onnx.zip",
  4454. "format": "ONNX v6",
  4455. "link": "https://github.com/lutzroeder/netron/issues/6"
  4456. },
  4457. {
  4458. "type": "onnx",
  4459. "target": "mnist.onnx",
  4460. "source": "https://raw.githubusercontent.com/Microsoft/Windows-Machine-Learning/master/Samples/MNIST/Tutorial/cs/Assets/mnist.onnx",
  4461. "format": "ONNX v3",
  4462. "link": "https://github.com/Microsoft/Windows-Machine-Learning/tree/master/Samples/MNIST/Tutorial/cs/Assets"
  4463. },
  4464. {
  4465. "type": "onnx",
  4466. "target": "mlnet_encoder.onnx",
  4467. "source": "https://raw.githubusercontent.com/Microsoft/onnxruntime/master/onnxruntime/test/testdata/mlnet_encoder.onnx",
  4468. "format": "ONNX v3",
  4469. "link": "https://github.com/Microsoft/onnxruntime/tree/master/onnxruntime/test/testdata"
  4470. },
  4471. {
  4472. "type": "onnx",
  4473. "target": "model_local_func_test.onnx",
  4474. "source": "https://github.com/lutzroeder/netron/files/6845111/model_local_func_test.onnx.zip[model_local_func_test.onnx]",
  4475. "format": "ONNX v8",
  4476. "link": "https://github.com/lutzroeder/netron/issues/773"
  4477. },
  4478. {
  4479. "type": "onnx",
  4480. "target": "my_image_classifier.onnx",
  4481. "source": "https://github.com/lutzroeder/netron/files/13789981/my_image_classifier.zip[my_image_classifier.onnx]",
  4482. "format": "ONNX v8",
  4483. "assert": "model.modules[0].nodes[0].inputs.length == 1",
  4484. "link": "https://github.com/lutzroeder/netron/issues/1208"
  4485. },
  4486. {
  4487. "type": "onnx",
  4488. "target": "my_image_classifier.json",
  4489. "source": "https://github.com/user-attachments/files/17140902/my_image_classifier.json.zip[my_image_classifier.json]",
  4490. "format": "ONNX JSON v8",
  4491. "assert": "model.modules[0].nodes[0].inputs.length == 1",
  4492. "link": "https://github.com/lutzroeder/netron/issues/1208"
  4493. },
  4494. {
  4495. "type": "onnx",
  4496. "target": "nms_base_component.json",
  4497. "source": "https://github.com/lutzroeder/netron/files/12306626/nms_base_component.json.zip[nms_base_component.json]",
  4498. "format": "ONNX v8",
  4499. "link": "https://github.com/lutzroeder/netron/issues/6"
  4500. },
  4501. {
  4502. "type": "onnx",
  4503. "target": "null_graph.onnx",
  4504. "source": "https://github.com/user-attachments/files/15336270/null_graph.onnx.zip[null_graph.onnx]",
  4505. "format": "ONNX v3",
  4506. "assert": "model.modules.length == 0",
  4507. "producer": "OnnxMLTools 0.1.0.0000",
  4508. "link": "https://github.com/lutzroeder/netron/issues/6"
  4509. },
  4510. {
  4511. "type": "onnx",
  4512. "target": "optional_1.onnx",
  4513. "source": "https://raw.githubusercontent.com/microsoft/onnxruntime/master/onnxruntime/test/testdata/optional_1.onnx",
  4514. "format": "ONNX v3",
  4515. "link": "https://github.com/microsoft/onnxruntime/tree/master/onnxruntime/test/testdata"
  4516. },
  4517. {
  4518. "type": "onnx",
  4519. "target": "optional_type.json",
  4520. "source": "https://github.com/lutzroeder/netron/files/12329086/optional_type.json.zip[optional_type.json]",
  4521. "format": "ONNX v8",
  4522. "link": "https://github.com/lutzroeder/netron/issues/6"
  4523. },
  4524. {
  4525. "type": "onnx",
  4526. "target": "optional_type.onnx",
  4527. "source": "https://github.com/lutzroeder/netron/files/8746170/optional_type.onnx.zip[optional_type.onnx]",
  4528. "format": "ONNX v8",
  4529. "link": "https://github.com/lutzroeder/netron/issues/914"
  4530. },
  4531. {
  4532. "type": "onnx",
  4533. "target": "ort_github_issue_4031",
  4534. "source": "https://github.com/lutzroeder/netron/files/8191468/ort_github_issue_4031.onnx.ort.zip[ort_github_issue_4031.onnx.ort]",
  4535. "format": "ONNX Runtime v7",
  4536. "link": "https://github.com/lutzroeder/netron/issues/767"
  4537. },
  4538. {
  4539. "type": "onnx",
  4540. "target": "Phi-3-medium-128k-instruct-onnx-directml.onnx",
  4541. "source": "https://huggingface.co/microsoft/Phi-3-medium-128k-instruct-onnx-directml/resolve/main/directml-int4-awq-block-128/model.onnx?download=true",
  4542. "format": "ONNX v8",
  4543. "tags": "skip-render",
  4544. "link": "https://github.com/lutzroeder/netron/issues/6"
  4545. },
  4546. {
  4547. "type": "onnx",
  4548. "target": "phi3-mini-128k-instruct-cuda-fp16.onnx",
  4549. "source": "https://github.com/user-attachments/files/15370204/phi3-mini-128k-instruct-cuda-fp16.onnx.zip[phi3-mini-128k-instruct-cuda-fp16.onnx]",
  4550. "format": "ONNX v7",
  4551. "link": "https://github.com/lutzroeder/netron/issues/6"
  4552. },
  4553. {
  4554. "type": "onnx",
  4555. "target": "resnet18.onnx.zip",
  4556. "source": "https://github.com/user-attachments/files/17266931/resnet18.onnx.zip",
  4557. "format": "ONNX v9",
  4558. "assert": "model.modules[0].nodes[0].inputs[1].name == 'weight'",
  4559. "link": "https://github.com/lutzroeder/netron/issues/6"
  4560. },
  4561. {
  4562. "type": "onnx",
  4563. "target": "resnet50_opset_9.onnx.zip",
  4564. "source": "https://github.com/lutzroeder/netron/files/5296268/resnet50_opset_9.onnx.zip",
  4565. "format": "ONNX v3",
  4566. "link": "https://github.com/lutzroeder/netron/issues/6"
  4567. },
  4568. {
  4569. "type": "onnx",
  4570. "target": "reshape_opset_4.pb",
  4571. "source": "https://github.com/lutzroeder/netron/files/2592375/reshape_opset.zip[reshape_opset_4.pb]",
  4572. "format": "ONNX v3",
  4573. "link": "https://github.com/lutzroeder/netron/pull/97"
  4574. },
  4575. {
  4576. "type": "onnx",
  4577. "target": "reshape_opset_6.pb",
  4578. "source": "https://github.com/lutzroeder/netron/files/2592375/reshape_opset.zip[reshape_opset_6.pb]",
  4579. "format": "ONNX v3",
  4580. "link": "https://github.com/lutzroeder/netron/pull/97"
  4581. },
  4582. {
  4583. "type": "onnx",
  4584. "target": "s2.onnx",
  4585. "source": "https://github.com/lutzroeder/netron/files/6191354/s2.onnx.zip[s2.onnx]",
  4586. "format": "ONNX v6",
  4587. "link": "https://github.com/lutzroeder/netron/issues/647"
  4588. },
  4589. {
  4590. "type": "onnx",
  4591. "target": "scan_test.pbtxt",
  4592. "source": "https://github.com/user-attachments/files/19404143/scan_test.pbtxt.zip[scan_test.pbtxt]",
  4593. "format": "ONNX v3",
  4594. "link": "https://github.com/lutzroeder/netron/issues/6"
  4595. },
  4596. {
  4597. "type": "onnx",
  4598. "target": "shufflenet_float16.onnx",
  4599. "source": "https://github.com/lutzroeder/netron/files/2592368/shufflenet_float16.onnx.zip[shufflenet_float16.onnx]",
  4600. "format": "ONNX v3",
  4601. "link": "https://github.com/lutzroeder/netron/issues/186"
  4602. },
  4603. {
  4604. "type": "onnx",
  4605. "target": "sklearn_bin_voting_classifier_soft.ort",
  4606. "source": "https://github.com/lutzroeder/netron/files/8191675/sklearn_bin_voting_classifier_soft.ort.zip[sklearn_bin_voting_classifier_soft.ort]",
  4607. "format": "ONNX Runtime v6",
  4608. "link": "https://github.com/lutzroeder/netron/issues/767"
  4609. },
  4610. {
  4611. "type": "onnx",
  4612. "target": "sparse_const.onnx",
  4613. "source": "https://github.com/lutzroeder/netron/files/5198627/sparse_const.zip[sparse_const.onnx]",
  4614. "format": "ONNX v7",
  4615. "link": "https://github.com/lutzroeder/netron/issues/6"
  4616. },
  4617. {
  4618. "type": "onnx",
  4619. "target": "sparse_initializer_as_output.json",
  4620. "source": "https://github.com/lutzroeder/netron/files/12444489/sparse_initializer_as_output.json.zip[sparse_initializer_as_output.json]",
  4621. "format": "ONNX v7",
  4622. "assert": "model.modules[0].outputs[0].value[0].type.layout == 'sparse'",
  4623. "link": "https://github.com/lutzroeder/netron/issues/741"
  4624. },
  4625. {
  4626. "type": "onnx",
  4627. "target": "sparse_initializer_as_output.onnx",
  4628. "source": "https://github.com/lutzroeder/netron/files/6512243/sparse_initializer_as_output.onnx.zip[sparse_initializer_as_output.onnx]",
  4629. "format": "ONNX v7",
  4630. "link": "https://github.com/lutzroeder/netron/issues/741"
  4631. },
  4632. {
  4633. "type": "onnx",
  4634. "target": "sparse_to_dense_matmul.onnx",
  4635. "source": "https://github.com/lutzroeder/netron/files/12444490/sparse_to_dense_matmul.onnx.zip[sparse_to_dense_matmul.onnx]",
  4636. "format": "ONNX v7",
  4637. "assert": "model.modules[0].nodes[0].inputs[0].value[0].type.layout == 'sparse'",
  4638. "link": "https://github.com/lutzroeder/netron/issues/741"
  4639. },
  4640. {
  4641. "type": "onnx",
  4642. "target": "squeezenet.onnx",
  4643. "source": "https://raw.githubusercontent.com/onnx/tutorials/master/tutorials/assets/squeezenet.onnx",
  4644. "format": "ONNX v1",
  4645. "producer": "pytorch 0.2"
  4646. },
  4647. {
  4648. "type": "onnx",
  4649. "target": "squeezenet1.1.onnx",
  4650. "source": "https://s3.amazonaws.com/onnx-model-zoo/squeezenet/squeezenet1.1/squeezenet1.1.onnx",
  4651. "format": "ONNX v3",
  4652. "link": "https://github.com/onnx/models/tree/main/vision/classification/squeezenet"
  4653. },
  4654. {
  4655. "type": "onnx",
  4656. "target": "squeezenet1.1_shape.onnx",
  4657. "source": "https://github.com/lutzroeder/netron/files/3935903/squeezenet1.1_shape.onnx.zip[squeezenet1.1_shape.onnx]",
  4658. "format": "ONNX v3",
  4659. "link": "https://github.com/lutzroeder/netron/issues/6"
  4660. },
  4661. {
  4662. "type": "onnx",
  4663. "target": "squeezenet1.1.pb",
  4664. "source": "https://s3.amazonaws.com/onnx-model-zoo/squeezenet/squeezenet1.1/squeezenet1.1.onnx",
  4665. "format": "ONNX v3",
  4666. "link": "https://github.com/onnx/models/tree/main/models/image_classification/squeezenet"
  4667. },
  4668. {
  4669. "type": "onnx",
  4670. "target": "squeezenet1.1.tgz",
  4671. "source": "https://s3.amazonaws.com/onnx-model-zoo/squeezenet/squeezenet1.1/squeezenet1.1.tar.gz",
  4672. "format": "ONNX v3",
  4673. "link": "https://github.com/onnx/models/tree/main/models/image_classification/squeezenet"
  4674. },
  4675. {
  4676. "type": "onnx",
  4677. "target": "ssd.onnx.zip",
  4678. "source": "https://github.com/lutzroeder/netron/files/5296269/ssd.onnx.zip",
  4679. "format": "ONNX v4",
  4680. "link": "https://github.com/lutzroeder/netron/issues/6"
  4681. },
  4682. {
  4683. "type": "onnx",
  4684. "target": "super_resolution.onnx",
  4685. "source": "https://github.com/user-attachments/files/18726996/super_resolution.onnx.zip[super_resolution.onnx]",
  4686. "format": "ONNX",
  4687. "link": "https://github.com/lutzroeder/netron/issues/6"
  4688. },
  4689. {
  4690. "type": "onnx",
  4691. "target": "super_resolution_0.2.onnx",
  4692. "source": "https://gist.github.com/zhreshold/bcda4716699ac97ea44f791c24310193/raw/93672b029103648953c4e5ad3ac3aadf346a4cdc/super_resolution_0.2.onnx",
  4693. "format": "ONNX v1",
  4694. "producer": "pytorch 0.2",
  4695. "link": "https://gist.github.com/zhreshold/bcda4716699ac97ea44f791c24310193"
  4696. },
  4697. {
  4698. "type": "onnx",
  4699. "target": "test_LSTM_tanh_bidirectional.onnx",
  4700. "source": "https://github.com/user-attachments/files/15957377/test_LSTM_tanh_bidirectional.onnx.zip[test_LSTM_tanh_bidirectional.onnx]",
  4701. "format": "ONNX v3",
  4702. "link": "https://github.com/lutzroeder/netron/issues/6"
  4703. },
  4704. {
  4705. "type": "onnx",
  4706. "target": "test_mi_overloaded_function.onnx",
  4707. "source": "https://github.com/lutzroeder/netron/files/14812772/test_mi_overloaded_function.zip[test_mi_overloaded_function.onnx]",
  4708. "format": "ONNX v10",
  4709. "assert": "model.modules[0].nodes[0].type.identifier == 'cast:to_int32'",
  4710. "link": "https://github.com/lutzroeder/netron/issues/884"
  4711. },
  4712. {
  4713. "type": "onnx",
  4714. "target": "test_mi_overloaded_function.txt",
  4715. "source": "https://github.com/lutzroeder/netron/files/14812772/test_mi_overloaded_function.zip[test_mi_overloaded_function.txt]",
  4716. "format": "ONNX Text v10",
  4717. "link": "https://github.com/lutzroeder/netron/issues/884"
  4718. },
  4719. {
  4720. "type": "onnx",
  4721. "target": "test_RNN_bidirectional_one_layer_relu.onnx",
  4722. "source": "https://github.com/user-attachments/files/15957378/test_RNN_bidirectional_one_layer_relu.onnx.zip[test_RNN_bidirectional_one_layer_relu.onnx]",
  4723. "format": "ONNX v3",
  4724. "link": "https://github.com/lutzroeder/netron/issues/6"
  4725. },
  4726. {
  4727. "type": "onnx",
  4728. "target": "test_lstm_with_peepholes.onnx",
  4729. "source": "https://github.com/lutzroeder/netron/files/15123905/test_lstm_with_peepholes.onnx.zip[test_lstm_with_peepholes.onnx]",
  4730. "format": "ONNX v7",
  4731. "link": "https://github.com/lutzroeder/netron/issues/6"
  4732. },
  4733. {
  4734. "type": "onnx",
  4735. "target": "text_constant.txt",
  4736. "source": "https://github.com/lutzroeder/netron/files/8189630/text_constant.txt.zip[text_constant.txt]",
  4737. "format": "ONNX Text v0",
  4738. "link": "https://github.com/lutzroeder/netron/issues/884"
  4739. },
  4740. {
  4741. "type": "onnx",
  4742. "target": "text_function.txt",
  4743. "source": "https://github.com/lutzroeder/netron/files/8189629/text_function.txt.zip[text_function.txt]",
  4744. "format": "ONNX Text v8",
  4745. "link": "https://github.com/lutzroeder/netron/issues/884"
  4746. },
  4747. {
  4748. "type": "onnx",
  4749. "target": "text_example.txt",
  4750. "source": "https://github.com/lutzroeder/netron/files/8190032/text_example.txt.zip[text_example.txt]",
  4751. "format": "ONNX Text v7",
  4752. "link": "https://github.com/lutzroeder/netron/issues/884"
  4753. },
  4754. {
  4755. "type": "onnx",
  4756. "target": "transformer.onnx.zip",
  4757. "source": "https://github.com/lutzroeder/netron/files/10291185/transformer.onnx.zip",
  4758. "format": "ONNX v7",
  4759. "link": "https://github.com/lutzroeder/netron/issues/6"
  4760. },
  4761. {
  4762. "type": "onnx",
  4763. "target": "value_info_metadata.pbtxt",
  4764. "source": "https://github.com/user-attachments/files/20822597/value_info_metadata.pbtxt.zip[value_info_metadata.pbtxt]",
  4765. "format": "ONNX v10",
  4766. "link": "https://github.com/lutzroeder/netron/issues/6"
  4767. },
  4768. {
  4769. "type": "onnx",
  4770. "target": "welch_psd.onnx",
  4771. "source": "https://github.com/user-attachments/files/19722333/welch_psd.onnx.zip[welch_psd.onnx]",
  4772. "format": "ONNX v9",
  4773. "producer": "pytorch 2.5.1+cu124",
  4774. "link": "https://github.com/lutzroeder/netron/issues/6"
  4775. },
  4776. {
  4777. "type": "onnx",
  4778. "target": "yolov3.onnx.zip",
  4779. "source": "https://github.com/lutzroeder/netron/files/8942116/yolov3.onnx.zip",
  4780. "format": "ONNX v5",
  4781. "producer": "keras2onnx 1.5.1",
  4782. "link": "https://github.com/lutzroeder/netron/issues/6"
  4783. },
  4784. {
  4785. "type": "onnx",
  4786. "target": "yolov8n.onnx.zip",
  4787. "source": "https://github.com/lutzroeder/netron/files/15214443/yolov8n.onnx.zip",
  4788. "format": "ONNX v7",
  4789. "producer": "pytorch 2.1.2",
  4790. "link": "https://github.com/lutzroeder/netron/issues/1208"
  4791. },
  4792. {
  4793. "type": "onnx",
  4794. "target": "vgg19.onnx.zip",
  4795. "source": "https://github.com/lutzroeder/netron/files/6558105/vgg19.onnx.zip",
  4796. "format": "ONNX v3",
  4797. "link": "https://github.com/lutzroeder/netron/issues/6"
  4798. },
  4799. {
  4800. "type": "onnx",
  4801. "target": "zipmap_int64float.json",
  4802. "source": "https://github.com/lutzroeder/netron/files/12329104/zipmap_int64float.json.zip[zipmap_int64float.json]",
  4803. "format": "ONNX v3",
  4804. "link": "https://github.com/lutzroeder/netron/issues/6"
  4805. },
  4806. {
  4807. "type": "onnx",
  4808. "target": "zipmap_int64float.onnx",
  4809. "source": "https://raw.githubusercontent.com/microsoft/onnxruntime/master/onnxruntime/test/testdata/zipmap_int64float.onnx",
  4810. "format": "ONNX v3",
  4811. "link": "https://github.com/microsoft/onnxruntime/tree/master/onnxruntime/test/testdata"
  4812. },
  4813. {
  4814. "type": "om",
  4815. "target": "hwhiaimodel-subgraph.om",
  4816. "source": "https://github.com/lutzroeder/netron/files/7114899/hwhiaimodel-subgraph.om.zip[hwhiaimodel-subgraph.om]",
  4817. "format": "DaVinci OM",
  4818. "link": "https://github.com/lutzroeder/netron/issues/799"
  4819. },
  4820. {
  4821. "type": "om",
  4822. "target": "image_HDR_enhance.om",
  4823. "source": "https://github.com/lutzroeder/netron/files/12787720/image_HDR_enhance.om.zip[image_HDR_enhance.om]",
  4824. "format": "DaVinci OM",
  4825. "link": "https://github.com/lutzroeder/netron/issues/799"
  4826. },
  4827. {
  4828. "type": "om",
  4829. "target": "netron_issue_788.om",
  4830. "source": "https://github.com/lutzroeder/netron/files/7104677/netron_issue_788.om.zip[netron_issue_788.om]",
  4831. "format": "DaVinci OM",
  4832. "link": "https://github.com/lutzroeder/netron/issues/799"
  4833. },
  4834. {
  4835. "type": "om",
  4836. "target": "netron_issue_798.om",
  4837. "source": "https://github.com/lutzroeder/netron/files/7104598/netron_issue_798.om.zip[netron_issue_798.om]",
  4838. "format": "DaVinci OM",
  4839. "link": "https://github.com/lutzroeder/netron/issues/799"
  4840. },
  4841. {
  4842. "type": "om",
  4843. "target": "resnet50_issue_svp",
  4844. "source": "https://github.com/lutzroeder/netron/files/9892582/resnet50_issue_svp.om.zip[resnet50_issue_svp.om]",
  4845. "format": "DaVinci OM SVP",
  4846. "link": "https://github.com/lutzroeder/netron/issues/799"
  4847. },
  4848. {
  4849. "type": "om",
  4850. "target": "yolov5s",
  4851. "source": "https://github.com/lutzroeder/netron/files/12136842/yolov5s.om.zip[yolov5s.om]",
  4852. "format": "DaVinci OM",
  4853. "link": "https://github.com/lutzroeder/netron/issues/799"
  4854. },
  4855. {
  4856. "type": "om",
  4857. "target": "yolov8.om",
  4858. "source": "https://github.com/lutzroeder/netron/files/12981666/yolov8.om.zip[yolov8.om]",
  4859. "format": "DaVinci OM SVP",
  4860. "link": "https://github.com/lutzroeder/netron/issues/1170"
  4861. },
  4862. {
  4863. "type": "openvino",
  4864. "target": "0372.xml",
  4865. "source": "https://github.com/lutzroeder/netron/files/14076937/0372.xml.zip[0372.xml]",
  4866. "format": "OpenVINO IR",
  4867. "link": "https://github.com/lutzroeder/netron/issues/372"
  4868. },
  4869. {
  4870. "type": "openvino",
  4871. "target": "0484.bin,0484.xml",
  4872. "source": "https://github.com/lutzroeder/netron/files/14076942/0484.zip[0484.bin,0484.xml]",
  4873. "format": "OpenVINO IR",
  4874. "link": "https://github.com/lutzroeder/netron/issues/484"
  4875. },
  4876. {
  4877. "type": "openvino",
  4878. "target": "0572.zip",
  4879. "source": "https://github.com/lutzroeder/netron/files/14076953/0572.zip",
  4880. "format": "OpenVINO IR",
  4881. "link": "https://github.com/lutzroeder/netron/issues/572"
  4882. },
  4883. {
  4884. "type": "openvino",
  4885. "target": "2018_R3_age-gender-recognition-retail-0013.bin,2018_R3_age-gender-recognition-retail-0013.xml",
  4886. "source": "https://github.com/lutzroeder/netron/files/8983748/2018_R3_age-gender-recognition-retail-0013.zip[2018_R3_age-gender-recognition-retail-0013.bin,2018_R3_age-gender-recognition-retail-0013.xml]",
  4887. "format": "OpenVINO IR",
  4888. "link": "https://github.com/lutzroeder/netron/issues/191"
  4889. },
  4890. {
  4891. "type": "openvino",
  4892. "target": "2018_R3_rm_lstm4f.xml,2018_R3_rm_lstm4f.bin",
  4893. "source": "https://github.com/lutzroeder/netron/files/8983751/2018_R3_rm_lstm4f.zip[2018_R3_rm_lstm4f.xml,2018_R3_rm_lstm4f.bin]",
  4894. "format": "OpenVINO IR",
  4895. "link": "https://github.com/lutzroeder/netron/issues/191"
  4896. },
  4897. {
  4898. "type": "openvino",
  4899. "target": "2018_R4_single-image-super-resolution-0034.xml",
  4900. "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]",
  4901. "format": "OpenVINO IR",
  4902. "link": "https://github.com/lutzroeder/netron/issues/191"
  4903. },
  4904. {
  4905. "type": "openvino",
  4906. "target": "2018_R5_vehicle-license-plate-detection-barrier-0106.xml",
  4907. "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]",
  4908. "format": "OpenVINO IR",
  4909. "link": "https://github.com/lutzroeder/netron/issues/191"
  4910. },
  4911. {
  4912. "type": "openvino",
  4913. "target": "dynamic.xml",
  4914. "source": "https://github.com/user-attachments/files/19129764/dynamic.xml.zip[dynamic.xml]",
  4915. "format": "OpenVINO IR",
  4916. "link": "https://github.com/lutzroeder/netron/issues/191"
  4917. },
  4918. {
  4919. "type": "openvino",
  4920. "target": "face-detection-retail-0005.bin,face-detection-retail-0005.xml",
  4921. "source": "https://github.com/lutzroeder/netron/files/12750770/face-detection-retail-0005.zip[face-detection-retail-0005.bin,face-detection-retail-0005.xml]",
  4922. "format": "OpenVINO IR",
  4923. "link": "https://github.com/lutzroeder/netron/issues/191"
  4924. },
  4925. {
  4926. "type": "openvino",
  4927. "target": "int4-model.bin,int4-model.xml",
  4928. "source": "https://github.com/lutzroeder/netron/files/6273773/int4-model.zip[int4-model.bin,int4-model.xml]",
  4929. "format": "OpenVINO IR",
  4930. "assert": "model.modules[0].nodes.length == 223",
  4931. "link": "https://github.com/lutzroeder/netron/pull/715"
  4932. },
  4933. {
  4934. "type": "openvino",
  4935. "target": "openvino_i4_matmul_model.xml,openvino_i4_matmul_model.bin",
  4936. "source": "https://github.com/lutzroeder/netron/files/13059592/openvino_i4_matmul_model.zip[openvino_i4_matmul_model.xml,openvino_i4_matmul_model.bin]",
  4937. "format": "OpenVINO IR",
  4938. "tags": "validation",
  4939. "link": "https://github.com/lutzroeder/netron/issues/191"
  4940. },
  4941. {
  4942. "type": "openvino",
  4943. "target": "text-recognition-0012.bin,text-recognition-0012.xml",
  4944. "source": "https://github.com/lutzroeder/netron/files/8983714/text-recognition-0012.zip[text-recognition-0012.bin,text-recognition-0012.xml]",
  4945. "format": "OpenVINO IR",
  4946. "link": "https://github.com/lutzroeder/netron/issues/191"
  4947. },
  4948. {
  4949. "type": "openvino",
  4950. "target": "text-spotting-0002-recognizer-decoder.xml,text-spotting-0002-recognizer-decoder.bin",
  4951. "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]",
  4952. "format": "OpenVINO IR",
  4953. "link": "https://download.01.org/opencv/2020/openvinotoolkit/2020.2/open_model_zoo/models_bin/3/text-spotting-0002-recognizer-decoder/FP32"
  4954. },
  4955. {
  4956. "type": "openvino",
  4957. "target": "ti_with_large_body.xml",
  4958. "source": "https://github.com/lutzroeder/netron/files/2871678/ti_with_large_body.xml.zip[ti_with_large_body.xml]",
  4959. "format": "OpenVINO IR",
  4960. "link": "https://github.com/lutzroeder/netron/issues/191"
  4961. },
  4962. {
  4963. "type": "openvino",
  4964. "target": "unspecified.xml",
  4965. "source": "https://github.com/user-attachments/files/19129763/unspecified.xml.zip[unspecified.xml]",
  4966. "format": "OpenVINO IR",
  4967. "link": "https://github.com/lutzroeder/netron/issues/191"
  4968. },
  4969. {
  4970. "type": "openvino",
  4971. "target": "with_gather.xml",
  4972. "source": "https://github.com/lutzroeder/netron/files/2871676/with_gather.xml.zip[with_gather.xml]",
  4973. "format": "OpenVINO IR",
  4974. "link": "https://github.com/lutzroeder/netron/issues/191"
  4975. },
  4976. {
  4977. "type": "openvino",
  4978. "target": "with_nd_conv_simple.xml",
  4979. "source": "https://github.com/lutzroeder/netron/files/2871696/with_nd_conv_simple.xml.zip[with_nd_conv_simple.xml]",
  4980. "format": "OpenVINO IR",
  4981. "link": "https://github.com/lutzroeder/netron/issues/191"
  4982. },
  4983. {
  4984. "type": "openvino",
  4985. "target": "with_pad_simple.xml",
  4986. "source": "https://github.com/lutzroeder/netron/files/2871673/with_pad_simple.xml.zip[with_pad_simple.xml]",
  4987. "format": "OpenVINO IR",
  4988. "link": "https://github.com/lutzroeder/netron/issues/191"
  4989. },
  4990. {
  4991. "type": "paddle",
  4992. "target": "adam.pdopt",
  4993. "source": "https://github.com/lutzroeder/netron/files/8882900/adam.pdopt.zip[adam.pdopt]",
  4994. "format": "PaddlePaddle Pickle",
  4995. "link": "https://github.com/lutzroeder/netron/issues/552"
  4996. },
  4997. {
  4998. "type": "paddle",
  4999. "target": "assign.pbtxt",
  5000. "source": "https://github.com/lutzroeder/netron/files/5485296/assign.pbtxt.zip[assign.pbtxt]",
  5001. "format": "PaddlePaddle",
  5002. "link": "https://github.com/lutzroeder/netron/issues/903"
  5003. },
  5004. {
  5005. "type": "paddle",
  5006. "target": "ch_ppocr_mobile_v2.0_det_infer.zip",
  5007. "source": "https://github.com/lutzroeder/netron/files/8748319/ch_ppocr_mobile_v2.0_det_infer.zip",
  5008. "format": "PaddlePaddle",
  5009. "link": "https://github.com/lutzroeder/netron/issues/552"
  5010. },
  5011. {
  5012. "type": "paddle",
  5013. "target": "ch_ppocr_mobile_v2.0_det_infer.pdiparams",
  5014. "source": "https://github.com/lutzroeder/netron/files/8748319/ch_ppocr_mobile_v2.0_det_infer.zip[inference.pdiparams]",
  5015. "format": "PaddlePaddle Inference Weights",
  5016. "link": "https://github.com/lutzroeder/netron/issues/552"
  5017. },
  5018. {
  5019. "type": "paddle",
  5020. "target": "critic.pdparams",
  5021. "source": "https://github.com/lutzroeder/netron/files/8748332/critic.pdparams.zip[critic.pdparams]",
  5022. "format": "PaddlePaddle Pickle",
  5023. "link": "https://github.com/lutzroeder/netron/issues/552"
  5024. },
  5025. {
  5026. "type": "paddle",
  5027. "target": "EDVR_M_wo_tsa_SRx4.pdparams",
  5028. "source": "https://github.com/lutzroeder/netron/files/8882904/EDVR_M_wo_tsa_SRx4.pdparams.zip[EDVR_M_wo_tsa_SRx4.pdparams]",
  5029. "format": "PaddlePaddle Pickle",
  5030. "link": "https://github.com/lutzroeder/netron/issues/552"
  5031. },
  5032. {
  5033. "type": "paddle",
  5034. "target": "emb.pdparams",
  5035. "source": "https://github.com/lutzroeder/netron/files/8882903/emb.pdparams.zip[emb.pdparams]",
  5036. "format": "PaddlePaddle Pickle",
  5037. "link": "https://github.com/lutzroeder/netron/issues/552"
  5038. },
  5039. {
  5040. "type": "paddle",
  5041. "target": "empty_list.json",
  5042. "source": "https://github.com/user-attachments/files/18213718/empty_list.json",
  5043. "format": "PaddlePaddle IR v1",
  5044. "link": "https://github.com/lutzroeder/netron/issues/1407"
  5045. },
  5046. {
  5047. "type": "paddle",
  5048. "target": "fluid.pbtxt",
  5049. "source": "https://github.com/user-attachments/files/19405445/fluid.pbtxt.zip[fluid.pbtxt]",
  5050. "format": "PaddlePaddle",
  5051. "link": "https://github.com/lutzroeder/netron/issues/903"
  5052. },
  5053. {
  5054. "type": "paddle",
  5055. "target": "for_net.json",
  5056. "source": "https://github.com/user-attachments/files/18105174/for_net.json",
  5057. "format": "PaddlePaddle IR v1",
  5058. "link": "https://github.com/lutzroeder/netron/issues/1407"
  5059. },
  5060. {
  5061. "type": "paddle",
  5062. "target": "if_net.json",
  5063. "source": "https://github.com/user-attachments/files/18105171/if_net.json",
  5064. "format": "PaddlePaddle IR v1",
  5065. "link": "https://github.com/lutzroeder/netron/issues/1407"
  5066. },
  5067. {
  5068. "type": "paddle",
  5069. "target": "lite_naive_model_opt.nb.tar.gz",
  5070. "source": "https://github.com/lutzroeder/netron/files/7084134/lite_naive_model_opt.nb.tar.gz",
  5071. "format": "Paddle Lite",
  5072. "error": "Paddle Lite naive buffer format is deprecated.",
  5073. "link": "https://github.com/lutzroeder/netron/issues/797"
  5074. },
  5075. {
  5076. "type": "paddle",
  5077. "target": "ir_model.json",
  5078. "source": "https://github.com/user-attachments/files/18105172/ir_model.json",
  5079. "format": "PaddlePaddle IR v1",
  5080. "link": "https://github.com/lutzroeder/netron/issues/1407"
  5081. },
  5082. {
  5083. "type": "paddle",
  5084. "target": "model_pylayer.json",
  5085. "source": "https://github.com/user-attachments/files/18105175/model_pylayer.json",
  5086. "format": "PaddlePaddle IR v1",
  5087. "link": "https://github.com/lutzroeder/netron/issues/1407"
  5088. },
  5089. {
  5090. "type": "paddle",
  5091. "target": "paddle_example.zip",
  5092. "source": "https://github.com/lutzroeder/netron/files/8548969/paddle_example.zip",
  5093. "format": "PaddlePaddle v2.2",
  5094. "link": "https://github.com/lutzroeder/netron/issues/903"
  5095. },
  5096. {
  5097. "type": "paddle",
  5098. "target": "recognize_digits_multilayer_perceptron_model.zip",
  5099. "source": "https://github.com/lutzroeder/netron/files/4985730/recognize_digits_multilayer_perceptron_model.zip",
  5100. "format": "PaddlePaddle v1.8",
  5101. "link": "https://github.com/lutzroeder/netron/issues/552"
  5102. },
  5103. {
  5104. "type": "paddle",
  5105. "target": "recognize_digits_multilayer_perceptron_weights.tar",
  5106. "source": "https://github.com/lutzroeder/netron/files/5551009/recognize_digits_multilayer_perceptron_weights.tar.zip[recognize_digits_multilayer_perceptron_weights.tar]",
  5107. "format": "PaddlePaddle Weights",
  5108. "link": "https://github.com/lutzroeder/netron/issues/903"
  5109. },
  5110. {
  5111. "type": "paddle",
  5112. "target": "tranformer_base.zip",
  5113. "source": "https://github.com/lutzroeder/netron/files/5160568/tranformer_base.zip",
  5114. "format": "PaddlePaddle v1.8.3",
  5115. "link": "https://github.com/lutzroeder/netron/issues/903"
  5116. },
  5117. {
  5118. "type": "paddle",
  5119. "target": "squeezenet1.1.nb",
  5120. "source": "https://github.com/lutzroeder/netron/files/7272515/squeezenet1.1.nb.zip[squeezenet1.1.nb]",
  5121. "format": "Paddle Lite v2.9.1",
  5122. "link": "https://github.com/lutzroeder/netron/issues/797"
  5123. },
  5124. {
  5125. "type": "paddle",
  5126. "target": "with_dummy_tensor_type.zip",
  5127. "source": "https://github.com/lutzroeder/netron/files/3021210/with_dummy_tensor_type.zip",
  5128. "format": "PaddlePaddle",
  5129. "link": "https://github.com/lutzroeder/netron/issues/246"
  5130. },
  5131. {
  5132. "type": "paddle",
  5133. "target": "while_net.json",
  5134. "source": "https://github.com/user-attachments/files/18105173/while_net.json",
  5135. "format": "PaddlePaddle IR v1",
  5136. "link": "https://github.com/lutzroeder/netron/issues/1407"
  5137. },
  5138. {
  5139. "type": "paddle",
  5140. "target": "without_tensor_type.zip",
  5141. "source": "https://github.com/lutzroeder/netron/files/3021211/without_tensor_type.zip",
  5142. "format": "PaddlePaddle",
  5143. "link": "https://github.com/lutzroeder/netron/issues/246"
  5144. },
  5145. {
  5146. "type": "qnn",
  5147. "target": "mobilenetv2-12_net.json",
  5148. "source": "https://github.com/user-attachments/files/15507409/mobilenetv2-12_net.json",
  5149. "format": "QNN",
  5150. "tags": "quantization",
  5151. "link": "https://github.com/lutzroeder/netron/issues/1283"
  5152. },
  5153. {
  5154. "type": "qnn",
  5155. "target": "qnn.serialized.bin",
  5156. "source": "https://github.com/user-attachments/files/17068533/qnn.serialized.bin.zip[qnn.serialized.bin]",
  5157. "format": "QNN",
  5158. "error": "File contains undocumented QNN serialized context.",
  5159. "link": "https://github.com/lutzroeder/netron/issues/1283"
  5160. },
  5161. {
  5162. "type": "qnn",
  5163. "target": "resnet18_fp32.bin,resnet18_fp32_net.json",
  5164. "source": "https://github.com/xLPMG/efficient-machine-learning/raw/main/submissions/submission_24_06_05/11-1-GPU/model/resnet18_fp32.bin,https://github.com/xLPMG/efficient-machine-learning/raw/main/submissions/submission_24_06_05/11-1-GPU/model/resnet18_fp32_net.json",
  5165. "format": "QNN",
  5166. "link": "https://github.com/lutzroeder/netron/issues/1283"
  5167. },
  5168. {
  5169. "type": "pickle",
  5170. "target": "batches.meta",
  5171. "source": "https://raw.githubusercontent.com/MadryLab/cifar10_challenge/master/cifar10_data/batches.meta",
  5172. "format": "Pickle",
  5173. "tags": "validation",
  5174. "link": "https://github.com/MadryLab/cifar10_challenge"
  5175. },
  5176. {
  5177. "type": "pickle",
  5178. "target": "bloom_dataset.pkl",
  5179. "source": "https://github.com/lutzroeder/netron/files/15046492/bloom_dataset.pkl.zip[bloom_dataset.pkl]",
  5180. "format": "Pickle",
  5181. "error": "Unsupported Pickle type 'pandas.core.frame.DataFrame'.",
  5182. "link": "https://github.com/lutzroeder/netron/issues/901"
  5183. },
  5184. {
  5185. "type": "pickle",
  5186. "target": "bytearray.pkl",
  5187. "source": "https://github.com/user-attachments/files/15448319/bytearray.pkl.zip[bytearray.pkl]",
  5188. "format": "Pickle",
  5189. "link": "https://github.com/lutzroeder/netron/issues/901"
  5190. },
  5191. {
  5192. "type": "pickle",
  5193. "target": "chlorophyta_module_names_062224.pkl",
  5194. "source": "https://github.com/user-attachments/files/16482612/chlorophyta_module_names_062224.pkl.zip[chlorophyta_module_names_062224.pkl]",
  5195. "format": "Pickle",
  5196. "link": "https://github.com/lutzroeder/netron/issues/901"
  5197. },
  5198. {
  5199. "type": "pickle",
  5200. "target": "courses_with_embeddings.pkl",
  5201. "source": "https://github.com/user-attachments/files/19092794/courses_with_embeddings.pkl.zip[courses_with_embeddings.pkl]",
  5202. "format": "Pickle",
  5203. "error": "Unsupported Pickle type 'pandas.core.frame.DataFrame'.",
  5204. "link": "https://github.com/lutzroeder/netron/issues/901"
  5205. },
  5206. {
  5207. "type": "pickle",
  5208. "target": "d8.pkl",
  5209. "source": "https://github.com/user-attachments/files/16482242/d8.pkl.zip[d8.pkl]",
  5210. "format": "Pickle",
  5211. "assert": "model.modules[0].nodes[0].inputs[2].value.length == 275",
  5212. "link": "https://github.com/lutzroeder/netron/issues/901"
  5213. },
  5214. {
  5215. "type": "pickle",
  5216. "target": "datasplit.pkl",
  5217. "source": "https://github.com/lutzroeder/netron/files/10099644/datasplit.pkl.zip[datasplit.pkl]",
  5218. "format": "Pickle",
  5219. "assert": "model.modules[0].nodes[3].type.name == 'collections.OrderedDict'",
  5220. "link": "https://github.com/lutzroeder/netron/issues/711"
  5221. },
  5222. {
  5223. "type": "pickle",
  5224. "target": "dill_array.pkl",
  5225. "source": "https://github.com/lutzroeder/netron/files/13031222/dill_array.pkl.zip[dill_array.pkl]",
  5226. "format": "NumPy NDArray",
  5227. "assert": "model.modules[0].nodes[0].inputs[0].value[0].type.dataType == 'int64'",
  5228. "link": "https://github.com/lutzroeder/netron/issues/711"
  5229. },
  5230. {
  5231. "type": "pickle",
  5232. "target": "dill_custom_class.pkl",
  5233. "source": "https://github.com/lutzroeder/netron/files/13035743/dill_custom_class.pkl.zip[dill_custom_class.pkl]",
  5234. "format": "Pickle",
  5235. "error": "Unknown type name '__builtin__.__main__'.\nUnsupported Pickle type '__main__.CustomClass'.",
  5236. "link": "https://github.com/lutzroeder/netron/issues/901"
  5237. },
  5238. {
  5239. "type": "pickle",
  5240. "target": "easy-khair-180-gpc0.8-trans10-025000.pkl.zip",
  5241. "source": "https://github.com/user-attachments/files/16783181/easy-khair-180-gpc0.8-trans10-025000.pkl.zip",
  5242. "format": "Pickle",
  5243. "link": "https://github.com/lutzroeder/netron/issues/901"
  5244. },
  5245. {
  5246. "type": "pickle",
  5247. "target": "file.pickle",
  5248. "source": "https://github.com/user-attachments/files/16745249/file.pickle.zip[file.pickle]",
  5249. "format": "Pickle",
  5250. "error": "Unsupported Pickle type '__main__.A'.",
  5251. "link": "https://github.com/lutzroeder/netron/issues/901"
  5252. },
  5253. {
  5254. "type": "pickle",
  5255. "target": "model_final_0d68be.pkl.zip",
  5256. "source": "https://github.com/user-attachments/files/16759433/model_final_0d68be.pkl.zip",
  5257. "format": "Pickle",
  5258. "assert": "model.modules[0].nodes[0].inputs[0].value.type.nodes[357].inputs[0].value[0].name == 'criterion.empty_weight'",
  5259. "link": "https://github.com/lutzroeder/netron/issues/901"
  5260. },
  5261. {
  5262. "type": "pickle",
  5263. "target": "model_final_checkpoint.model.pkl",
  5264. "source": "https://github.com/lutzroeder/netron/files/11707359/model_final_checkpoint.model.pkl.zip[model_final_checkpoint.model.pkl]",
  5265. "format": "Pickle",
  5266. "link": "https://github.com/lutzroeder/netron/issues/901"
  5267. },
  5268. {
  5269. "type": "pickle",
  5270. "target": "myModel.model",
  5271. "source": "https://github.com/lutzroeder/netron/files/8506779/myModel.model.zip[myModel.model]",
  5272. "format": "cuML",
  5273. "link": "https://github.com/lutzroeder/netron/issues/901"
  5274. },
  5275. {
  5276. "type": "pickle",
  5277. "target": "net.pkl",
  5278. "source": "https://github.com/lutzroeder/netron/files/8506780/net.pkl.zip[net.pkl]",
  5279. "format": "Pickle",
  5280. "error": "Unsupported Pickle type '__main__.LeNetConvPoolLayer'.",
  5281. "link": "https://github.com/lutzroeder/netron/issues/901"
  5282. },
  5283. {
  5284. "type": "pickle",
  5285. "target": "nfl_model.pkl",
  5286. "source": "https://github.com/lutzroeder/netron/files/14547128/nfl_model.pkl.zip[nfl_model.pkl]",
  5287. "format": "Pickle",
  5288. "link": "https://github.com/lutzroeder/netron/issues/901"
  5289. },
  5290. {
  5291. "type": "pickle",
  5292. "target": "numpy.array.pkl",
  5293. "source": "https://github.com/lutzroeder/netron/files/6233588/numpy.array.pkl.zip[numpy.array.pkl]",
  5294. "format": "NumPy NDArray",
  5295. "link": "https://github.com/lutzroeder/netron/issues/711"
  5296. },
  5297. {
  5298. "type": "pickle",
  5299. "target": "R-50.pkl.zip",
  5300. "source": "https://github.com/user-attachments/files/16783222/R-50.pkl.zip",
  5301. "format": "Pickle",
  5302. "assert": "model.modules[0].nodes.length == 107",
  5303. "link": "https://github.com/lutzroeder/netron/issues/901"
  5304. },
  5305. {
  5306. "type": "pickle",
  5307. "target": "result_model_1_multimer_v2_pred_0.pkl.zip",
  5308. "source": "https://github.com/user-attachments/files/16763962/result_model_1_multimer_v2_pred_0.pkl.zip",
  5309. "format": "Pickle",
  5310. "assert": "model.modules[0].nodes[0].inputs[0].value.inputs[0].name == 'bin_edges'",
  5311. "link": "https://github.com/lutzroeder/netron/issues/901"
  5312. },
  5313. {
  5314. "type": "pickle",
  5315. "target": "robinhood-portfolio_data_user.pkl.pkl",
  5316. "source": "https://raw.githubusercontent.com/omdv/robinhood-portfolio/4622dc61e0556a85ce52c4de178d01a9838acbc5/data/user.pkl",
  5317. "format": "Pickle",
  5318. "link": "https://github.com/omdv/robinhood-portfolio/tree/4622dc61e0556a85ce52c4de178d01a9838acbc5"
  5319. },
  5320. {
  5321. "type": "pickle",
  5322. "target": "sgd_explainer.pkl",
  5323. "source": "https://github.com/user-attachments/files/15448193/sgd_explainer.pkl.zip[sgd_explainer.pkl]",
  5324. "format": "SHAP",
  5325. "link": "https://github.com/lutzroeder/netron/issues/901"
  5326. },
  5327. {
  5328. "type": "pickle",
  5329. "target": "vec_normalize.pkl",
  5330. "source": "https://github.com/lutzroeder/netron/files/14981937/vec_normalize.pkl.zip[vec_normalize.pkl]",
  5331. "format": "Pickle",
  5332. "error": "Unsupported Pickle type 'stable_baselines3.common.vec_env.vec_normalize.VecNormalize'.",
  5333. "link": "https://github.com/lutzroeder/netron/issues/901"
  5334. },
  5335. {
  5336. "type": "pickle",
  5337. "target": "word2vec.model",
  5338. "source": "https://github.com/lutzroeder/netron/files/13628139/word2vec.model.zip[word2vec.model]",
  5339. "format": "Gensim",
  5340. "assert": "model.modules[0].nodes[0].inputs[7].value == 0.025",
  5341. "link": "https://github.com/lutzroeder/netron/issues/901"
  5342. },
  5343. {
  5344. "type": "pnnx",
  5345. "target": "demo_net.pnnx.param,demo_net.pnnx.bin",
  5346. "source": "https://github.com/user-attachments/files/16325286/demo_net.pnnx.zip[demo_net.pnnx.param,demo_net.pnnx.bin]",
  5347. "format": "PNNX",
  5348. "link": "https://github.com/lutzroeder/netron/issues/296"
  5349. },
  5350. {
  5351. "type": "pytorch",
  5352. "target": "alexnet_traced.ir",
  5353. "source": "https://github.com/user-attachments/files/18259118/alexnet_traced.ir.zip[alexnet_traced.ir]",
  5354. "format": "TorchScript IR",
  5355. "error": "TorchScript IR parser not implemented.",
  5356. "link": "https://github.com/lutzroeder/netron/issues/1415"
  5357. },
  5358. {
  5359. "type": "pytorch",
  5360. "target": "alexnet_traced.pt.zip",
  5361. "source": "https://github.com/lutzroeder/netron/files/6096602/alexnet_traced.pt.zip",
  5362. "format": "TorchScript v1.6",
  5363. "assert": "model.modules[0].nodes.length == 25",
  5364. "link": "https://github.com/lutzroeder/netron/issues/281"
  5365. },
  5366. {
  5367. "type": "pytorch",
  5368. "target": "alexnet.fx.pth",
  5369. "source": "https://github.com/user-attachments/files/18259127/alexnet.fx.zip[alexnet.fx.pth]",
  5370. "format": "PyTorch v1.6",
  5371. "link": "https://github.com/lutzroeder/netron/issues/1414"
  5372. },
  5373. {
  5374. "type": "pytorch",
  5375. "target": "alexnet.pkl.pth.zip",
  5376. "source": "https://github.com/lutzroeder/netron/files/5213453/alexnet.pkl.pth.zip",
  5377. "format": "PyTorch v0.1.10",
  5378. "link": "https://github.com/lutzroeder/netron/issues/133"
  5379. },
  5380. {
  5381. "type": "pytorch",
  5382. "target": "alexnet.pt",
  5383. "source": "https://github.com/lutzroeder/netron/files/6096605/alexnet.pt.zip[alexnet.pt]",
  5384. "format": "TorchScript v1.6",
  5385. "tags": "skip-tensor-value",
  5386. "link": "https://github.com/lutzroeder/netron/issues/281"
  5387. },
  5388. {
  5389. "type": "pytorch",
  5390. "target": "alexnet.ptl",
  5391. "source": "https://github.com/lutzroeder/netron/files/7340000/alexnet.ptl.zip[alexnet.ptl]",
  5392. "format": "TorchScript v1.6",
  5393. "tags": "skip-tensor-value",
  5394. "link": "https://github.com/lutzroeder/netron/issues/827"
  5395. },
  5396. {
  5397. "type": "pytorch",
  5398. "target": "alexnet.zip.pth",
  5399. "source": "https://github.com/lutzroeder/netron/files/6096607/alexnet.zip.pth.zip[alexnet.zip.pth]",
  5400. "format": "PyTorch v1.6",
  5401. "link": "https://github.com/lutzroeder/netron/issues/133"
  5402. },
  5403. {
  5404. "type": "pytorch",
  5405. "target": "bad-base_libri.pt",
  5406. "source": "https://github.com/user-attachments/files/16401716/base_libri.pt.zip[base_libri.pt]",
  5407. "format": "PyTorch v1.6",
  5408. "assert": "model.modules[0].nodes[0].inputs[7].value.inputs[0].value.type.name == 'builtins.dict'",
  5409. "link": "https://github.com/lutzroeder/netron/issues/543"
  5410. },
  5411. {
  5412. "type": "pytorch",
  5413. "target": "bad-hands-5.pt",
  5414. "source": "https://github.com/lutzroeder/netron/files/14471657/bad-hands-5.pt.zip[bad-hands-5.pt]",
  5415. "format": "PyTorch v1.6",
  5416. "assert": "model.modules[0].nodes[0].inputs.length == 6",
  5417. "link": "https://github.com/lutzroeder/netron/issues/720"
  5418. },
  5419. {
  5420. "type": "pytorch",
  5421. "target": "bert-base-uncased.pt",
  5422. "source": "https://github.com/lutzroeder/netron/files/7705212/bert-base-uncased.pt.zip[bert-base-uncased.pt]",
  5423. "format": "TorchScript v1.6",
  5424. "link": "https://github.com/lutzroeder/netron/issues/842"
  5425. },
  5426. {
  5427. "type": "pytorch",
  5428. "target": "best_mask.pth",
  5429. "source": "https://github.com/user-attachments/files/16401712/best_mask.pth.zip[best_mask.pth]",
  5430. "format": "PyTorch v1.6",
  5431. "assert": "model.modules.length == 1",
  5432. "link": "https://github.com/lutzroeder/netron/issues/543"
  5433. },
  5434. {
  5435. "type": "pytorch",
  5436. "target": "best.pt",
  5437. "source": "https://github.com/user-attachments/files/16401713/best.pt.zip[best.pt]",
  5438. "format": "PyTorch v1.6",
  5439. "link": "https://github.com/lutzroeder/netron/issues/543"
  5440. },
  5441. {
  5442. "type": "pytorch",
  5443. "target": "boolean.onnx",
  5444. "source": "https://github.com/lutzroeder/netron/files/8985631/boolean.onnx.zip[boolean.onnx]",
  5445. "format": "PyTorch v0.1.10",
  5446. "link": "https://github.com/lutzroeder/netron/issues/458"
  5447. },
  5448. {
  5449. "type": "pytorch",
  5450. "target": "blitz_cifar10_tutorial.pt",
  5451. "source": "https://github.com/lutzroeder/netron/files/3748500/blitz_cifar10_tutorial.zip[blitz_cifar10_tutorial.pt]",
  5452. "format": "TorchScript v1.3",
  5453. "link": "https://github.com/lutzroeder/netron/issues/281"
  5454. },
  5455. {
  5456. "type": "pytorch",
  5457. "target": "blitz_neural_networks_tutorial.pt",
  5458. "source": "https://github.com/lutzroeder/netron/files/3748989/blitz_neural_networks_tutorial.zip[blitz_neural_networks_tutorial.pt]",
  5459. "format": "TorchScript v1.3",
  5460. "link": "https://github.com/lutzroeder/netron/issues/281"
  5461. },
  5462. {
  5463. "type": "pytorch",
  5464. "target": "blitz_neural_networks_tutorial_traced.pt",
  5465. "source": "https://github.com/lutzroeder/netron/files/3748989/blitz_neural_networks_tutorial.zip[blitz_neural_networks_tutorial_traced.pt]",
  5466. "format": "TorchScript v1.3",
  5467. "link": "https://github.com/lutzroeder/netron/issues/281"
  5468. },
  5469. {
  5470. "type": "pytorch",
  5471. "target": "boolean.pkl.pth",
  5472. "source": "https://github.com/lutzroeder/netron/files/5435851/boolean.zip[boolean.pkl.pth]",
  5473. "format": "PyTorch v0.1.10",
  5474. "link": "https://github.com/lutzroeder/netron/issues/720"
  5475. },
  5476. {
  5477. "type": "pytorch",
  5478. "target": "boolean.zip.pth",
  5479. "source": "https://github.com/lutzroeder/netron/files/5435851/boolean.zip[boolean.pkl.pth]",
  5480. "format": "PyTorch v0.1.10",
  5481. "link": "https://github.com/lutzroeder/netron/issues/720"
  5482. },
  5483. {
  5484. "type": "pytorch",
  5485. "target": "best.pt",
  5486. "source": "https://github.com/user-attachments/files/16401547/best.pt.zip[best.pt]",
  5487. "format": "PyTorch v1.6",
  5488. "link": "https://github.com/lutzroeder/netron/issues/543"
  5489. },
  5490. {
  5491. "type": "pytorch",
  5492. "target": "cloudpickle.pth",
  5493. "source": "https://github.com/user-attachments/files/17882209/cloudpickle.pth.zip[cloudpickle.pth]",
  5494. "format": "PyTorch v1.6",
  5495. "link": "https://github.com/lutzroeder/netron/issues/720"
  5496. },
  5497. {
  5498. "type": "pytorch",
  5499. "target": "coco128-yolov8n-seg_output.torchscript.ptl",
  5500. "source": "https://github.com/user-attachments/files/16091260/coco128-yolov8n-seg_output.torchscript.ptl.zip[coco128-yolov8n-seg_output.torchscript.ptl]",
  5501. "format": "TorchScript v1.6",
  5502. "assert": "model.modules[0].nodes[0].inputs[1].value.type.name == '__torch__.torch.classes.xnnpack.Conv2dOpContext'",
  5503. "link": "https://github.com/lutzroeder/netron/issues/842"
  5504. },
  5505. {
  5506. "type": "pytorch",
  5507. "target": "checkpoints_auc_classifier.pth",
  5508. "source": "https://github.com/user-attachments/files/16405191/checkpoints_auc_classifier.pth.zip[checkpoints_auc_classifier.pth]",
  5509. "format": "PyTorch v1.6",
  5510. "assert": "model.modules[0].nodes[0].inputs[5].value.type.type == 'weights'",
  5511. "link": "https://github.com/lutzroeder/netron/issues/543"
  5512. },
  5513. {
  5514. "type": "pytorch",
  5515. "target": "checkpoint_best.pth",
  5516. "source": "https://github.com/user-attachments/files/16401715/checkpoint_best.pth.zip[checkpoint_best.pth]",
  5517. "format": "PyTorch v1.6",
  5518. "assert": "model.modules[0].nodes[0].inputs[0].value.type.nodes.length == 198",
  5519. "link": "https://github.com/lutzroeder/netron/issues/543"
  5520. },
  5521. {
  5522. "type": "pytorch",
  5523. "target": "ckpt.t7",
  5524. "source": "https://raw.githubusercontent.com/babajide07/Redundant-Feature-Pruning-Pytorch-Implementation/master/checkpoint/ckpt.t7",
  5525. "format": "PyTorch v0.1.10",
  5526. "link": "https://github.com/babajide07/Redundant-Feature-Pruning-Pytorch-Implementation"
  5527. },
  5528. {
  5529. "type": "pytorch",
  5530. "target": "constant_input.pt2",
  5531. "source": "https://github.com/user-attachments/files/17966651/constant_input.pt2.zip[constant_input.pt2]",
  5532. "format": "PyTorch Export v7.3",
  5533. "link": "https://github.com/lutzroeder/netron/issues/1211"
  5534. },
  5535. {
  5536. "type": "pytorch",
  5537. "target": "cpu_jit.pt",
  5538. "source": "https://github.com/user-attachments/files/16401711/cpu_jit.pt.zip[cpu_jit.pt]",
  5539. "format": "PyTorch v1.6",
  5540. "link": "https://github.com/lutzroeder/netron/issues/543"
  5541. },
  5542. {
  5543. "type": "pytorch",
  5544. "target": "complex_tensor.pt",
  5545. "source": "https://github.com/lutzroeder/netron/files/9108149/complex_tensor.pt.zip[complex_tensor.pt]",
  5546. "format": "PyTorch v1.6",
  5547. "assert": "model.modules[0].nodes[0].inputs[0].value[0].type.dataType == 'complex64'",
  5548. "link": "https://github.com/lutzroeder/netron/issues/720"
  5549. },
  5550. {
  5551. "type": "pytorch",
  5552. "target": "cruise_cutin_vehicle_model.pt",
  5553. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/cruise_cutin_vehicle_model.pt",
  5554. "format": "TorchScript v1.0",
  5555. "producer": "pytorch v1.0",
  5556. "link": "https://github.com/ApolloAuto/apollo"
  5557. },
  5558. {
  5559. "type": "pytorch",
  5560. "target": "cruise_go_vehicle_model.pt",
  5561. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/cruise_go_vehicle_model.pt",
  5562. "format": "TorchScript v1.0",
  5563. "assert": "model.modules[0].nodes.length == 63",
  5564. "link": "https://github.com/ApolloAuto/apollo"
  5565. },
  5566. {
  5567. "type": "pytorch",
  5568. "target": "cup_wild_vit_l_1img.ckpt",
  5569. "source": "https://github.com/user-attachments/files/15752923/cup_wild_vit_l_1img.ckpt.zip[cup_wild_vit_l_1img.ckpt]",
  5570. "format": "PyTorch v1.6",
  5571. "tags": "skip-tensor-value",
  5572. "link": "https://github.com/lutzroeder/netron/issues/720"
  5573. },
  5574. {
  5575. "type": "pytorch",
  5576. "target": "data.pkl",
  5577. "source": "https://github.com/lutzroeder/netron/files/9795497/data.pkl.zip[data.pkl]",
  5578. "format": "PyTorch Pickle",
  5579. "link": "https://github.com/lutzroeder/netron/issues/720"
  5580. },
  5581. {
  5582. "type": "pytorch",
  5583. "target": "d2go.pt",
  5584. "source": "https://github.com/lutzroeder/netron/files/6370675/d2go.pt.zip[d2go.pt]",
  5585. "format": "TorchScript v1.7",
  5586. "link": "https://github.com/lutzroeder/netron/issues/732"
  5587. },
  5588. {
  5589. "type": "pytorch",
  5590. "target": "deeplabv3_scripted.pt",
  5591. "source": "https://github.com/lutzroeder/netron/files/5604999/deeplabv3_scripted.pt.zip[deeplabv3_scripted.pt]",
  5592. "format": "TorchScript v1.6",
  5593. "link": "https://github.com/lutzroeder/netron/issues/630"
  5594. },
  5595. {
  5596. "type": "pytorch",
  5597. "target": "deeplabv3_scripted.ptl",
  5598. "source": "https://github.com/lutzroeder/netron/files/9562007/deeplabv3_scripted.ptl.zip[deeplabv3_scripted.ptl]",
  5599. "format": "TorchScript v1.6",
  5600. "link": "https://github.com/lutzroeder/netron/issues/842"
  5601. },
  5602. {
  5603. "type": "pytorch",
  5604. "target": "DCGAN2.pt",
  5605. "source": "https://github.com/lutzroeder/netron/files/9075628/DCGAN2.pt.zip[DCGAN2.pt]",
  5606. "format": "PyTorch Package v1.9",
  5607. "assert": "model.modules.length == 2",
  5608. "tags": "validation",
  5609. "link": "https://github.com/lutzroeder/netron/issues/928"
  5610. },
  5611. {
  5612. "type": "pytorch",
  5613. "target": "densenet.data.pkl",
  5614. "source": "https://github.com/lutzroeder/netron/files/13064609/densenet.data.pkl.zip[densenet.data.pkl]",
  5615. "format": "PyTorch Pickle",
  5616. "link": "https://github.com/lutzroeder/netron/issues/720"
  5617. },
  5618. {
  5619. "type": "pytorch",
  5620. "target": "densenet161_traced.pt",
  5621. "source": "https://github.com/lutzroeder/netron/files/6096613/densenet161_traced.pt.zip[densenet161_traced.pt]",
  5622. "format": "TorchScript v1.6",
  5623. "tags": "skip-render",
  5624. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  5625. },
  5626. {
  5627. "type": "pytorch",
  5628. "target": "densenet161.pt",
  5629. "source": "https://github.com/lutzroeder/netron/files/6096614/densenet161.pt.zip[densenet161.pt]",
  5630. "format": "TorchScript v1.6",
  5631. "tags": "skip-render",
  5632. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  5633. },
  5634. {
  5635. "type": "pytorch",
  5636. "target": "densenet161.zip.pth",
  5637. "source": "https://github.com/lutzroeder/netron/files/6096621/densenet161.zip.pth.zip[densenet161.zip.pth]",
  5638. "format": "PyTorch v1.6",
  5639. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  5640. },
  5641. {
  5642. "type": "pytorch",
  5643. "target": "densenet161.mar",
  5644. "source": "https://torchserve.pytorch.org/mar_files/densenet161.mar",
  5645. "format": "PyTorch v0.1.10",
  5646. "link": "https://github.com/lutzroeder/netron/issues/286"
  5647. },
  5648. {
  5649. "type": "pytorch",
  5650. "target": "DRNL4x_dual_model",
  5651. "source": "https://github.com/lutzroeder/netron/files/5505677/DRNL4x_dual_model.pth.zip[DRNL4x_dual_model.pth]",
  5652. "format": "PyTorch v0.1.10",
  5653. "assert": "model.modules[0].nodes.length == 2",
  5654. "link": "https://github.com/lutzroeder/netron/issues/543"
  5655. },
  5656. {
  5657. "type": "pytorch",
  5658. "target": "ENet.pth",
  5659. "source": "https://github.com/lutzroeder/netron/files/5368544/ENet.pth.zip[ENet.pth]",
  5660. "format": "PyTorch v0.1.10",
  5661. "link": "https://github.com/lutzroeder/netron/issues/133"
  5662. },
  5663. {
  5664. "type": "pytorch",
  5665. "target": "exported_program.pt2",
  5666. "source": "https://github.com/lutzroeder/netron/files/13855206/exported_program.pt2.zip[exported_program.pt2]",
  5667. "format": "PyTorch Export v1",
  5668. "assert": "model.modules[0].nodes[0].inputs[1].value == 10",
  5669. "tags": "validation",
  5670. "link": "https://github.com/lutzroeder/netron/issues/1211"
  5671. },
  5672. {
  5673. "type": "pytorch",
  5674. "target": "face_landmarks_detector_Nx3x256x256_onnx.pth",
  5675. "source": "https://github.com/user-attachments/files/18682052/face_landmarks_detector_Nx3x256x256_onnx.pth.zip[face_landmarks_detector_Nx3x256x256_onnx.pth]",
  5676. "format": "PyTorch v1.6",
  5677. "link": "https://github.com/lutzroeder/netron/issues/720"
  5678. },
  5679. {
  5680. "type": "pytorch",
  5681. "target": "fairseq.lightweightconv.pt",
  5682. "source": "https://github.com/lutzroeder/netron/files/9145928/fairseq.lightweightconv.pt.zip[fairseq.lightweightconv.pt]",
  5683. "format": "TorchScript v1.6",
  5684. "link": "https://github.com/lutzroeder/netron/issues/931"
  5685. },
  5686. {
  5687. "type": "pytorch",
  5688. "target": "fast.ai.data.pkl",
  5689. "source": "https://github.com/lutzroeder/netron/files/13064775/fast.ai.data.pkl.zip[fast.ai.data.pkl]",
  5690. "format": "PyTorch Pickle",
  5691. "link": "https://github.com/lutzroeder/netron/issues/720"
  5692. },
  5693. {
  5694. "type": "pytorch",
  5695. "target": "fasterrcnn_resnet50_fpn.pt",
  5696. "source": "https://github.com/lutzroeder/netron/files/7677467/fasterrcnn_resnet50_fpn.pt.zip[fasterrcnn_resnet50_fpn.pt]",
  5697. "format": "TorchScript v1.7",
  5698. "link": "https://github.com/lutzroeder/netron/issues/842"
  5699. },
  5700. {
  5701. "type": "pytorch",
  5702. "target": "fbdeit_scripted.pt",
  5703. "source": "https://github.com/user-attachments/files/20181250/fbdeit_scripted.pt.zip[fbdeit_scripted.pt]",
  5704. "format": "TorchScript v1.12",
  5705. "link": "https://github.com/lutzroeder/netron/issues/720"
  5706. },
  5707. {
  5708. "type": "pytorch",
  5709. "target": "feature_embedding.pt2",
  5710. "source": "https://github.com/user-attachments/files/17608076/chai-1.zip[feature_embedding.pt2]",
  5711. "format": "PyTorch Export v5.1",
  5712. "link": "https://github.com/lutzroeder/netron/issues/1211"
  5713. },
  5714. {
  5715. "type": "pytorch",
  5716. "target": "final_89.pt",
  5717. "source": "https://github.com/user-attachments/files/16405085/final_89.pt.zip[final_89.pt]",
  5718. "format": "PyTorch v1.6",
  5719. "assert": "model.modules[0].nodes[3].inputs[3].value[1] == null",
  5720. "link": "https://github.com/lutzroeder/netron/issues/543"
  5721. },
  5722. {
  5723. "type": "pytorch",
  5724. "target": "from_numpy.pth",
  5725. "source": "https://github.com/lutzroeder/netron/files/9639598/from_numpy.pth.zip[from_numpy.pth]",
  5726. "format": "PyTorch v1.6",
  5727. "link": "https://github.com/lutzroeder/netron/issues/720"
  5728. },
  5729. {
  5730. "type": "pytorch",
  5731. "target": "fruit_veg_model.pkl",
  5732. "source": "https://github.com/lutzroeder/netron/files/9265633/fruit_veg_model.pkl.zip[fruit_veg_model.pkl]",
  5733. "format": "PyTorch v1.6",
  5734. "link": "https://github.com/lutzroeder/netron/issues/720"
  5735. },
  5736. {
  5737. "type": "pytorch",
  5738. "target": "FLUX.1-dev-torchao-fp8-transformer.zip",
  5739. "source": "https://github.com/user-attachments/files/21200334/FLUX.1-dev-torchao-fp8-transformer.zip",
  5740. "format": "PyTorch v1.6",
  5741. "link": "https://github.com/lutzroeder/netron/issues/720"
  5742. },
  5743. {
  5744. "type": "pytorch",
  5745. "target": "gcn2_tiny_320x240.pb",
  5746. "source": "https://raw.githubusercontent.com/jiexiong2016/GCNv2_SLAM/master/GCN2/gcn2_tiny_320x240.pt",
  5747. "format": "TorchScript v1.0",
  5748. "link": "https://github.com/jiexiong2016/GCNv2_SLAM"
  5749. },
  5750. {
  5751. "type": "pytorch",
  5752. "target": "gpt2.pt",
  5753. "source": "https://github.com/lutzroeder/netron/files/11585383/gpt2.pt.zip[gpt2.pt]",
  5754. "format": "TorchScript v1.12",
  5755. "link": "https://github.com/lutzroeder/netron/issues/842"
  5756. },
  5757. {
  5758. "type": "pytorch",
  5759. "target": "gpt2.pt2",
  5760. "source": "https://github.com/user-attachments/files/17270120/gpt2.pt2.zip[gpt2.pt2]",
  5761. "format": "PyTorch Export v3.1",
  5762. "link": "https://github.com/lutzroeder/netron/issues/1211"
  5763. },
  5764. {
  5765. "type": "pytorch",
  5766. "target": "hrnet_posenet_FP32.pth",
  5767. "source": "https://github.com/user-attachments/files/15894705/hrnet_posenet_FP32.pth.zip[hrnet_posenet_FP32.pth]",
  5768. "format": "PyTorch v1.6",
  5769. "link": "https://github.com/lutzroeder/netron/issues/720"
  5770. },
  5771. {
  5772. "type": "pytorch",
  5773. "target": "inception_v3_traced.pt",
  5774. "source": "https://github.com/lutzroeder/netron/files/6096627/inception_v3_traced.pt.zip[inception_v3_traced.pt]",
  5775. "format": "TorchScript v1.6",
  5776. "link": "https://github.com/lutzroeder/netron/issues/281"
  5777. },
  5778. {
  5779. "type": "pytorch",
  5780. "target": "inception_v3.pt",
  5781. "source": "https://github.com/lutzroeder/netron/files/6096628/inception_v3.pt.zip[inception_v3.pt]",
  5782. "format": "TorchScript v1.6",
  5783. "link": "https://github.com/lutzroeder/netron/issues/281"
  5784. },
  5785. {
  5786. "type": "pytorch",
  5787. "target": "inception_v3.pt2",
  5788. "source": "https://github.com/user-attachments/files/17179803/inception_v3.pt2.zip[inception_v3.pt2]",
  5789. "format": "PyTorch Export v5.3",
  5790. "link": "https://github.com/lutzroeder/netron/issues/281"
  5791. },
  5792. {
  5793. "type": "pytorch",
  5794. "target": "inception_v3.pkl.pth.zip",
  5795. "source": "https://github.com/lutzroeder/netron/files/5213454/inception_v3.pkl.pth.zip",
  5796. "format": "PyTorch v0.1.10",
  5797. "link": "https://github.com/lutzroeder/netron/issues/133"
  5798. },
  5799. {
  5800. "type": "pytorch",
  5801. "target": "inception_v3.zip.pth",
  5802. "source": "https://github.com/lutzroeder/netron/files/6096630/inception_v3.zip.pth.zip[inception_v3.zip.pth]",
  5803. "format": "PyTorch v1.6",
  5804. "link": "https://github.com/lutzroeder/netron/issues/133"
  5805. },
  5806. {
  5807. "type": "pytorch",
  5808. "target": "InternVideo2-stage2_1b-224p-f4.pt",
  5809. "source": "https://github.com/user-attachments/files/17607734/InternVideo2-stage2_1b-224p-f4.pt.zip[InternVideo2-stage2_1b-224p-f4.pt]",
  5810. "format": "PyTorch v1.6",
  5811. "link": "https://github.com/lutzroeder/netron/issues/720"
  5812. },
  5813. {
  5814. "type": "pytorch",
  5815. "target": "iv3_pertensor.pt",
  5816. "source": "https://github.com/lutzroeder/netron/files/5212009/iv3_pertensor.zip[iv3_pertensor.pt]",
  5817. "format": "TorchScript v1.5",
  5818. "link": "https://github.com/lutzroeder/netron/issues/842"
  5819. },
  5820. {
  5821. "type": "pytorch",
  5822. "target": "issue1167.pt",
  5823. "source": "https://github.com/lutzroeder/netron/files/12901438/issue1167.pt.zip[issue1167.pt]",
  5824. "format": "TorchScript v1.6",
  5825. "link": "https://github.com/lutzroeder/netron/issues/1167"
  5826. },
  5827. {
  5828. "type": "pytorch",
  5829. "target": "junction_mlp_vehicle_model.pt",
  5830. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/junction_mlp_vehicle_model.pt",
  5831. "format": "TorchScript v1.0",
  5832. "link": "https://github.com/ApolloAuto/apollo"
  5833. },
  5834. {
  5835. "type": "pytorch",
  5836. "target": "labels.pth",
  5837. "source": "https://github.com/lutzroeder/netron/files/7350657/labels.pth.zip[labels.pth]",
  5838. "format": "PyTorch v1.6",
  5839. "link": "https://github.com/lutzroeder/netron/issues/720"
  5840. },
  5841. {
  5842. "type": "pytorch",
  5843. "target": "lane_scanning_vehicle_model.pt",
  5844. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/lane_scanning_vehicle_model.pt",
  5845. "format": "TorchScript v1.0",
  5846. "assert": "model.modules[0].nodes[58].inputs[3].value[0].initializer.type.shape.dimensions[1] == 232",
  5847. "link": "https://github.com/ApolloAuto/apollo"
  5848. },
  5849. {
  5850. "type": "pytorch",
  5851. "target": "lite_real_sr.ptl",
  5852. "source": "https://github.com/lutzroeder/netron/files/12137599/lite_real_sr.ptl.zip[lite_real_sr.ptl]",
  5853. "format": "TorchScript v1.12",
  5854. "tags": "skip-render",
  5855. "link": "https://github.com/lutzroeder/netron/issues/842"
  5856. },
  5857. {
  5858. "type": "pytorch",
  5859. "target": "LMModel1.pt",
  5860. "source": "https://github.com/lutzroeder/netron/files/7726055/LMModel1.zip[LMModel1.pt]",
  5861. "format": "TorchScript v1.6",
  5862. "link": "https://github.com/lutzroeder/netron/issues/842"
  5863. },
  5864. {
  5865. "type": "pytorch",
  5866. "target": "load_library.pt",
  5867. "source": "https://github.com/lutzroeder/netron/files/12839408/load_library.pt.zip[load_library.pt]",
  5868. "format": "PyTorch Package v1.9",
  5869. "link": "https://github.com/lutzroeder/netron/issues/928"
  5870. },
  5871. {
  5872. "type": "pytorch",
  5873. "target": "m4-sWE-0.1B.script.pt",
  5874. "source": "https://github.com/user-attachments/files/17967188/m4-sWE-0.1B.script.pt.zip[m4-sWE-0.1B.script.pt]",
  5875. "format": "TorchScript v1.6",
  5876. "link": "https://github.com/lutzroeder/netron/issues/842"
  5877. },
  5878. {
  5879. "type": "pytorch",
  5880. "target": "mask_depthwise_conv.pt",
  5881. "source": "https://github.com/lutzroeder/netron/files/6186157/mask_depthwise_conv.pt.zip[mask_depthwise_conv.pt]",
  5882. "format": "TorchScript v1.3",
  5883. "link": "https://github.com/lutzroeder/netron/issues/281"
  5884. },
  5885. {
  5886. "type": "pytorch",
  5887. "target": "mask_model.pt",
  5888. "source": "https://github.com/lutzroeder/netron/files/10080302/mask_model.pt.zip[mask_model.pt]",
  5889. "format": "TorchScript v1.7",
  5890. "link": "https://github.com/lutzroeder/netron/issues/842"
  5891. },
  5892. {
  5893. "type": "pytorch",
  5894. "target": "mask_r_cnn.pth",
  5895. "source": "https://raw.githubusercontent.com/facebookresearch/kill-the-bits/master/src/models/compressed/mask_r_cnn.pth",
  5896. "format": "PyTorch v0.1.10",
  5897. "assert": "model.modules[0].nodes[0].inputs.length == 1",
  5898. "link": "https://github.com/facebookresearch/kill-the-bits/tree/master/src/models/compressed"
  5899. },
  5900. {
  5901. "type": "pytorch",
  5902. "target": "mask_rcnn.pt",
  5903. "source": "https://github.com/user-attachments/files/17966950/mask_rcnn.pt.zip[mask_rcnn.pt]",
  5904. "format": "TorchScript v1.7",
  5905. "link": "https://github.com/lutzroeder/netron/issues/842"
  5906. },
  5907. {
  5908. "type": "pytorch",
  5909. "target": "mcunet-5fps.pkl",
  5910. "source": "https://github.com/user-attachments/files/16401553/mcunet-5fps.pkl.zip[mcunet-5fps.pkl]",
  5911. "format": "PyTorch v1.6",
  5912. "assert": "model.modules[0].nodes[0].inputs[0].value.inputs[9].value.inputs[0].value.type.dataType == 'int8'",
  5913. "link": "https://github.com/lutzroeder/netron/issues/543"
  5914. },
  5915. {
  5916. "type": "pytorch",
  5917. "target": "mnist_bfloat16.pt",
  5918. "source": "https://github.com/lutzroeder/netron/files/8556403/mnist_bfloat16.pt.zip[mnist_bfloat16.pt]",
  5919. "format": "PyTorch v1.6",
  5920. "assert": "model.modules[0].nodes[0].inputs[0].value[0].initializer.type.dataType == 'bfloat16'",
  5921. "link": "https://github.com/lutzroeder/netron/issues/720"
  5922. },
  5923. {
  5924. "type": "pytorch",
  5925. "target": "mnist_linear.ckpt",
  5926. "source": "https://github.com/lutzroeder/netron/files/3585288/mnist_linear_torchscript.zip[mnist_linear.ckpt]",
  5927. "format": "PyTorch v0.1.10",
  5928. "link": "https://github.com/lutzroeder/netron/issues/281"
  5929. },
  5930. {
  5931. "type": "pytorch",
  5932. "target": "mnist_linear_dynamic_quantized.pt",
  5933. "source": "https://github.com/lutzroeder/netron/files/4774023/mnist_linear_dynamic_quantized.zip[mnist_linear_dynamic_quantized.pt]",
  5934. "format": "PyTorch v0.1.10",
  5935. "assert": "model.modules[0].nodes[0].inputs[2].value.type.name == 'torch.qint8'",
  5936. "link": "https://github.com/lutzroeder/netron/issues/519"
  5937. },
  5938. {
  5939. "type": "pytorch",
  5940. "target": "mnist_linear_static_quantized.pt",
  5941. "source": "https://github.com/lutzroeder/netron/files/4774022/mnist_linear_static_quantized.zip[mnist_linear_static_quantized.pt]",
  5942. "format": "PyTorch v0.1.10",
  5943. "link": "https://github.com/lutzroeder/netron/issues/519"
  5944. },
  5945. {
  5946. "type": "pytorch",
  5947. "target": "mnist_linear_torchscript_1.pt",
  5948. "source": "https://github.com/lutzroeder/netron/files/3585288/mnist_linear_torchscript.zip[mnist_linear_torchscript_1.pt]",
  5949. "format": "TorchScript v1.1",
  5950. "link": "https://github.com/lutzroeder/netron/issues/281"
  5951. },
  5952. {
  5953. "type": "pytorch",
  5954. "target": "mnist_linear_torchscript_2.pt",
  5955. "source": "https://github.com/lutzroeder/netron/files/3585288/mnist_linear_torchscript.zip[mnist_linear_torchscript_2.pt]",
  5956. "format": "TorchScript v1.3",
  5957. "link": "https://github.com/lutzroeder/netron/issues/281"
  5958. },
  5959. {
  5960. "type": "pytorch",
  5961. "target": "mobilefacenet_scripted.pt",
  5962. "source": "https://github.com/foamliu/MobileFaceNet/releases/download/v1.0/mobilefacenet_scripted.pt",
  5963. "format": "TorchScript v1.3",
  5964. "link": "https://github.com/foamliu/MobileFaceNet"
  5965. },
  5966. {
  5967. "type": "pytorch",
  5968. "target": "mobilenet_quantization_scripted_quantized_1.pth",
  5969. "source": "https://github.com/lutzroeder/netron/files/5394885/mobilenet_quantization_scripted_quantized.zip[mobilenet_quantization_scripted_quantized_1.pth]",
  5970. "format": "TorchScript v1.3",
  5971. "link": "https://github.com/lutzroeder/netron/issues/421"
  5972. },
  5973. {
  5974. "type": "pytorch",
  5975. "target": "mobilenet_quantization_scripted_quantized_2.pth",
  5976. "source": "https://github.com/lutzroeder/netron/files/5394885/mobilenet_quantization_scripted_quantized.zip[mobilenet_quantization_scripted_quantized_2.pth]",
  5977. "format": "TorchScript v1.6",
  5978. "link": "https://github.com/lutzroeder/netron/issues/421"
  5979. },
  5980. {
  5981. "type": "pytorch",
  5982. "target": "mobilenet_v2.pt",
  5983. "source": "https://github.com/lutzroeder/netron/files/6096624/mobilenet_v2.pt.zip[mobilenet_v2.pt]",
  5984. "format": "TorchScript v1.6",
  5985. "link": "https://github.com/lutzroeder/netron/issues/281"
  5986. },
  5987. {
  5988. "type": "pytorch",
  5989. "target": "mobilenet_v2.pt2",
  5990. "source": "https://github.com/user-attachments/files/17171765/mobilenet_v2.pt2.zip[mobilenet_v2.pt2]",
  5991. "format": "PyTorch Export v5.3",
  5992. "link": "https://github.com/lutzroeder/netron/issues/1211"
  5993. },
  5994. {
  5995. "type": "pytorch",
  5996. "target": "mobilenet_v2_traced.pt",
  5997. "source": "https://github.com/lutzroeder/netron/files/6096623/mobilenet_v2_traced.pt.zip[mobilenet_v2_traced.pt]",
  5998. "format": "TorchScript v1.6",
  5999. "link": "https://github.com/lutzroeder/netron/issues/281"
  6000. },
  6001. {
  6002. "type": "pytorch",
  6003. "target": "model.ptl",
  6004. "source": "https://github.com/lutzroeder/netron/files/11149538/model.ptl.zip[model.ptl]",
  6005. "format": "TorchScript v1.6",
  6006. "assert": "model.modules[0].nodes[0].inputs[1].type == 'object'",
  6007. "link": "https://github.com/lutzroeder/netron/issues/842"
  6008. },
  6009. {
  6010. "type": "pytorch",
  6011. "target": "model_0_epochs.pt",
  6012. "source": "https://github.com/lutzroeder/netron/files/6765569/model_0_epochs.pt.zip[model_0_epochs.pt]",
  6013. "format": "TorchScript v1.6",
  6014. "link": "https://github.com/lutzroeder/netron/issues/647"
  6015. },
  6016. {
  6017. "type": "pytorch",
  6018. "target": "model_10_10_10.pth",
  6019. "source": "https://github.com/user-attachments/files/16401752/model_10_10_10.pth.zip[model_10_10_10.pth]",
  6020. "format": "PyTorch v1.6",
  6021. "link": "https://github.com/lutzroeder/netron/issues/543"
  6022. },
  6023. {
  6024. "type": "pytorch",
  6025. "target": "model_final.ckpt",
  6026. "source": "https://github.com/user-attachments/files/16401708/model_final.ckpt.zip[model_final.ckpt]",
  6027. "format": "PyTorch v1.6",
  6028. "assert": "model.modules[0].nodes[0].inputs.length == 2",
  6029. "link": "https://github.com/lutzroeder/netron/issues/543"
  6030. },
  6031. {
  6032. "type": "pytorch",
  6033. "target": "model_fnet.pt",
  6034. "source": "https://github.com/lutzroeder/netron/files/8457286/model_fnet.pt.zip[model_fnet.pt]",
  6035. "format": "TorchScript v1.6",
  6036. "link": "https://github.com/lutzroeder/netron/issues/882"
  6037. },
  6038. {
  6039. "type": "pytorch",
  6040. "target": "model_optim_rng.pt",
  6041. "source": "https://github.com/user-attachments/files/16489187/model_optim_rng.pt.zip[model_optim_rng.pt]",
  6042. "format": "PyTorch v1.6",
  6043. "assert": "model.modules[0].nodes[0].inputs[0].value.inputs[2].value.inputs.length == 3",
  6044. "link": "https://github.com/lutzroeder/netron/issues/543"
  6045. },
  6046. {
  6047. "type": "pytorch",
  6048. "target": "model_trt.pth",
  6049. "source": "https://github.com/user-attachments/files/16401618/model_trt.pth.zip[model_trt.pth]",
  6050. "format": "PyTorch v1.6",
  6051. "assert": "model.modules[0].nodes[0].inputs[3].visible == false",
  6052. "link": "https://github.com/lutzroeder/netron/issues/543"
  6053. },
  6054. {
  6055. "type": "pytorch",
  6056. "target": "model-reddit16-f140225004_2.pt1",
  6057. "source": "https://raw.githubusercontent.com/pytorch/android-demo-app/master/PyTorchDemoApp/app/src/main/assets/model-reddit16-f140225004_2.pt1",
  6058. "format": "TorchScript v1.3",
  6059. "link": "https://github.com/pytorch/android-demo-app"
  6060. },
  6061. {
  6062. "type": "pytorch",
  6063. "target": "mobilenetv2-quant_full-nnapi.pt",
  6064. "source": "https://github.com/lutzroeder/netron/files/7406443/mobilenetv2-quant_full.zip[mobilenetv2-quant_full/mobilenetv2-quant_full-nnapi.pt]",
  6065. "format": "TorchScript v1.6",
  6066. "tags": "quantization",
  6067. "link": "https://github.com/lutzroeder/netron/issues/644"
  6068. },
  6069. {
  6070. "type": "pytorch",
  6071. "target": "mobilenetv2-quant_full-cpu.pt",
  6072. "source": "https://github.com/lutzroeder/netron/files/7406443/mobilenetv2-quant_full.zip[mobilenetv2-quant_full/mobilenetv2-quant_full-cpu.pt]",
  6073. "format": "TorchScript v1.6",
  6074. "link": "https://github.com/lutzroeder/netron/issues/644"
  6075. },
  6076. {
  6077. "type": "pytorch",
  6078. "target": "model_static_cpu.pt",
  6079. "source": "https://github.com/user-attachments/files/16091311/model_static_cpu.pt.zip[model_static_cpu.pt]",
  6080. "format": "TorchScript v1.6",
  6081. "tags": "skip-render",
  6082. "link": "https://github.com/lutzroeder/netron/issues/842"
  6083. },
  6084. {
  6085. "type": "pytorch",
  6086. "target": "model_dynamic_cpu.pt",
  6087. "source": "https://github.com/user-attachments/files/16091313/model_dynamic_cpu.pt.zip[model_dynamic_cpu.pt]",
  6088. "format": "TorchScript v1.6",
  6089. "tags": "skip-render",
  6090. "link": "https://github.com/lutzroeder/netron/issues/842"
  6091. },
  6092. {
  6093. "type": "pytorch",
  6094. "target": "module_000007.pt",
  6095. "source": "https://github.com/lutzroeder/netron/files/9075631/module_000007.pt.zip[module_000007.pt]",
  6096. "link": "https://github.com/lutzroeder/netron/issues/842"
  6097. },
  6098. {
  6099. "type": "pytorch",
  6100. "target": "model_scripted.pt",
  6101. "source": "https://github.com/user-attachments/files/16401554/model_scripted.pt.zip[model_scripted.pt]",
  6102. "format": "PyTorch v1.6",
  6103. "link": "https://github.com/lutzroeder/netron/issues/543"
  6104. },
  6105. {
  6106. "type": "pytorch",
  6107. "target": "mtcnn.pt",
  6108. "source": "https://raw.githubusercontent.com/deepware/dFace/master/models/mtcnn.pt",
  6109. "format": "PyTorch v0.1.10",
  6110. "assert": "model.modules[0].nodes[0].inputs.length == 3",
  6111. "link": "https://github.com/deepware/dface/tree/master/dface"
  6112. },
  6113. {
  6114. "type": "pytorch",
  6115. "target": "muzero_models.pb",
  6116. "source": "https://github.com/user-attachments/files/16401557/muzero_models.pb.zip[muzero_models.pb]",
  6117. "format": "PyTorch v1.6",
  6118. "link": "https://github.com/lutzroeder/netron/issues/543"
  6119. },
  6120. {
  6121. "type": "pytorch",
  6122. "target": "multi_return.pt",
  6123. "source": "https://github.com/lutzroeder/netron/files/12811973/multi_return.pt.zip[multi_return.pt]",
  6124. "format": "PyTorch Package v1.9",
  6125. "link": "https://github.com/lutzroeder/netron/issues/928"
  6126. },
  6127. {
  6128. "type": "pytorch",
  6129. "target": "netron_issue_313_v1.pt",
  6130. "source": "https://github.com/lutzroeder/netron/files/3721266/netron_issue_313.zip[netron_issue_313_v1.pt]",
  6131. "format": "TorchScript v1.0",
  6132. "link": "https://github.com/lutzroeder/netron/issues/313"
  6133. },
  6134. {
  6135. "type": "pytorch",
  6136. "target": "netron_issue_313_v2.pt",
  6137. "source": "https://github.com/lutzroeder/netron/files/3721266/netron_issue_313.zip[netron_issue_313_v2.pt]",
  6138. "format": "TorchScript v1.3",
  6139. "link": "https://github.com/lutzroeder/netron/issues/313"
  6140. },
  6141. {
  6142. "type": "pytorch",
  6143. "target": "netron_issue_432_activation.pth",
  6144. "source": "https://github.com/lutzroeder/netron/files/4226686/netron_issue_432_activation.pth.zip[netron_issue_432_activation.pth]",
  6145. "format": "TorchScript v1.3",
  6146. "link": "https://github.com/lutzroeder/netron/issues/432"
  6147. },
  6148. {
  6149. "type": "pytorch",
  6150. "target": "netron_issue_432_bmm.pth",
  6151. "source": "https://github.com/lutzroeder/netron/files/4226688/netron_issue_432_bmm.pth.zip[netron_issue_432_bmm.pth]",
  6152. "format": "TorchScript v1.3",
  6153. "link": "https://github.com/lutzroeder/netron/issues/432"
  6154. },
  6155. {
  6156. "type": "pytorch",
  6157. "target": "netron_issue_432_constant_pad_2d.pth",
  6158. "source": "https://github.com/lutzroeder/netron/files/4226690/netron_issue_432_constant_pad_2d.pth.zip[netron_issue_432_constant_pad_2d.pth]",
  6159. "format": "TorchScript v1.3",
  6160. "link": "https://github.com/lutzroeder/netron/issues/432"
  6161. },
  6162. {
  6163. "type": "pytorch",
  6164. "target": "netron_issue_529.pt",
  6165. "source": "https://github.com/lutzroeder/netron/files/4834633/netron_issue_529.zip[netron_issue_529.pt]",
  6166. "format": "TorchScript v1.5",
  6167. "link": "https://github.com/lutzroeder/netron/issues/529"
  6168. },
  6169. {
  6170. "type": "pytorch",
  6171. "target": "netron_issue_529_traced.pt",
  6172. "source": "https://github.com/lutzroeder/netron/files/4834633/netron_issue_529.zip[netron_issue_529_traced.pt]",
  6173. "format": "TorchScript v1.5",
  6174. "link": "https://github.com/lutzroeder/netron/issues/529"
  6175. },
  6176. {
  6177. "type": "pytorch",
  6178. "target": "netron_issue_545_caffe2.pt",
  6179. "source": "https://github.com/lutzroeder/netron/files/5690362/netron_issue_545_caffe2.pt.zip[netron_issue_545_caffe2.pt]",
  6180. "format": "TorchScript v1.6",
  6181. "link": "https://github.com/lutzroeder/netron/issues/545"
  6182. },
  6183. {
  6184. "type": "pytorch",
  6185. "target": "netron_issue_547_1.pt",
  6186. "source": "https://github.com/lutzroeder/netron/files/5137393/netron_issue_547_1.zip[netron_issue_547_1.pt]",
  6187. "link": "https://github.com/lutzroeder/netron/issues/547"
  6188. },
  6189. {
  6190. "type": "pytorch",
  6191. "target": "netron_issue_609.pt",
  6192. "source": "https://github.com/lutzroeder/netron/files/5309279/netron_issue_609.pt.zip[netron_issue_609.pt]",
  6193. "format": "TorchScript v1.6",
  6194. "link": "https://github.com/lutzroeder/netron/issues/609"
  6195. },
  6196. {
  6197. "type": "pytorch",
  6198. "target": "netron_issue_677.pt",
  6199. "source": "https://github.com/lutzroeder/netron/files/5923252/netron_issue_677.pt.zip[netron_issue_677.pt]",
  6200. "format": "TorchScript v1.6",
  6201. "assert": "model.modules[0].nodes.length == 5",
  6202. "link": "https://github.com/lutzroeder/netron/issues/677"
  6203. },
  6204. {
  6205. "type": "pytorch",
  6206. "target": "netron_issue_920.pt",
  6207. "source": "https://github.com/lutzroeder/netron/files/8857486/netron_issue_920.pt.zip[netron_issue_920.pt]",
  6208. "format": "TorchScript v1.6",
  6209. "link": "https://github.com/lutzroeder/netron/issues/637"
  6210. },
  6211. {
  6212. "type": "pytorch",
  6213. "target": "nlf_l_multi.torchscript",
  6214. "source": "https://github.com/user-attachments/files/20839705/nlf_l_multi.torchscript.zip[nlf_l_multi.torchscript]",
  6215. "format": "PyTorch v1.12",
  6216. "link": "https://github.com/lutzroeder/netron/issues/842"
  6217. },
  6218. {
  6219. "type": "pytorch",
  6220. "target": "norm_inplace.pt",
  6221. "source": "https://github.com/lutzroeder/netron/files/13404598/norm_inplace.pt.zip[norm_inplace.pt]",
  6222. "format": "TorchScript v1.3",
  6223. "link": "https://github.com/lutzroeder/netron/issues/473"
  6224. },
  6225. {
  6226. "type": "pytorch",
  6227. "target": "opt_xx.pt",
  6228. "source": "https://github.com/lutzroeder/netron/files/8747908/opt_xx.pt.zip[opt_xx.pt]",
  6229. "format": "TorchScript v1.6",
  6230. "link": "https://github.com/lutzroeder/netron/issues/913"
  6231. },
  6232. {
  6233. "type": "pytorch",
  6234. "target": "placeholder.pt2",
  6235. "source": "https://github.com/user-attachments/files/17671758/placeholder.pt2.zip[placeholder.pt2]",
  6236. "format": "PyTorch Export v8.1",
  6237. "link": "https://github.com/lutzroeder/netron/issues/913"
  6238. },
  6239. {
  6240. "type": "pytorch",
  6241. "target": "pedestrian_interaction_position_embedding.pt",
  6242. "source": "https://github.com/user-attachments/files/16120032/pedestrian_interaction_position_embedding.pt.zip[pedestrian_interaction_position_embedding.pt]",
  6243. "format": "TorchScript v1.0",
  6244. "link": "https://github.com/lutzroeder/netron/issues/842"
  6245. },
  6246. {
  6247. "type": "pytorch",
  6248. "target": "pedestrian_interaction_single_lstm.pt",
  6249. "source": "https://github.com/user-attachments/files/16120033/pedestrian_interaction_single_lstm.pt.zip[pedestrian_interaction_single_lstm.pt]",
  6250. "format": "TorchScript v1.0",
  6251. "link": "https://github.com/lutzroeder/netron/issues/842"
  6252. },
  6253. {
  6254. "type": "pytorch",
  6255. "target": "posemodel.pt",
  6256. "source": "https://github.com/lutzroeder/netron/files/5475350/posemodel.pt.zip[posemodel.pt]",
  6257. "format": "TorchScript v1.6",
  6258. "link": "https://github.com/lutzroeder/netron/issues/546"
  6259. },
  6260. {
  6261. "type": "pytorch",
  6262. "target": "pyg_model.pt",
  6263. "source": "https://github.com/user-attachments/files/17969647/pyg_model.pt.zip[pyg_model.pt]",
  6264. "format": "TorchScript v1.7",
  6265. "link": "https://github.com/lutzroeder/netron/issues/546"
  6266. },
  6267. {
  6268. "type": "pytorch",
  6269. "target": "quant_3d.pt",
  6270. "source": "https://github.com/lutzroeder/netron/files/5877566/quant_3d.pt.zip[quant_3d.pt]",
  6271. "format": "TorchScript v1.6",
  6272. "link": "https://github.com/lutzroeder/netron/issues/546"
  6273. },
  6274. {
  6275. "type": "pytorch",
  6276. "target": "quantized_resnet18.pth",
  6277. "source": "https://github.com/user-attachments/files/20642664/quantized_resnet18.pth.zip[quantized_resnet18.pth]",
  6278. "format": "PyTorch v1.6",
  6279. "link": "https://github.com/lutzroeder/netron/issues/720"
  6280. },
  6281. {
  6282. "type": "pytorch",
  6283. "target": "r3d_18_traced.pt",
  6284. "source": "https://github.com/lutzroeder/netron/files/6096649/r3d_18_traced.pt.zip[r3d_18_traced.pt]",
  6285. "format": "TorchScript v1.6",
  6286. "link": "https://github.com/lutzroeder/netron/issues/281"
  6287. },
  6288. {
  6289. "type": "pytorch",
  6290. "target": "r3d_18.pt",
  6291. "source": "https://github.com/lutzroeder/netron/files/6096650/r3d_18.pt.zip[r3d_18.pt]",
  6292. "format": "TorchScript v1.6",
  6293. "link": "https://github.com/lutzroeder/netron/issues/281"
  6294. },
  6295. {
  6296. "type": "pytorch",
  6297. "target": "r3d_18.zip.pth",
  6298. "source": "https://github.com/lutzroeder/netron/files/6096655/r3d_18.zip.pth.zip[r3d_18.zip.pth]",
  6299. "format": "PyTorch v1.6",
  6300. "link": "https://github.com/lutzroeder/netron/issues/133"
  6301. },
  6302. {
  6303. "type": "pytorch",
  6304. "target": "rcnn.pt",
  6305. "source": "https://github.com/lutzroeder/netron/files/9035740/rcnn.pt.zip[rcnn.pt]",
  6306. "link": "https://github.com/lutzroeder/netron/issues/842"
  6307. },
  6308. {
  6309. "type": "pytorch",
  6310. "target": "refine_model.pt",
  6311. "source": "https://github.com/lutzroeder/netron/files/6186158/refine_model.pt.zip[refine_model.pt]",
  6312. "format": "TorchScript v1.3",
  6313. "link": "https://github.com/lutzroeder/netron/issues/281"
  6314. },
  6315. {
  6316. "type": "pytorch",
  6317. "target": "resnet-18-at-export.pth",
  6318. "source": "https://s3.amazonaws.com/modelzoo-networks/resnet-18-at-export.pth",
  6319. "format": "PyTorch v0.1.10",
  6320. "assert": "model.modules[0].nodes.length == 27",
  6321. "link": "https://github.com/szagoruyko/attention-transfer"
  6322. },
  6323. {
  6324. "type": "pytorch",
  6325. "target": "resnext50_32x4d_fpn.pth",
  6326. "source": "https://github.com/lutzroeder/netron/files/8985800/resnext50_32x4d_fpn.pth.zip[resnext50_32x4d_fpn.pth]",
  6327. "format": "TorchScript v1.7",
  6328. "link": "https://github.com/lutzroeder/netron/issues/842"
  6329. },
  6330. {
  6331. "type": "pytorch",
  6332. "target": "resnet101.pkl.pth.zip",
  6333. "source": "https://github.com/lutzroeder/netron/files/5213455/resnet101.pkl.pth.zip",
  6334. "format": "PyTorch v0.1.10",
  6335. "link": "https://github.com/lutzroeder/netron/issues/133"
  6336. },
  6337. {
  6338. "type": "pytorch",
  6339. "target": "resnet101.pt",
  6340. "source": "https://github.com/lutzroeder/netron/files/6096666/resnet101_traced.pt.zip[resnet101_traced.pt]",
  6341. "format": "TorchScript v1.6",
  6342. "link": "https://github.com/lutzroeder/netron/issues/281"
  6343. },
  6344. {
  6345. "type": "pytorch",
  6346. "target": "resnet101_traced.pt",
  6347. "source": "https://github.com/lutzroeder/netron/files/6096671/shufflenet_v2_x1_0.pt.zip[shufflenet_v2_x1_0.pt]",
  6348. "format": "TorchScript v1.6",
  6349. "link": "https://github.com/lutzroeder/netron/issues/281"
  6350. },
  6351. {
  6352. "type": "pytorch",
  6353. "target": "resnet18.ot",
  6354. "source": "https://github.com/lutzroeder/netron/files/7664092/resnet18.ot.zip[resnet18.ot]",
  6355. "format": "TorchScript v1.0",
  6356. "assert": "model.modules[0].nodes[0].inputs[0].value[0].name == 'conv1|weight'",
  6357. "link": "https://github.com/lutzroeder/netron/issues/686"
  6358. },
  6359. {
  6360. "type": "pytorch",
  6361. "target": "resnet18.pt",
  6362. "source": "https://github.com/lutzroeder/netron/files/5212015/resnet18.zip[resnet18.pt]",
  6363. "format": "TorchScript v1.6",
  6364. "assert": "model.modules[0].nodes[1].inputs[1].value.inputs[5].value == 1",
  6365. "link": "https://github.com/lutzroeder/netron/issues/559"
  6366. },
  6367. {
  6368. "type": "pytorch",
  6369. "target": "resnet18.pt2",
  6370. "source": "https://github.com/lutzroeder/netron/files/13855229/resnet18.pt2.zip[resnet18.pt2]",
  6371. "format": "PyTorch Export v1",
  6372. "link": "https://github.com/lutzroeder/netron/issues/1211"
  6373. },
  6374. {
  6375. "type": "pytorch",
  6376. "target": "resnet18_cifar10_quantized.pt",
  6377. "source": "https://github.com/user-attachments/files/16401717/resnet18_cifar10_quantized.pt.zip[resnet18_cifar10_quantized.pt]",
  6378. "format": "PyTorch v1.6",
  6379. "assert": "model.modules[0].nodes.length == 50",
  6380. "link": "https://github.com/lutzroeder/netron/issues/543"
  6381. },
  6382. {
  6383. "type": "pytorch",
  6384. "target": "resnet18_fbgemm_16fa66dd.pth",
  6385. "source": "https://download.pytorch.org/models/quantized/resnet18_fbgemm_16fa66dd.pth",
  6386. "format": "PyTorch v0.1.10",
  6387. "link": "https://github.com/pytorch/vision/blob/master/torchvision/models/quantization/resnet.py"
  6388. },
  6389. {
  6390. "type": "pytorch",
  6391. "target": "resnet18_fx_graph_mode_quantized.pth",
  6392. "source": "https://github.com/lutzroeder/netron/files/6716842/resnet18_fx_graph_mode_quantized.pth.zip[resnet18_fx_graph_mode_quantized.pth]",
  6393. "format": "TorchScript v1.6",
  6394. "link": "https://github.com/lutzroeder/netron/issues/758"
  6395. },
  6396. {
  6397. "type": "pytorch",
  6398. "target": "resnet18_large_blocks.pth",
  6399. "source": "https://raw.githubusercontent.com/facebookresearch/kill-the-bits/master/src/models/compressed/resnet18_large_blocks.pth",
  6400. "format": "PyTorch v0.1.10",
  6401. "assert": "model.modules[0].nodes[20].inputs.length == 1",
  6402. "link": "https://github.com/facebookresearch/kill-the-bits/tree/master/src/models/compressed"
  6403. },
  6404. {
  6405. "type": "pytorch",
  6406. "target": "resnet18_quantized_cifar10.pt.zip",
  6407. "source": "https://github.com/lutzroeder/netron/files/7610907/resnet18_quantized_cifar10.pt.zip[resnet18_quantized_cifar10.pt]",
  6408. "format": "TorchScript v1.6",
  6409. "link": "https://github.com/lutzroeder/netron/issues/842"
  6410. },
  6411. {
  6412. "type": "pytorch",
  6413. "target": "resnet34.pt",
  6414. "source": "https://github.com/lutzroeder/netron/files/9075629/resnet34.pt.zip",
  6415. "format": "PyTorch Package v1.9",
  6416. "link": "https://github.com/lutzroeder/netron/issues/928"
  6417. },
  6418. {
  6419. "type": "pytorch",
  6420. "target": "resnet34-333f7ec4.pth",
  6421. "source": "https://download.pytorch.org/models/resnet34-333f7ec4.pth",
  6422. "format": "PyTorch v0.1.1",
  6423. "link": "https://github.com/pytorch/vision/blob/master/torchvision/models/resnet.py"
  6424. },
  6425. {
  6426. "type": "pytorch",
  6427. "target": "resnet50_pertensor.pt",
  6428. "source": "https://github.com/lutzroeder/netron/files/5212006/resnet50_pertensor.zip[resnet50_pertensor.pt]",
  6429. "format": "TorchScript v1.5",
  6430. "assert": "model.modules[0].nodes[7].inputs[3].value[1] == 3",
  6431. "link": "https://github.com/lutzroeder/netron/issues/842"
  6432. },
  6433. {
  6434. "type": "pytorch",
  6435. "target": "resnet50_tucker.pth",
  6436. "source": "https://raw.githubusercontent.com/larry0123du/Decompose-CNN/master/models/resnet50_tucker.pth",
  6437. "format": "PyTorch v0.1.10",
  6438. "link": "https://github.com/larry0123du/Decompose-CNN"
  6439. },
  6440. {
  6441. "type": "pytorch",
  6442. "target": "resnet50_tucker_state.pth",
  6443. "source": "https://raw.githubusercontent.com/larry0123du/Decompose-CNN/master/models/resnet50_tucker_state.pth",
  6444. "format": "PyTorch v0.1.10",
  6445. "link": "https://github.com/larry0123du/Decompose-CNN"
  6446. },
  6447. {
  6448. "type": "pytorch",
  6449. "target": "rng_state.pth",
  6450. "source": "https://github.com/user-attachments/files/16401709/rng_state.pth.zip[rng_state.pth]",
  6451. "format": "PyTorch v1.6",
  6452. "assert": "model.modules[0].nodes[0].inputs[1].name == 'numpy'",
  6453. "link": "https://github.com/lutzroeder/netron/issues/543"
  6454. },
  6455. {
  6456. "type": "pytorch",
  6457. "target": "rpn_model.pt",
  6458. "source": "https://github.com/lutzroeder/netron/files/6186159/rpn_model.pt.zip[rpn_model.pt]",
  6459. "format": "TorchScript v1.3",
  6460. "link": "https://github.com/lutzroeder/netron/issues/281"
  6461. },
  6462. {
  6463. "type": "pytorch",
  6464. "target": "rvm_mobilenetv3_fp16.torchscript",
  6465. "source": "https://github.com/PeterL1n/RobustVideoMatting/releases/download/v1.0.0/rvm_mobilenetv3_fp16.torchscript",
  6466. "format": "TorchScript v1.6",
  6467. "link": "https://github.com/PeterL1n/RobustVideoMatting"
  6468. },
  6469. {
  6470. "type": "pytorch",
  6471. "target": "scriptmodule.ff",
  6472. "source": "https://github.com/lutzroeder/netron/files/10230651/scriptmodule.ff.zip[scriptmodule.ff]",
  6473. "format": "PyTorch Mobile v1.11",
  6474. "link": "https://github.com/lutzroeder/netron/issues/1023"
  6475. },
  6476. {
  6477. "type": "pytorch",
  6478. "target": "s2a-q4-small-en+pl.model",
  6479. "source": "https://github.com/user-attachments/files/16401714/s2a-q4-small-en%2Bpl.model.zip[s2a-q4-small-en+pl.model]",
  6480. "format": "PyTorch v1.6",
  6481. "assert": "model.modules[0].nodes[0].inputs[2].value.type.nodes.length == 340",
  6482. "link": "https://github.com/lutzroeder/netron/issues/543"
  6483. },
  6484. {
  6485. "type": "pytorch",
  6486. "target": "segmentor.pt",
  6487. "source": "https://github.com/lutzroeder/netron/files/7663953/segmentor.pt.zip[segmentor.pt]",
  6488. "format": "PyTorch v1.6",
  6489. "assert": "model.modules[0].nodes[0].inputs[0].value[0].inputs[0].value[0].type.name == '__torch__.___torch_mangle_1.Module'",
  6490. "link": "https://github.com/lutzroeder/netron/issues/686"
  6491. },
  6492. {
  6493. "type": "pytorch",
  6494. "target": "SiamFC_50_model.pth",
  6495. "source": "https://raw.githubusercontent.com/HengLan/SiamFC-PyTorch/master/Train/model/SiamFC_50_model.pth",
  6496. "format": "PyTorch v0.1.10",
  6497. "link": "https://github.com/HengLan/SiamFC-PyTorch"
  6498. },
  6499. {
  6500. "type": "pytorch",
  6501. "target": "silero_vad.jit",
  6502. "source": "https://github.com/lutzroeder/netron/files/12439374/silero_vad.zip[silero_vad.jit]",
  6503. "link": "https://github.com/lutzroeder/netron/issues/1142"
  6504. },
  6505. {
  6506. "type": "pytorch",
  6507. "target": "simple_leaf_fx.pt",
  6508. "source": "https://github.com/lutzroeder/netron/files/12839399/simple_leaf_fx.pt.zip[simple_leaf_fx.pt]",
  6509. "format": "PyTorch Package v1.9",
  6510. "link": "https://github.com/lutzroeder/netron/issues/928"
  6511. },
  6512. {
  6513. "type": "pytorch",
  6514. "target": "shufflenet_v2_x1_0.zip.pth",
  6515. "source": "https://github.com/lutzroeder/netron/files/6096673/shufflenet_v2_x1_0.zip.pth.zip[shufflenet_v2_x1_0.zip.pth]",
  6516. "format": "PyTorch v1.6",
  6517. "link": "https://github.com/lutzroeder/netron/issues/133"
  6518. },
  6519. {
  6520. "type": "pytorch",
  6521. "target": "shufflenet_v2_x1_0.pt",
  6522. "source": "https://github.com/lutzroeder/netron/files/6096671/shufflenet_v2_x1_0.pt.zip[shufflenet_v2_x1_0.pt]",
  6523. "format": "TorchScript v1.6",
  6524. "link": "https://github.com/lutzroeder/netron/issues/281"
  6525. },
  6526. {
  6527. "type": "pytorch",
  6528. "target": "squeezenet1_0-a815701f.pth",
  6529. "source": "https://download.pytorch.org/models/squeezenet1_0-a815701f.pth",
  6530. "format": "PyTorch v0.1.1"
  6531. },
  6532. {
  6533. "type": "pytorch",
  6534. "target": "squeezenet1_1_traced.pt",
  6535. "source": "https://github.com/lutzroeder/netron/files/6096661/squeezenet1_1_traced.pt.zip[squeezenet1_1_traced.pt]",
  6536. "format": "TorchScript v1.6",
  6537. "tags": "skip-tensor-value",
  6538. "link": "https://github.com/lutzroeder/netron/issues/281"
  6539. },
  6540. {
  6541. "type": "pytorch",
  6542. "target": "squeezenet1_1_traced.ff",
  6543. "source": "https://github.com/lutzroeder/netron/files/10230684/squeezenet1_1_traced.ff.zip[squeezenet1_1_traced.ff]",
  6544. "format": "PyTorch Mobile v1.11",
  6545. "link": "https://github.com/lutzroeder/netron/issues/1023"
  6546. },
  6547. {
  6548. "type": "pytorch",
  6549. "target": "squeezenet1_1.pt",
  6550. "source": "https://github.com/lutzroeder/netron/files/6096662/squeezenet1_1.pt.zip[squeezenet1_1.pt]",
  6551. "format": "TorchScript v1.6",
  6552. "link": "https://github.com/lutzroeder/netron/issues/281"
  6553. },
  6554. {
  6555. "type": "pytorch",
  6556. "target": "squeezenet1_1.pt2",
  6557. "source": "https://github.com/user-attachments/files/20874596/squeezenet1_1.pt2.zip[squeezenet1_1.pt2]",
  6558. "format": "PyTorch Export v8.8",
  6559. "link": "https://github.com/lutzroeder/netron/issues/281"
  6560. },
  6561. {
  6562. "type": "pytorch",
  6563. "target": "squeezenet1_1.serialized_exported_program.json.zip",
  6564. "source": "https://github.com/user-attachments/files/20024037/squeezenet1_1.serialized_exported_program.json.zip",
  6565. "format": "PyTorch Export v7.3",
  6566. "link": "https://github.com/lutzroeder/netron/issues/281"
  6567. },
  6568. {
  6569. "type": "pytorch",
  6570. "target": "squeezenet1_1.pkl.pth.zip",
  6571. "source": "https://github.com/lutzroeder/netron/files/5213456/squeezenet1_1.pkl.pth.zip",
  6572. "format": "PyTorch v0.1.10",
  6573. "link": "https://github.com/lutzroeder/netron/issues/133"
  6574. },
  6575. {
  6576. "type": "pytorch",
  6577. "target": "squeezenet1_1_trt.pt",
  6578. "source": "https://github.com/user-attachments/files/18792413/squeezenet1_1_trt.pt.zip[squeezenet1_1_trt.pt]",
  6579. "format": "TorchScript v1.6",
  6580. "link": "https://github.com/lutzroeder/netron/issues/842"
  6581. },
  6582. {
  6583. "type": "pytorch",
  6584. "target": "squeezenet1_1-f364aa15.pth",
  6585. "source": "https://download.pytorch.org/models/squeezenet1_1-f364aa15.pth",
  6586. "format": "PyTorch v0.1.1"
  6587. },
  6588. {
  6589. "type": "pytorch",
  6590. "target": "ssdlite320_mobilenet_v3_large.pt",
  6591. "source": "https://github.com/lutzroeder/netron/files/7677468/ssdlite320_mobilenet_v3_large.pt.zip[ssdlite320_mobilenet_v3_large.pt]",
  6592. "format": "TorchScript v1.6",
  6593. "link": "https://github.com/lutzroeder/netron/issues/842"
  6594. },
  6595. {
  6596. "type": "pytorch",
  6597. "target": "sparse_coo.pth",
  6598. "source": "https://github.com/lutzroeder/netron/files/9541426/sparse_coo.pth.zip[sparse_coo.pth]",
  6599. "format": "PyTorch v1.6",
  6600. "assert": "model.modules[0].nodes[0].inputs[0].value[0].type.layout == 'sparse.coo'",
  6601. "link": "https://github.com/lutzroeder/netron/issues/720"
  6602. },
  6603. {
  6604. "type": "pytorch",
  6605. "target": "sparsified.pth",
  6606. "source": "https://github.com/lutzroeder/netron/files/9433521/sparsified.pth.zip[sparsified.pth]",
  6607. "format": "PyTorch v1.6",
  6608. "link": "https://github.com/lutzroeder/netron/issues/720"
  6609. },
  6610. {
  6611. "type": "pytorch",
  6612. "target": "superpoint_v1.pth",
  6613. "source": "https://raw.githubusercontent.com/MagicLeapResearch/SuperPointPretrainedNetwork/master/superpoint_v1.pth",
  6614. "format": "PyTorch v0.1.10",
  6615. "assert": "model.modules[0].nodes.length == 12",
  6616. "link": "https://github.com/MagicLeapResearch/SuperPointPretrainedNetwork"
  6617. },
  6618. {
  6619. "type": "pytorch",
  6620. "target": "stable_diffusion_safety_checker.pt",
  6621. "source": "https://github.com/lutzroeder/netron/files/10199037/stable_diffusion.zip[stable_diffusion_safety_checker.pt]",
  6622. "format": "TorchScript v1.6",
  6623. "tags": "skip-tensor-value",
  6624. "link": "https://github.com/lutzroeder/netron/issues/842"
  6625. },
  6626. {
  6627. "type": "pytorch",
  6628. "target": "stable_diffusion_text_encoder.pt",
  6629. "source": "https://github.com/lutzroeder/netron/files/10199037/stable_diffusion.zip[stable_diffusion_text_encoder.pt]",
  6630. "format": "TorchScript v1.6",
  6631. "tags": "skip-tensor-value",
  6632. "link": "https://github.com/lutzroeder/netron/issues/842"
  6633. },
  6634. {
  6635. "type": "pytorch",
  6636. "target": "stable_diffusion_unet.pt",
  6637. "source": "https://github.com/lutzroeder/netron/files/10199037/stable_diffusion.zip[stable_diffusion_unet.pt]",
  6638. "format": "TorchScript v1.12",
  6639. "tags": "skip-render,skip-tensor-value",
  6640. "link": "https://github.com/lutzroeder/netron/issues/842"
  6641. },
  6642. {
  6643. "type": "pytorch",
  6644. "target": "stable_diffusion_vae_decoder.pt",
  6645. "source": "https://github.com/lutzroeder/netron/files/10199037/stable_diffusion.zip[stable_diffusion_vae_decoder.pt]",
  6646. "format": "TorchScript v1.6",
  6647. "tags": "skip-tensor-value",
  6648. "link": "https://github.com/lutzroeder/netron/issues/842"
  6649. },
  6650. {
  6651. "type": "pytorch",
  6652. "target": "stitching_retargeting_module.pth",
  6653. "source": "https://github.com/user-attachments/files/16482907/stitching_retargeting_module.pth.zip[stitching_retargeting_module.pth]",
  6654. "format": "PyTorch v1.6",
  6655. "link": "https://github.com/lutzroeder/netron/issues/543"
  6656. },
  6657. {
  6658. "type": "pytorch",
  6659. "target": "superpoint.pt",
  6660. "source": "https://raw.githubusercontent.com/KinglittleQ/SuperPoint_SLAM/master/superpoint.pt",
  6661. "format": "TorchScript v1.0",
  6662. "link": "https://github.com/KinglittleQ/SuperPoint_SLAM"
  6663. },
  6664. {
  6665. "type": "pytorch",
  6666. "target": "tensor.pkl",
  6667. "source": "https://github.com/lutzroeder/netron/files/14733020/tensor.pkl.zip[tensor.pkl]",
  6668. "format": "PyTorch Pickle",
  6669. "link": "https://github.com/lutzroeder/netron/issues/720"
  6670. },
  6671. {
  6672. "type": "pytorch",
  6673. "target": "tensor-and-integer-in-tuple.pt",
  6674. "source": "https://github.com/user-attachments/files/15879202/tensor-and-integer-in-tuple.pt.zip[tensor-and-integer-in-tuple.pt]",
  6675. "format": "PyTorch v1.6",
  6676. "assert": "model.modules[0].nodes[0].inputs[1].value == 234",
  6677. "link": "https://github.com/lutzroeder/netron/issues/543"
  6678. },
  6679. {
  6680. "type": "pytorch",
  6681. "target": "tensors.pkl",
  6682. "source": "https://github.com/lutzroeder/netron/files/14733021/tensors.pkl.zip[tensors.pkl]",
  6683. "format": "PyTorch Pickle",
  6684. "assert": "model.modules[0].nodes[0].inputs.length == 2",
  6685. "link": "https://github.com/lutzroeder/netron/issues/720"
  6686. },
  6687. {
  6688. "type": "pytorch",
  6689. "target": "tensors.data.pkl",
  6690. "source": "https://github.com/lutzroeder/netron/files/13061412/tensors.data.pkl.zip[tensors.data.pkl]",
  6691. "format": "PyTorch Pickle",
  6692. "assert": "model.modules[0].nodes.length == 18",
  6693. "link": "https://github.com/lutzroeder/netron/issues/720"
  6694. },
  6695. {
  6696. "type": "pytorch",
  6697. "target": "test.8bit.pth",
  6698. "source": "https://github.com/lutzroeder/netron/files/5238524/test.8bit.pth.zip[test.8bit.pth]",
  6699. "format": "TorchScript v1.6",
  6700. "assert": "model.modules[0].nodes[8].type.name == 'conv1d_prepack'",
  6701. "link": "https://github.com/lutzroeder/netron/issues/842"
  6702. },
  6703. {
  6704. "type": "pytorch",
  6705. "target": "TestSerialization.test_lstm.traced.pt",
  6706. "source": "https://github.com/user-attachments/files/16121906/TestSerialization.test_lstm.traced.pt.zip[TestSerialization.test_lstm.traced.pt]",
  6707. "format": "TorchScript v1.6",
  6708. "assert": "model.modules[0].nodes[4].inputs[2].value[0].inputs[0].value == 'quantized_dynamic'",
  6709. "link": "https://github.com/lutzroeder/netron/issues/842"
  6710. },
  6711. {
  6712. "type": "pytorch",
  6713. "target": "TFModel_traced_eager_quant.pt",
  6714. "source": "https://github.com/lutzroeder/netron/files/10867120/TFModel_traced_eager_quant.pt.zip[TFModel_traced_eager_quant.pt]",
  6715. "format": "TorchScript v1.6",
  6716. "assert": "model.modules[0].nodes.length == 46",
  6717. "link": "https://github.com/lutzroeder/netron/issues/842"
  6718. },
  6719. {
  6720. "type": "pytorch",
  6721. "target": "torch_fx_sample.pt",
  6722. "source": "https://github.com/lutzroeder/netron/files/12889841/torch_fx_sample.pt.zip[torch_fx_sample.pt]",
  6723. "format": "PyTorch v1.6",
  6724. "link": "https://github.com/lutzroeder/netron/issues/1414"
  6725. },
  6726. {
  6727. "type": "pytorch",
  6728. "target": "traced_fft.pt",
  6729. "source": "https://github.com/lutzroeder/netron/files/5172197/traced_fft.zip[traced_fft.pt]",
  6730. "format": "TorchScript v1.3",
  6731. "link": "https://github.com/lutzroeder/netron/issues/842"
  6732. },
  6733. {
  6734. "type": "pytorch",
  6735. "target": "traced_gpt2.pt",
  6736. "source": "https://github.com/lutzroeder/netron/files/12010345/traced_gpt2.pt.zip[traced_gpt2.pt]",
  6737. "format": "TorchScript v1.7",
  6738. "link": "https://github.com/lutzroeder/netron/issues/842"
  6739. },
  6740. {
  6741. "type": "pytorch",
  6742. "target": "traced_online_lane_enc.pt",
  6743. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/traced_online_lane_enc.pt",
  6744. "format": "TorchScript v1.0",
  6745. "link": "https://github.com/ApolloAuto/apollo"
  6746. },
  6747. {
  6748. "type": "pytorch",
  6749. "target": "traced_online_obs_enc.pt",
  6750. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/traced_online_obs_enc.pt",
  6751. "format": "TorchScript v1.0",
  6752. "assert": "model.modules[0].nodes[46].inputs[1].value[0] == 1",
  6753. "link": "https://github.com/ApolloAuto/apollo"
  6754. },
  6755. {
  6756. "type": "pytorch",
  6757. "target": "traced_online_pred_layer.pt",
  6758. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/traced_online_pred_layer.pt",
  6759. "format": "TorchScript v1.0",
  6760. "link": "https://github.com/ApolloAuto/apollo"
  6761. },
  6762. {
  6763. "type": "pytorch",
  6764. "target": "traced_pseudo_quantized_model.pt",
  6765. "source": "https://github.com/user-attachments/files/19859244/traced_pseudo_quantized_model.pt.zip[traced_pseudo_quantized_model.pt]",
  6766. "format": "TorchScript v1.6",
  6767. "link": "https://github.com/lutzroeder/netron/issues/842"
  6768. },
  6769. {
  6770. "type": "pytorch",
  6771. "target": "traced_scale_quant.pt",
  6772. "source": "https://github.com/lutzroeder/netron/files/9387784/traced_scale_quant.pt.zip[traced_scale_quant.pt]",
  6773. "format": "TorchScript v1.6",
  6774. "link": "https://github.com/lutzroeder/netron/issues/947"
  6775. },
  6776. {
  6777. "type": "pytorch",
  6778. "target": "transformer.pt",
  6779. "source": "https://github.com/lutzroeder/netron/files/10271969/transformer.pt.zip[transformer.pt]",
  6780. "format": "TorchScript v1.6",
  6781. "link": "https://github.com/lutzroeder/netron/issues/842"
  6782. },
  6783. {
  6784. "type": "pytorch",
  6785. "target": "transformer_traced.pt",
  6786. "source": "https://github.com/lutzroeder/netron/files/10271968/transformer_traced.pt.zip[transformer_traced.pt]",
  6787. "format": "TorchScript v1.6",
  6788. "link": "https://github.com/lutzroeder/netron/issues/842"
  6789. },
  6790. {
  6791. "type": "pytorch",
  6792. "target": "torch_script_model_dot15.pt",
  6793. "source": "https://github.com/lutzroeder/netron/files/6308295/torch_script_model_dot15.pt.zip[torch_script_model_dot15.pt]",
  6794. "format": "TorchScript v1.5",
  6795. "link": "https://github.com/lutzroeder/netron/issues/546"
  6796. },
  6797. {
  6798. "type": "pytorch",
  6799. "target": "torchscript_resnet50_fp32.pth",
  6800. "source": "https://github.com/lutzroeder/netron/files/7688572/torchscript_resnet50_fp32.pth.zip[torchscript_resnet50_fp32.pth]",
  6801. "format": "TorchScript v1.6",
  6802. "link": "https://github.com/lutzroeder/netron/issues/842"
  6803. },
  6804. {
  6805. "type": "pytorch",
  6806. "target": "tutorial_bidirectional_recurrent_neural_network.pth",
  6807. "source": "https://github.com/lutzroeder/netron/files/2587823/tutorial_models.zip[tutorial_bidirectional_recurrent_neural_network.pth]",
  6808. "format": "PyTorch v0.1.10",
  6809. "link": "https://github.com/lutzroeder/netron/issues/133"
  6810. },
  6811. {
  6812. "type": "pytorch",
  6813. "target": "tutorial_convolutional_neural_network.pth",
  6814. "source": "https://github.com/lutzroeder/netron/files/2587823/tutorial_models.zip[tutorial_convolutional_neural_network.pth]",
  6815. "format": "PyTorch v0.1.10",
  6816. "link": "https://github.com/lutzroeder/netron/issues/133"
  6817. },
  6818. {
  6819. "type": "pytorch",
  6820. "target": "tutorial_deep_residual_network.pth",
  6821. "source": "https://github.com/lutzroeder/netron/files/2587823/tutorial_models.zip[tutorial_deep_residual_network.pth]",
  6822. "format": "PyTorch v0.1.10",
  6823. "link": "https://github.com/lutzroeder/netron/issues/133"
  6824. },
  6825. {
  6826. "type": "pytorch",
  6827. "target": "tutorial_logistic_regression.pth",
  6828. "source": "https://github.com/lutzroeder/netron/files/2587823/tutorial_models.zip[tutorial_logistic_regression.pth]",
  6829. "format": "PyTorch v0.1.10",
  6830. "link": "https://github.com/lutzroeder/netron/issues/133"
  6831. },
  6832. {
  6833. "type": "pytorch",
  6834. "target": "tutorial_mnist.pth",
  6835. "source": "https://github.com/lutzroeder/netron/files/2587823/tutorial_models.zip[tutorial_mnist.pth]",
  6836. "format": "PyTorch v0.1.10",
  6837. "link": "https://github.com/lutzroeder/netron/issues/133"
  6838. },
  6839. {
  6840. "type": "pytorch",
  6841. "target": "tutorial_recurrent_neural_network.pth",
  6842. "source": "https://github.com/lutzroeder/netron/files/2587823/tutorial_models.zip[tutorial_recurrent_neural_network.pth]",
  6843. "format": "PyTorch v0.1.10",
  6844. "link": "https://github.com/lutzroeder/netron/issues/133"
  6845. },
  6846. {
  6847. "type": "pytorch",
  6848. "target": "tutorial_variational_autoencoder.pth.tar",
  6849. "source": "https://github.com/lutzroeder/netron/files/2587823/tutorial_models.zip[tutorial_variational_autoencoder.pth]",
  6850. "format": "PyTorch v0.1.10",
  6851. "link": "https://github.com/lutzroeder/netron/issues/133"
  6852. },
  6853. {
  6854. "type": "pytorch",
  6855. "target": "UNet.pt",
  6856. "source": "https://github.com/lutzroeder/netron/files/5611259/UNet.pt.zip[UNet.pt]",
  6857. "format": "TorchScript v1.6",
  6858. "link": "https://github.com/lutzroeder/netron/issues/637"
  6859. },
  6860. {
  6861. "type": "pytorch",
  6862. "target": "unknown_type_name.pt",
  6863. "source": "https://github.com/user-attachments/files/21330384/unknown_type_name.pt.zip[unknown_type_name.pt]",
  6864. "format": "TorchScript v1.6",
  6865. "error": "Unknown type name '__torch__.models.test_model.TestModel'.\nUnknown type name '__torch__.models.test_model.TestModel'.\nUnknown type name '__torch__.models.test_model.CustomLayer'.\nUnknown type name '__torch__.models.test_model.___torch_mangle_2.CustomLayer'.",
  6866. "link": "https://github.com/lutzroeder/netron/issues/842"
  6867. },
  6868. {
  6869. "type": "pytorch",
  6870. "target": "v1_lj_8000.jit",
  6871. "source": "https://github.com/user-attachments/files/16041474/v1_lj_8000.jit.zip[v1_lj_8000.jit]",
  6872. "format": "TorchScript v1.6",
  6873. "link": "https://github.com/lutzroeder/netron/issues/842"
  6874. },
  6875. {
  6876. "type": "pytorch",
  6877. "target": "v2_4lang_q.pt",
  6878. "source": "https://github.com/user-attachments/files/20969174/v2_4lang_q.pt.zip[v2_4lang_q.pt]",
  6879. "format": "PyTorch Package v1.9",
  6880. "link": "https://github.com/lutzroeder/netron/issues/928"
  6881. },
  6882. {
  6883. "type": "pytorch",
  6884. "target": "v3_1_ru.pt",
  6885. "source": "https://github.com/lutzroeder/netron/files/9075630/v3_1_ru.pt.zip[v3_1_ru.pt]",
  6886. "format": "PyTorch Package v1.9",
  6887. "link": "https://github.com/lutzroeder/netron/issues/928"
  6888. },
  6889. {
  6890. "type": "pytorch",
  6891. "target": "valid-bert-base-uncased.pt",
  6892. "source": "https://github.com/lutzroeder/netron/files/4977150/valid-bert-base-uncased.zip[valid-bert-base-uncased.pt]",
  6893. "format": "PyTorch v0.1.10",
  6894. "link": "https://github.com/lutzroeder/netron/issues/133"
  6895. },
  6896. {
  6897. "type": "pytorch",
  6898. "target": "video_classification.pt",
  6899. "source": "https://github.com/lutzroeder/netron/files/6341327/video_classification.pt.zip[video_classification.pt]",
  6900. "format": "TorchScript v1.6",
  6901. "link": "https://github.com/lutzroeder/netron/issues/728"
  6902. },
  6903. {
  6904. "type": "pytorch",
  6905. "target": "vicuna-7b.zip",
  6906. "source": "https://github.com/lutzroeder/netron/files/13935467/vicuna-7b.zip",
  6907. "format": "PyTorch v1.6",
  6908. "assert": "model.modules[0].nodes.length == 323",
  6909. "tags": "skip-tensor-value",
  6910. "link": "https://github.com/lutzroeder/netron/issues/720"
  6911. },
  6912. {
  6913. "type": "pytorch",
  6914. "target": "ViT-B-32.pt",
  6915. "source": "https://github.com/lutzroeder/netron/files/5790183/ViT-B-32.pt.zip[ViT-B-32.pt]",
  6916. "format": "TorchScript v1.6",
  6917. "link": "https://github.com/lutzroeder/netron/issues/546"
  6918. },
  6919. {
  6920. "type": "pytorch",
  6921. "target": "wav2mel.pt",
  6922. "source": "https://github.com/lutzroeder/netron/files/7534717/wav2mel.pt.zip[wav2mel.pt]",
  6923. "format": "TorchScript v1.6",
  6924. "link": "https://github.com/lutzroeder/netron/issues/842"
  6925. },
  6926. {
  6927. "type": "pytorch",
  6928. "target": "WAV2VEC2_BASE_quant-none-cpu.pt",
  6929. "source": "https://github.com/lutzroeder/netron/files/8820082/WAV2VEC2_BASE_quant-none-cpu.pt.zip[WAV2VEC2_BASE_quant-none-cpu.pt]",
  6930. "format": "TorchScript v1.6",
  6931. "link": "https://github.com/lutzroeder/netron/issues/918"
  6932. },
  6933. {
  6934. "type": "pytorch",
  6935. "target": "wav2vec2.ptl",
  6936. "source": "https://github.com/lutzroeder/netron/files/7447547/wav2vec2.ptl.zip[wav2vec2.ptl]",
  6937. "format": "TorchScript v1.6",
  6938. "link": "https://github.com/lutzroeder/netron/issues/827"
  6939. },
  6940. {
  6941. "type": "pytorch",
  6942. "target": "weigths_0000000.pth",
  6943. "source": "https://github.com/user-attachments/files/16401710/weigths_0000000.pth.zip[weigths_0000000.pth]",
  6944. "format": "PyTorch v1.6",
  6945. "link": "https://github.com/lutzroeder/netron/issues/543"
  6946. },
  6947. {
  6948. "type": "pytorch",
  6949. "target": "wrap_with_autocast.pt2",
  6950. "source": "https://github.com/user-attachments/files/20875084/wrap_with_autocast.pt2.zip[wrap_with_autocast.pt2]",
  6951. "format": "PyTorch Export v1.6",
  6952. "error": "Unsupported node target type 'torch.ops.higher_order.wrap_with_autocast'.",
  6953. "link": "https://github.com/lutzroeder/netron/issues/1211"
  6954. },
  6955. {
  6956. "type": "pytorch",
  6957. "target": "yolox_m.torchscript.pt",
  6958. "source": "https://github.com/lutzroeder/netron/files/15031984/yolox_m.torchscript.pt.zip[yolox_m.torchscript.pt]",
  6959. "format": "TorchScript v1.6",
  6960. "assert": "model.modules[0].nodes.length == 441",
  6961. "link": "https://github.com/lutzroeder/netron/issues/842"
  6962. },
  6963. {
  6964. "type": "pytorch",
  6965. "target": "yolo4_tiny.pt",
  6966. "source": "https://github.com/lutzroeder/netron/files/7995416/yolo4_tiny.pt.zip[yolo4_tiny.pt]",
  6967. "format": "TorchScript v1.5",
  6968. "link": "https://github.com/lutzroeder/netron/issues/842"
  6969. },
  6970. {
  6971. "type": "pytorch",
  6972. "target": "yolov5n-0.5.pt",
  6973. "source": "https://github.com/lutzroeder/netron/files/10253005/yolov5n-0.5.pt.zip[yolov5n-0.5.pt]",
  6974. "format": "PyTorch v1.6",
  6975. "link": "https://github.com/lutzroeder/netron/issues/720"
  6976. },
  6977. {
  6978. "type": "pytorch",
  6979. "target": "yolov5n.tensor.pth",
  6980. "source": "https://github.com/lutzroeder/netron/files/9543602/yolov5n.tensor.pth.zip[yolov5n.tensor.pth]",
  6981. "format": "PyTorch v1.6",
  6982. "link": "https://github.com/lutzroeder/netron/issues/720"
  6983. },
  6984. {
  6985. "type": "pytorch",
  6986. "target": "yolov5n.tensor.data.pkl",
  6987. "source": "https://github.com/lutzroeder/netron/files/13064842/yolov5n.tensor.data.pkl.zip[yolov5n.tensor.data.pkl]",
  6988. "format": "PyTorch Pickle",
  6989. "assert": "model.modules[0].nodes[0].inputs[0].name == 'value'",
  6990. "link": "https://github.com/lutzroeder/netron/issues/720"
  6991. },
  6992. {
  6993. "type": "pytorch",
  6994. "target": "yolov5n.torchscript",
  6995. "source": "https://github.com/lutzroeder/netron/files/8457287/yolov5n.torchscript.zip[yolov5n.torchscript]",
  6996. "format": "TorchScript v1.6",
  6997. "link": "https://github.com/lutzroeder/netron/issues/882"
  6998. },
  6999. {
  7000. "type": "rknn",
  7001. "target": "100_epoch.rknn",
  7002. "source": "https://github.com/lutzroeder/netron/files/12502077/100_epoch.rknn.zip[100_epoch.rknn]",
  7003. "format": "RKNN v1.5.2+b642f30c",
  7004. "link": "https://github.com/lutzroeder/netron/issues/639"
  7005. },
  7006. {
  7007. "type": "rknn",
  7008. "target": "autopilot.rknn",
  7009. "source": "https://github.com/lutzroeder/netron/files/5621074/autopilot.rknn.zip[autopilot.rknn]",
  7010. "format": "RKNN v1.3.0",
  7011. "link": "https://github.com/lutzroeder/netron/issues/639"
  7012. },
  7013. {
  7014. "type": "rknn",
  7015. "target": "blazeface.rknn",
  7016. "source": "https://github.com/lutzroeder/netron/files/8932892/blazeface.rknn.zip[blazeface.rknn]",
  7017. "format": "RKNN v1.7.0",
  7018. "link": "https://github.com/lutzroeder/netron/issues/639"
  7019. },
  7020. {
  7021. "type": "rknn",
  7022. "target": "ckpt_precompile_20.nb",
  7023. "source": "https://github.com/lutzroeder/netron/files/8932893/ckpt_precompile_20.nb.zip[ckpt_precompile_20.nb]",
  7024. "format": "RKNN OpenVX",
  7025. "link": "https://github.com/lutzroeder/netron/issues/639"
  7026. },
  7027. {
  7028. "type": "rknn",
  7029. "target": "cyptrknn.rknn",
  7030. "source": "https://github.com/lutzroeder/netron/files/14188437/cyptrknn.rknn.zip[cyptrknn.rknn]",
  7031. "error": "Invalid file content. File contains undocumented encrypted RKNN data.",
  7032. "link": "https://github.com/lutzroeder/netron/issues/639"
  7033. },
  7034. {
  7035. "type": "rknn",
  7036. "target": "det_monitor.nb",
  7037. "source": "https://github.com/lutzroeder/netron/files/8886768/det_monitor.nb.zip[det_monitor.nb]",
  7038. "format": "RKNN OpenVX",
  7039. "link": "https://github.com/lutzroeder/netron/issues/639"
  7040. },
  7041. {
  7042. "type": "rknn",
  7043. "target": "deepfusion.rknn",
  7044. "source": "https://github.com/lutzroeder/netron/files/5621075/deepfusion.rknn.zip[deepfusion.rknn]",
  7045. "format": "RKNN v1.2.1",
  7046. "link": "https://github.com/lutzroeder/netron/issues/639"
  7047. },
  7048. {
  7049. "type": "rknn",
  7050. "target": "kindnet.rknn",
  7051. "source": "https://github.com/lutzroeder/netron/files/5621076/kindnet.rknn.zip[kindnet.rknn]",
  7052. "format": "RKNN v1.3.2",
  7053. "link": "https://github.com/lutzroeder/netron/issues/639"
  7054. },
  7055. {
  7056. "type": "rknn",
  7057. "target": "mobilenet_v1.rknn",
  7058. "source": "https://github.com/lutzroeder/netron/files/8886811/mobilenet_v1.rknn.zip[mobilenet_v1.rknn]",
  7059. "format": "RKNN Lite v1.2.6",
  7060. "link": "https://github.com/lutzroeder/netron/issues/639"
  7061. },
  7062. {
  7063. "type": "rknn",
  7064. "target": "mobilenet_v1.0004.rknn",
  7065. "source": "https://github.com/lutzroeder/netron/files/12265884/mobilenet_v1.0004.rknn.zip[mobilenet_v1.0004.rknn]",
  7066. "format": "RKNN v1.4.6",
  7067. "link": "https://github.com/lutzroeder/netron/pull/1099"
  7068. },
  7069. {
  7070. "type": "rknn",
  7071. "target": "mobilenet_v1.1002.rknn",
  7072. "source": "https://github.com/lutzroeder/netron/files/12265887/mobilenet_v1.1002.rknn.zip[mobilenet_v1.1002.rknn]",
  7073. "format": "RKNN v1.2.2",
  7074. "link": "https://github.com/lutzroeder/netron/pull/1099"
  7075. },
  7076. {
  7077. "type": "rknn",
  7078. "target": "mobilenetv2.rknn",
  7079. "source": "https://github.com/lutzroeder/netron/files/8886972/mobilenetv2.rknn.zip[mobilenetv2.rknn]",
  7080. "format": "RKNN v1.2.0",
  7081. "link": "https://github.com/lutzroeder/netron/issues/639"
  7082. },
  7083. {
  7084. "type": "rknn",
  7085. "target": "pfld.json",
  7086. "source": "https://github.com/lutzroeder/netron/files/12265992/pfld.json.zip[pfld.json]",
  7087. "format": "RKNN v1.4.1b5",
  7088. "link": "https://github.com/lutzroeder/netron/issues/639"
  7089. },
  7090. {
  7091. "type": "rknn",
  7092. "target": "resize_area.rknn",
  7093. "source": "https://github.com/lutzroeder/netron/files/8886403/resize_area.rknn.zip[resize_area.rknn]",
  7094. "format": "RKNN v1.3.0",
  7095. "link": "https://github.com/lutzroeder/netron/issues/639"
  7096. },
  7097. {
  7098. "type": "rknn",
  7099. "target": "resnet_18.rknn",
  7100. "source": "https://github.com/lutzroeder/netron/files/5621078/resnet_18.rknn.zip[resnet_18.rknn]",
  7101. "format": "RKNN v1.3.2",
  7102. "link": "https://github.com/lutzroeder/netron/issues/639"
  7103. },
  7104. {
  7105. "type": "rknn",
  7106. "target": "yolov3.json",
  7107. "source": "https://github.com/lutzroeder/netron/files/12265994/yolov3.json.zip[yolov3.json]",
  7108. "format": "RKNN v1.3.2",
  7109. "link": "https://github.com/lutzroeder/netron/issues/639"
  7110. },
  7111. {
  7112. "type": "rknn",
  7113. "target": "yolov5s-640-640.0001.rknn",
  7114. "source": "https://github.com/lutzroeder/netron/files/12266093/yolov5s-640-640.0001.rknn.zip[yolov5s-640-640.0001.rknn]",
  7115. "format": "RKNN v1.1.0",
  7116. "link": "https://github.com/lutzroeder/netron/issues/639"
  7117. },
  7118. {
  7119. "type": "rknn",
  7120. "target": "yolov5s-640-640.0002.rknn",
  7121. "source": "https://github.com/lutzroeder/netron/files/12266039/yolov5s-640-640.0002.rknn.zip[yolov5s-640-640.0002.rknn]",
  7122. "format": "RKNN v1.2.6",
  7123. "link": "https://github.com/lutzroeder/netron/issues/639"
  7124. },
  7125. {
  7126. "type": "rknn",
  7127. "target": "yolov5s-640-640.0004.rknn",
  7128. "source": "https://github.com/lutzroeder/netron/files/12266038/yolov5s-640-640.0004.rknn.zip[yolov5s-640-640.0004.rknn]",
  7129. "format": "RKNN v1.5.0",
  7130. "link": "https://github.com/lutzroeder/netron/issues/639"
  7131. },
  7132. {
  7133. "type": "rknn",
  7134. "target": "yolov5s-640-640.1001.rknn",
  7135. "source": "https://github.com/lutzroeder/netron/files/12265889/yolov5s-640-640.1001.rknn.zip[yolov5s-640-640.1001.rknn]",
  7136. "format": "RKNN v1.2.5",
  7137. "link": "https://github.com/lutzroeder/netron/issues/639"
  7138. },
  7139. {
  7140. "type": "rknn",
  7141. "target": "yolov5s-640-640.1002.rknn",
  7142. "source": "https://github.com/lutzroeder/netron/files/12265888/yolov5s-640-640.1002.rknn.zip[yolov5s-640-640.1002.rknn]",
  7143. "format": "RKNN v1.3.1",
  7144. "link": "https://github.com/lutzroeder/netron/issues/639"
  7145. },
  7146. {
  7147. "type": "rknn",
  7148. "target": "yolov5s-640-640.1003.rknn",
  7149. "source": "https://github.com/lutzroeder/netron/files/12266037/yolov5s-640-640.1003.rknn.zip[yolov5s-640-640.1003.rknn]",
  7150. "format": "RKNN v1.4.0",
  7151. "link": "https://github.com/lutzroeder/netron/issues/639"
  7152. },
  7153. {
  7154. "type": "safetensors",
  7155. "target": "simple.safetensors",
  7156. "source": "https://github.com/lutzroeder/netron/files/14323612/simple.safetensors.zip[simple.safetensors]",
  7157. "format": "Safetensors",
  7158. "assert": "model.modules[0].nodes[0].inputs[0].name == 'uint64'",
  7159. "tags": "validation",
  7160. "link": "https://github.com/lutzroeder/netron/issues/1113"
  7161. },
  7162. {
  7163. "type": "safetensors",
  7164. "target": "model.safetensors.index.json,model.safetensors",
  7165. "source": "https://github.com/lutzroeder/netron/files/13689293/model.safetensors.index.json.zip[model.safetensors.index.json,model.safetensors]",
  7166. "format": "Safetensors",
  7167. "assert": "model.modules[0].nodes[0].inputs[0].name == 'float32'",
  7168. "link": "https://github.com/lutzroeder/netron/issues/1113"
  7169. },
  7170. {
  7171. "type": "sentencepiece",
  7172. "target": "bpe.model",
  7173. "source": "https://github.com/lutzroeder/netron/files/14189544/bpe.model.zip[bpe.model]",
  7174. "format": "SentencePiece",
  7175. "link": "https://github.com/lutzroeder/netron/issues/748"
  7176. },
  7177. {
  7178. "type": "sentencepiece",
  7179. "target": "spm_char.model",
  7180. "source": "https://github.com/lutzroeder/netron/files/6611189/covost2_en_asr_vocab_char.zip[spm_char.model]",
  7181. "format": "SentencePiece",
  7182. "link": "https://github.com/lutzroeder/netron/issues/748"
  7183. },
  7184. {
  7185. "type": "sentencepiece",
  7186. "target": "grammar_bpe.model",
  7187. "source": "https://github.com/user-attachments/files/16517075/grammar_bpe.model.zip[grammar_bpe.model]",
  7188. "format": "SentencePiece",
  7189. "link": "https://github.com/lutzroeder/netron/issues/748"
  7190. },
  7191. {
  7192. "type": "sentencepiece",
  7193. "target": "test_ja_model.model",
  7194. "source": "https://github.com/user-attachments/files/16517076/test_ja_model.model.zip[test_ja_model.model]",
  7195. "format": "SentencePiece",
  7196. "link": "https://github.com/lutzroeder/netron/issues/748"
  7197. },
  7198. {
  7199. "type": "sentencepiece",
  7200. "target": "tokenizer.model",
  7201. "source": "https://github.com/lutzroeder/netron/files/13935506/tokenizer.model.zip[tokenizer.model]",
  7202. "format": "SentencePiece",
  7203. "link": "https://github.com/lutzroeder/netron/issues/748"
  7204. },
  7205. {
  7206. "type": "sentencepiece",
  7207. "target": "universal_encoder_8k_spm.model.model",
  7208. "source": "https://github.com/lutzroeder/netron/files/7232403/universal_encoder_8k_spm.model.zip[universal_encoder_8k_spm.model]",
  7209. "format": "SentencePiece",
  7210. "link": "https://github.com/lutzroeder/netron/issues/748"
  7211. },
  7212. {
  7213. "type": "sklearn",
  7214. "target": "best_boston.pb",
  7215. "source": "https://github.com/lutzroeder/netron/files/3335715/xgboost_best_boston.zip[best_boston.pkl]",
  7216. "format": "scikit-learn v0.20.2",
  7217. "link": "https://github.com/lutzroeder/netron/issues/182"
  7218. },
  7219. {
  7220. "type": "sklearn",
  7221. "target": "binarizer.pkl",
  7222. "source": "https://github.com/lutzroeder/netron/files/2587902/binarizer.zip[binarizer.pkl]",
  7223. "format": "scikit-learn v0.19.1",
  7224. "link": "https://github.com/lutzroeder/netron/issues/182"
  7225. },
  7226. {
  7227. "type": "sklearn",
  7228. "target": "binarizer.joblib",
  7229. "source": "https://github.com/lutzroeder/netron/files/2587902/binarizer.zip[binarizer.joblib]",
  7230. "format": "scikit-learn v0.19.1",
  7231. "link": "https://github.com/lutzroeder/netron/issues/182"
  7232. },
  7233. {
  7234. "type": "sklearn",
  7235. "target": "celeb-classifier.nn4.small2.v1.pkl.zip",
  7236. "source": "https://github.com/lutzroeder/netron/files/6176216/celeb-classifier.nn4.small2.v1.pkl.zip",
  7237. "format": "scikit-learn",
  7238. "link": "https://github.com/lutzroeder/netron/issues/182"
  7239. },
  7240. {
  7241. "type": "sklearn",
  7242. "target": "column_pipeline.pkl",
  7243. "source": "https://github.com/lutzroeder/netron/files/4672437/column_pipeline.zip[column_pipeline.pkl]",
  7244. "format": "scikit-learn v0.22.1",
  7245. "link": "https://github.com/lutzroeder/netron/issues/498"
  7246. },
  7247. {
  7248. "type": "sklearn",
  7249. "target": "column_transformer_pipeline.pkl",
  7250. "source": "https://github.com/lutzroeder/netron/files/4672438/column_transformer_pipeline.zip[column_transformer_pipeline.pkl]",
  7251. "format": "scikit-learn v0.22.1",
  7252. "link": "https://github.com/lutzroeder/netron/issues/498"
  7253. },
  7254. {
  7255. "type": "sklearn",
  7256. "target": "decision_tree_model.pkl",
  7257. "source": "https://github.com/user-attachments/files/15449095/decision_tree_model.zip[decision_tree_model.pkl]",
  7258. "format": "scikit-learn v1.5.0",
  7259. "tags": "validation",
  7260. "link": "https://github.com/lutzroeder/netron/issues/182"
  7261. },
  7262. {
  7263. "type": "sklearn",
  7264. "target": "encoder.pkl",
  7265. "source": "https://github.com/lutzroeder/netron/files/8506805/encoder.pkl.zip[encoder.pkl]",
  7266. "format": "scikit-learn v0.22.2.post1",
  7267. "link": "https://github.com/lutzroeder/netron/issues/182"
  7268. },
  7269. {
  7270. "type": "sklearn",
  7271. "target": "knn_model.pkl",
  7272. "source": "https://github.com/user-attachments/files/15396883/knn_model.pkl.zip[knn_model.pkl]",
  7273. "format": "scikit-learn v1.2.2",
  7274. "link": "https://github.com/lutzroeder/netron/issues/182"
  7275. },
  7276. {
  7277. "type": "sklearn",
  7278. "target": "forest_iris_ExtraTreesClassifier.pkl",
  7279. "source": "https://github.com/lutzroeder/netron/files/2592356/forest_iris_models.zip[forest_iris_ExtraTreesClassifier.pkl]",
  7280. "format": "scikit-learn v0.19.2",
  7281. "link": "https://github.com/lutzroeder/netron/issues/182"
  7282. },
  7283. {
  7284. "type": "sklearn",
  7285. "target": "forest_iris_RandomForestClassifier.pkl",
  7286. "source": "https://github.com/lutzroeder/netron/files/2592356/forest_iris_models.zip[forest_iris_RandomForestClassifier.pkl]",
  7287. "format": "scikit-learn v0.19.2",
  7288. "link": "https://github.com/lutzroeder/netron/issues/182"
  7289. },
  7290. {
  7291. "type": "sklearn",
  7292. "target": "forest_iris_AdaBoostClassifier.pkl",
  7293. "source": "https://github.com/lutzroeder/netron/files/2592356/forest_iris_models.zip[forest_iris_AdaBoostClassifier.pkl]",
  7294. "format": "scikit-learn v0.19.2",
  7295. "link": "https://github.com/lutzroeder/netron/issues/182"
  7296. },
  7297. {
  7298. "type": "sklearn",
  7299. "target": "forest_iris_DecisionTreeClassifier.pkl",
  7300. "source": "https://github.com/lutzroeder/netron/files/2592356/forest_iris_models.zip[forest_iris_DecisionTreeClassifier.pkl]",
  7301. "format": "scikit-learn v0.19.2",
  7302. "link": "https://github.com/lutzroeder/netron/issues/182"
  7303. },
  7304. {
  7305. "type": "sklearn",
  7306. "target": "hmm.pkl",
  7307. "source": "https://github.com/lutzroeder/netron/files/9035366/hmm.pkl.zip[hmm.pkl]",
  7308. "format": "hmmlearn",
  7309. "link": "https://github.com/lutzroeder/netron/issues/182"
  7310. },
  7311. {
  7312. "type": "sklearn",
  7313. "target": "iris_svc.joblib.z",
  7314. "source": "https://github.com/lutzroeder/netron/files/5728549/iris_svc.joblib.z.zip[iris_svc.joblib.z]",
  7315. "format": "scikit-learn v0.24.0rc1",
  7316. "assert": "model.modules[0].nodes[0].inputs[6].value == 0.001",
  7317. "link": "https://github.com/lutzroeder/netron/issues/182"
  7318. },
  7319. {
  7320. "type": "sklearn",
  7321. "target": "numpy_array_alignment_bytes.pkl",
  7322. "source": "https://github.com/user-attachments/files/16054844/numpy_array_alignment_bytes.pkl.zip[numpy_array_alignment_bytes.pkl]",
  7323. "format": "scikit-learn",
  7324. "link": "https://github.com/lutzroeder/netron/issues/182"
  7325. },
  7326. {
  7327. "type": "sklearn",
  7328. "target": "phoenix_ml_classifier.pkl",
  7329. "source": "https://raw.githubusercontent.com/imeraj/Phoenix_Playground/master/1.4/phoenix_ml/lib/phoenix_ml/model/classifier.pkl",
  7330. "format": "scikit-learn v0.19.1",
  7331. "link": "https://github.com/imeraj/Phoenix_Playground/tree/master/1.4/phoenix_ml/lib/phoenix_ml/model"
  7332. },
  7333. {
  7334. "type": "sklearn",
  7335. "target": "pima.xgboost.joblib.pkl",
  7336. "source": "https://github.com/lutzroeder/netron/files/2656501/pima.xgboost.joblib.pkl.zip[pima.xgboost.joblib.pkl]",
  7337. "format": "scikit-learn",
  7338. "link": "https://github.com/lutzroeder/netron/issues/182"
  7339. },
  7340. {
  7341. "type": "sklearn",
  7342. "target": "svc.joblib.pkl",
  7343. "source": "https://github.com/lutzroeder/netron/files/2592359/svc.zip[svc.joblib.pkl]",
  7344. "format": "scikit-learn v0.19.1",
  7345. "link": "https://github.com/lutzroeder/netron/issues/182"
  7346. },
  7347. {
  7348. "type": "sklearn",
  7349. "target": "svc.pkl",
  7350. "source": "https://github.com/lutzroeder/netron/files/2592359/svc.zip[svc.pkl]",
  7351. "format": "scikit-learn v0.19.1",
  7352. "link": "https://github.com/lutzroeder/netron/issues/182"
  7353. },
  7354. {
  7355. "type": "sklearn",
  7356. "target": "svm.pkl",
  7357. "source": "https://raw.githubusercontent.com/dfridovi/imagelib/master/svm.pkl",
  7358. "format": "scikit-learn",
  7359. "link": "https://github.com/dfridovi/imagelib/blob/master/svm.pkl"
  7360. },
  7361. {
  7362. "type": "sklearn",
  7363. "target": "tree.pkl",
  7364. "source": "https://github.com/wjqkkky/TTS-front-end/raw/56e09ef79bb6679e51a7c8ff3d302ccd917c0992/ChineseRhythmPredictor/tree.pkl",
  7365. "format": "scikit-learn v0.21.3",
  7366. "link": "https://github.com/wjqkkky/TTS-front-end"
  7367. },
  7368. {
  7369. "type": "sklearn",
  7370. "target": "wiki-aa-mlp.pkl",
  7371. "source": "https://github.com/lutzroeder/netron/files/2674319/wiki-aa-mlp.pkl.zip[wiki-aa-mlp.pkl]",
  7372. "format": "scikit-learn v0.19.0",
  7373. "link": "https://github.com/lutzroeder/netron/issues/182"
  7374. },
  7375. {
  7376. "type": "tengine",
  7377. "target": "0466.tmfile",
  7378. "source": "https://github.com/lutzroeder/netron/files/14076924/0466.tmfile.zip[0466.tmfile]",
  7379. "format": "Tengine v2.0",
  7380. "link": "https://github.com/lutzroeder/netron/issues/466"
  7381. },
  7382. {
  7383. "type": "tengine",
  7384. "target": "detect_tflite.tmfile",
  7385. "source": "https://raw.githubusercontent.com/pierricklee/tmfile-sample/master/detect_tflite.tmfile",
  7386. "format": "Tengine v2.0",
  7387. "link": "https://github.com/pierricklee/tmfile-sample"
  7388. },
  7389. {
  7390. "type": "tengine",
  7391. "target": "lighten_cnn.tmfile",
  7392. "source": "https://raw.githubusercontent.com/pierricklee/tmfile-sample/master/lighten_cnn.tmfile",
  7393. "format": "Tengine v2.0",
  7394. "link": "https://github.com/pierricklee/tmfile-sample"
  7395. },
  7396. {
  7397. "type": "tengine",
  7398. "target": "mobilenet.tmfile",
  7399. "source": "https://raw.githubusercontent.com/pierricklee/tmfile-sample/master/mobilenet.tmfile",
  7400. "format": "Tengine v2.0",
  7401. "link": "https://github.com/pierricklee/tmfile-sample"
  7402. },
  7403. {
  7404. "type": "tengine",
  7405. "target": "mobilenet_quant_tflite.tmfile",
  7406. "source": "https://raw.githubusercontent.com/pierricklee/tmfile-sample/master/mobilenet_quant_tflite.tmfile",
  7407. "format": "Tengine v2.0",
  7408. "link": "https://github.com/pierricklee/tmfile-sample"
  7409. },
  7410. {
  7411. "type": "tengine",
  7412. "target": "mobolenet_ssd_v1_quant_tflite.tmfile",
  7413. "source": "https://raw.githubusercontent.com/pierricklee/tmfile-sample/master/mobolenet_ssd_v1_quant_tflite.tmfile",
  7414. "format": "Tengine v2.0",
  7415. "link": "https://github.com/pierricklee/tmfile-sample"
  7416. },
  7417. {
  7418. "type": "tengine",
  7419. "target": "mobilenet_v1_tf.tmfile",
  7420. "source": "https://raw.githubusercontent.com/pierricklee/tmfile-sample/master/mobilenet_v1_tf.tmfile",
  7421. "format": "Tengine v2.0",
  7422. "link": "https://github.com/pierricklee/tmfile-sample"
  7423. },
  7424. {
  7425. "type": "tengine",
  7426. "target": "mobilenet_v2.tmfile",
  7427. "source": "https://raw.githubusercontent.com/pierricklee/tmfile-sample/master/mobilenet_v2.tmfile",
  7428. "format": "Tengine v2.0",
  7429. "link": "https://github.com/pierricklee/tmfile-sample"
  7430. },
  7431. {
  7432. "type": "tengine",
  7433. "target": "mobilenet_v2_tf.tmfile",
  7434. "source": "https://raw.githubusercontent.com/pierricklee/tmfile-sample/master/mobilenet_v2_tf.tmfile",
  7435. "format": "Tengine v2.0",
  7436. "link": "https://github.com/pierricklee/tmfile-sample"
  7437. },
  7438. {
  7439. "type": "tengine",
  7440. "target": "nasnet_tf.tmfile",
  7441. "source": "https://raw.githubusercontent.com/pierricklee/tmfile-sample/master/nasnet_tf.tmfile",
  7442. "format": "Tengine v2.0",
  7443. "link": "https://github.com/pierricklee/tmfile-sample"
  7444. },
  7445. {
  7446. "type": "tengine",
  7447. "target": "retinaface_benchmark.tmfile",
  7448. "source": "https://raw.githubusercontent.com/OAID/Tengine/master/models/retinaface_benchmark.tmfile",
  7449. "format": "Tengine v2.0",
  7450. "link": "https://github.com/OAID/Tengine"
  7451. },
  7452. {
  7453. "type": "tengine",
  7454. "target": "squeezenet.tmfile",
  7455. "source": "https://raw.githubusercontent.com/pierricklee/tmfile-sample/master/squeezenet.tmfile",
  7456. "format": "Tengine v2.0",
  7457. "link": "https://github.com/pierricklee/tmfile-sample"
  7458. },
  7459. {
  7460. "type": "tengine",
  7461. "target": "squeezenet_on.tmfile",
  7462. "source": "https://raw.githubusercontent.com/pierricklee/tmfile-sample/master/squeezenet_on.tmfile",
  7463. "format": "Tengine v2.0",
  7464. "link": "https://github.com/pierricklee/tmfile-sample"
  7465. },
  7466. {
  7467. "type": "tengine",
  7468. "target": "test_multi_input_output.tmfile",
  7469. "source": "https://github.com/lutzroeder/netron/files/5248932/test_multi_input_output.zip[test_multi_input_output.tmfile]",
  7470. "format": "Tengine v2.0",
  7471. "link": "https://github.com/lutzroeder/netron/issues/1477"
  7472. },
  7473. {
  7474. "type": "tensorrt",
  7475. "target": "retinaface_1.trt",
  7476. "source": "https://github.com/lutzroeder/netron/files/12022977/retinaface_1.trt.zip[retinaface_1.trt]",
  7477. "format": "TensorRT Engine",
  7478. "error": "Invalid file content. File contains undocumented TensorRT engine data.",
  7479. "link": "https://github.com/lutzroeder/netron/issues/725"
  7480. },
  7481. {
  7482. "type": "tensorrt",
  7483. "target": "yolov8n.engine",
  7484. "source": "https://github.com/user-attachments/files/16322456/yolov8n.engine.zip[yolov8n.engine]",
  7485. "format": "TensorRT Engine",
  7486. "error": "Invalid file content. File contains undocumented TensorRT engine data.",
  7487. "link": "https://github.com/lutzroeder/netron/issues/725"
  7488. },
  7489. {
  7490. "type": "tf",
  7491. "target": "0110.pb",
  7492. "source": "https://github.com/lutzroeder/netron/files/14074382/0110.pb.zip[0110.pb]",
  7493. "format": "TensorFlow Graph",
  7494. "link": "https://github.com/lutzroeder/netron/issues/110"
  7495. },
  7496. {
  7497. "type": "tf",
  7498. "target": "0224.pbtxt",
  7499. "source": "https://github.com/lutzroeder/netron/files/14074395/0224.pbtxt.zip[0224.pbtxt]",
  7500. "format": "TensorFlow Graph",
  7501. "link": "https://github.com/lutzroeder/netron/issues/224"
  7502. },
  7503. {
  7504. "type": "tf",
  7505. "target": "0291.pbtxt",
  7506. "source": "https://github.com/lutzroeder/netron/files/14074350/0291.pbtxt.zip[0291.pbtxt]",
  7507. "format": "TensorFlow Graph",
  7508. "link": "https://github.com/lutzroeder/netron/issues/291"
  7509. },
  7510. {
  7511. "type": "tf",
  7512. "target": "0320.pb",
  7513. "source": "https://github.com/lutzroeder/netron/files/14074339/0320.zip[0320.pb]",
  7514. "format": "TensorFlow Graph",
  7515. "link": "https://github.com/lutzroeder/netron/issues/320"
  7516. },
  7517. {
  7518. "type": "tf",
  7519. "target": "0320.pbtxt",
  7520. "source": "https://github.com/lutzroeder/netron/files/14074339/0320.zip[0320.pbtxt]",
  7521. "format": "TensorFlow Graph",
  7522. "link": "https://github.com/lutzroeder/netron/issues/320"
  7523. },
  7524. {
  7525. "type": "tf",
  7526. "target": "0323.pbtxt",
  7527. "source": "https://github.com/lutzroeder/netron/files/14074343/0323.pbtxt.zip[0323.pbtxt]",
  7528. "tags": "skip-render",
  7529. "format": "TensorFlow Graph",
  7530. "link": "https://github.com/lutzroeder/netron/issues/323"
  7531. },
  7532. {
  7533. "type": "tf",
  7534. "target": "0342.zip",
  7535. "source": "https://github.com/lutzroeder/netron/files/14074331/0342.zip",
  7536. "format": "TensorFlow Saved Model v1",
  7537. "link": "https://github.com/lutzroeder/netron/issues/342"
  7538. },
  7539. {
  7540. "type": "tf",
  7541. "target": "0405.zip",
  7542. "source": "https://github.com/lutzroeder/netron/files/14074348/0405.zip",
  7543. "format": "TensorFlow Tensor Bundle v2",
  7544. "link": "https://github.com/lutzroeder/netron/issues/405"
  7545. },
  7546. {
  7547. "type": "tf",
  7548. "target": "0847.pbtxt",
  7549. "source": "https://github.com/lutzroeder/netron/files/14074345/0847.pbtxt.zip[0847.pbtxt]",
  7550. "format": "TensorFlow Graph",
  7551. "link": "https://github.com/lutzroeder/netron/issues/847"
  7552. },
  7553. {
  7554. "type": "tf",
  7555. "target": "bfloat16.pbtxt",
  7556. "source": "https://github.com/lutzroeder/netron/files/9540969/bfloat16.pbtxt.zip[bfloat16.pbtxt]",
  7557. "format": "TensorFlow Graph",
  7558. "link": "https://github.com/lutzroeder/netron/issues/187"
  7559. },
  7560. {
  7561. "type": "tf",
  7562. "target": "char-rnn-tensorflow.pb",
  7563. "source": "https://github.com/lutzroeder/netron/files/2592462/char-rnn-tensorflow.pb.zip[char-rnn-tensorflow.pb]",
  7564. "format": "TensorFlow Graph",
  7565. "tags": "skip-render",
  7566. "link": "https://github.com/lutzroeder/netron/issues/187"
  7567. },
  7568. {
  7569. "type": "tf",
  7570. "target": "chessbot.pb",
  7571. "source": "https://raw.githubusercontent.com/srom/chessbot/master/model/chessbot.pb",
  7572. "format": "TensorFlow Graph",
  7573. "link": "https://github.com/srom/chessbot"
  7574. },
  7575. {
  7576. "type": "tf",
  7577. "target": "chessbot_estimator.pb",
  7578. "source": "https://raw.githubusercontent.com/srom/chessbot/master/model/estimator.pb",
  7579. "format": "TensorFlow Graph",
  7580. "link": "https://github.com/srom/chessbot"
  7581. },
  7582. {
  7583. "type": "tf",
  7584. "target": "chessbot_classifier.pb",
  7585. "source": "https://raw.githubusercontent.com/srom/chessbot/master/model/classifier.pb",
  7586. "format": "TensorFlow Graph",
  7587. "link": "https://github.com/srom/chessbot"
  7588. },
  7589. {
  7590. "type": "tf",
  7591. "target": "classify_image_graph_def.pb",
  7592. "source": "https://raw.githubusercontent.com/taey16/tf/master/imagenet/classify_image_graph_def.pb",
  7593. "format": "TensorFlow Graph",
  7594. "link": "https://github.com/taey16/tf"
  7595. },
  7596. {
  7597. "type": "tf",
  7598. "target": "complex64.pb",
  7599. "source": "https://github.com/lutzroeder/netron/files/9540970/complex.zip[complex64.pb]",
  7600. "format": "TensorFlow Graph",
  7601. "link": "https://github.com/lutzroeder/netron/issues/187"
  7602. },
  7603. {
  7604. "type": "tf",
  7605. "target": "complex128.pb",
  7606. "source": "https://github.com/lutzroeder/netron/files/9540970/complex.zip[complex128.pb]",
  7607. "format": "TensorFlow Graph",
  7608. "link": "https://github.com/lutzroeder/netron/issues/187"
  7609. },
  7610. {
  7611. "type": "tf",
  7612. "target": "conv-layers.pb.zip",
  7613. "source": "https://github.com/lutzroeder/netron/files/2592468/conv-layers.pb.zip",
  7614. "format": "TensorFlow Graph",
  7615. "link": "https://github.com/lutzroeder/netron/issues/187"
  7616. },
  7617. {
  7618. "type": "tf",
  7619. "target": "densenet.pb",
  7620. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/model_zoo/upload_20180427/densenet_2018_04_27.tgz[densenet/densenet.pb]",
  7621. "format": "TensorFlow Graph",
  7622. "link": "https://github.com/tensorflow/tensorflow/blob/master/tensorflow/lite/g3doc/guide/hosted_models.md"
  7623. },
  7624. {
  7625. "type": "tf",
  7626. "target": "drawmodel_attn.ckpt",
  7627. "source": "https://github.com/lutzroeder/netron/files/8647412/drawmodel_attn.ckpt.zip[drawmodel_attn.ckpt]",
  7628. "format": "TensorFlow Tensor Bundle v1",
  7629. "link": "https://github.com/lutzroeder/netron/issues/405"
  7630. },
  7631. {
  7632. "type": "tf",
  7633. "target": "events.out.tfevents.1606692323.b5c8f88cc7ee.58.2",
  7634. "source": "https://github.com/lutzroeder/netron/files/5613448/events.out.tfevents.1606692323.b5c8f88cc7ee.58.2.zip[events.out.tfevents.1606692323.b5c8f88cc7ee.58.2]",
  7635. "format": "TensorFlow Event File v2",
  7636. "producer": "PyTorch",
  7637. "assert": "model.modules[0].nodes[0].type.name == 'aten::_convolution'",
  7638. "link": "https://github.com/lutzroeder/netron/issues/638"
  7639. },
  7640. {
  7641. "type": "tf",
  7642. "target": "events.out.tfevents.1606696207.eba7c8084653.55.0",
  7643. "source": "https://github.com/lutzroeder/netron/files/5613451/events.out.tfevents.1606696207.eba7c8084653.55.0.zip[events.out.tfevents.1606696207.eba7c8084653.55.0]",
  7644. "format": "TensorFlow Event File v2",
  7645. "producer": "PyTorch",
  7646. "link": "https://github.com/lutzroeder/netron/issues/638"
  7647. },
  7648. {
  7649. "type": "tf",
  7650. "target": "events.out.tfevents.1606704213.784cbcc2d49a.55.162.v2",
  7651. "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]",
  7652. "format": "TensorFlow Event File v2",
  7653. "link": "https://github.com/lutzroeder/netron/issues/638"
  7654. },
  7655. {
  7656. "type": "tf",
  7657. "target": "events.out.tfevents.1617485839.39aaee5846c1.58.0",
  7658. "source": "https://github.com/lutzroeder/netron/files/6261502/events.out.tfevents.1617485839.39aaee5846c1.58.0.zip[events.out.tfevents.1617485839.39aaee5846c1.58.0]",
  7659. "format": "TensorFlow Event File v2",
  7660. "producer": "PyTorch",
  7661. "link": "https://github.com/lutzroeder/netron/issues/638"
  7662. },
  7663. {
  7664. "type": "tf",
  7665. "target": "exDeepFM-criteo.meta",
  7666. "source": "https://raw.githubusercontent.com/Leavingseason/xDeepFM/master/exdeepfm/checkpoint/epoch_0.meta",
  7667. "format": "TensorFlow MetaGraph",
  7668. "tags": "skip-render",
  7669. "link": "https://github.com/Leavingseason/xDeepFM"
  7670. },
  7671. {
  7672. "type": "tf",
  7673. "target": "fingerprint.pb",
  7674. "source": "https://github.com/lutzroeder/netron/files/10475238/fingerprint.pb.zip[fingerprint.pb]",
  7675. "format": "TensorFlow Fingerprint",
  7676. "link": "https://github.com/lutzroeder/netron/issues/1162"
  7677. },
  7678. {
  7679. "type": "tf",
  7680. "target": "float16.txt",
  7681. "source": "https://github.com/lutzroeder/netron/files/8547644/float16.txt.zip[float16.txt]",
  7682. "format": "TensorFlow Graph",
  7683. "link": "https://github.com/lutzroeder/netron/issues/187"
  7684. },
  7685. {
  7686. "type": "tf",
  7687. "target": "graph_missing_function.pbtxt",
  7688. "source": "https://github.com/lutzroeder/netron/files/7464813/graph_missing_function.pbtxt.zip[graph_missing_function.pbtxt]",
  7689. "format": "TensorFlow Graph",
  7690. "link": "https://github.com/lutzroeder/netron/issues/838"
  7691. },
  7692. {
  7693. "type": "tf",
  7694. "target": "graphdef_saved_model.pb",
  7695. "source": "https://github.com/lutzroeder/netron/files/2528688/saved_model.zip[saved_model.pb]",
  7696. "format": "TensorFlow Graph",
  7697. "link": "https://github.com/lutzroeder/netron/issues/171"
  7698. },
  7699. {
  7700. "type": "tf",
  7701. "target": "gpt-2-124M.ckpt.meta",
  7702. "source": "https://github.com/lutzroeder/netron/files/7775216/gpt-2-124M.ckpt.meta.zip[gpt-2-124M.ckpt.meta]",
  7703. "format": "TensorFlow MetaGraph",
  7704. "link": "https://github.com/lutzroeder/netron/issues/187"
  7705. },
  7706. {
  7707. "type": "tf",
  7708. "target": "half_plus_two_saved_model.pb",
  7709. "source": "https://raw.githubusercontent.com/tensorflow/tensorflow/master/tensorflow/cc/saved_model/testdata/half_plus_two/00000123/saved_model.pb",
  7710. "format": "TensorFlow Saved Model v1",
  7711. "link": "https://github.com/tensorflow/tensorflow/tree/master/tensorflow/cc/saved_model/testdata"
  7712. },
  7713. {
  7714. "type": "tf",
  7715. "target": "half_plus_two_main_op_saved_model.pb",
  7716. "source": "https://raw.githubusercontent.com/tensorflow/tensorflow/master/tensorflow/cc/saved_model/testdata/half_plus_two_main_op/00000123/saved_model.pb",
  7717. "format": "TensorFlow Saved Model v1",
  7718. "link": "https://github.com/tensorflow/tensorflow/tree/master/tensorflow/cc/saved_model/testdata"
  7719. },
  7720. {
  7721. "type": "tf",
  7722. "target": "half_plus_two_pbtxt_saved_model.pbtxt",
  7723. "source": "https://raw.githubusercontent.com/tensorflow/tensorflow/master/tensorflow/cc/saved_model/testdata/half_plus_two_pbtxt/00000123/saved_model.pbtxt",
  7724. "format": "TensorFlow Saved Model v1",
  7725. "link": "https://github.com/tensorflow/tensorflow/tree/master/tensorflow/cc/saved_model/testdata"
  7726. },
  7727. {
  7728. "type": "tf",
  7729. "target": "inception_v2_2016_08_28_frozen.pb",
  7730. "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]",
  7731. "format": "TensorFlow Graph",
  7732. "link": "https://github.com/onnx/tensorflow-onnx/blob/master/tests/run_pretrained_models.yaml"
  7733. },
  7734. {
  7735. "type": "tf",
  7736. "target": "inception5h.pb",
  7737. "source": "https://storage.googleapis.com/download.tensorflow.org/models/inception5h.zip[tensorflow_inception_graph.pb]"
  7738. },
  7739. {
  7740. "type": "tf",
  7741. "target": "invalid_graph.pbtxt",
  7742. "source": "https://github.com/lutzroeder/netron/files/6859459/invalid_graph.pbtxt.zip[invalid_graph.pbtxt]",
  7743. "error": "File text format is not tensorflow.GraphDef (Unexpected end of input at 8:1).",
  7744. "link": "https://github.com/lutzroeder/netron/issues/774"
  7745. },
  7746. {
  7747. "type": "tf",
  7748. "target": "mnist_model.pbtxt",
  7749. "source": "https://raw.githubusercontent.com/ShauralP/MobileML/master/SimpleMNIST/mnist_model.pbtxt",
  7750. "format": "TensorFlow Graph",
  7751. "link": "https://github.com/ShauralP/MobileML"
  7752. },
  7753. {
  7754. "type": "tf",
  7755. "target": "mobilenet_v1_1.0_224_frozen.pb",
  7756. "source": "http://download.tensorflow.org/models/mobilenet_v1_2018_08_02/mobilenet_v1_1.0_224.tgz[./mobilenet_v1_1.0_224_frozen.pb]",
  7757. "format": "TensorFlow Graph"
  7758. },
  7759. {
  7760. "type": "tf",
  7761. "target": "mobilenet_v1_1.0_224_eval.pbtxt",
  7762. "source": "http://download.tensorflow.org/models/mobilenet_v1_2018_08_02/mobilenet_v1_1.0_224.tgz[./mobilenet_v1_1.0_224_eval.pbtxt]",
  7763. "format": "TensorFlow Graph"
  7764. },
  7765. {
  7766. "type": "tf",
  7767. "target": "mobilenet_v1_1.0_224_quant_eval.pbtxt",
  7768. "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]",
  7769. "format": "TensorFlow Graph",
  7770. "link": "https://github.com/tensorflow/models/blob/master/research/slim/nets/mobilenet_v1.md"
  7771. },
  7772. {
  7773. "type": "tf",
  7774. "target": "mobilenet_v1_1.0_224_quant_frozen.pb",
  7775. "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]",
  7776. "format": "TensorFlow Graph",
  7777. "link": "https://github.com/tensorflow/models/blob/master/research/slim/nets/mobilenet_v1.md"
  7778. },
  7779. {
  7780. "type": "tf",
  7781. "target": "mobilenet_v1_1.0_224_quant.ckpt.meta",
  7782. "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]",
  7783. "format": "TensorFlow MetaGraph",
  7784. "tags": "skip-render",
  7785. "link": "https://github.com/tensorflow/models/blob/master/research/slim/nets/mobilenet_v1.md"
  7786. },
  7787. {
  7788. "type": "tf",
  7789. "target": "mnasnet_0.5_224.pb",
  7790. "source": "http://download.tensorflow.org/models/tflite/mnasnet_0.5_224_09_07_2018.tgz[mnasnet_0.5_224/mnasnet_0.5_224.pb]",
  7791. "format": "TensorFlow Graph",
  7792. "link": "https://www.tensorflow.org/lite/models"
  7793. },
  7794. {
  7795. "type": "tf",
  7796. "target": "mnasnet_1.3_224.pb",
  7797. "source": "http://download.tensorflow.org/models/tflite/mnasnet_1.3_224_09_07_2018.tgz[mnasnet_1.3_224/mnasnet_1.3_224.pb]",
  7798. "format": "TensorFlow Graph",
  7799. "link": "https://www.tensorflow.org/lite/models"
  7800. },
  7801. {
  7802. "type": "tf",
  7803. "target": "myTag.pb",
  7804. "source": "https://github.com/lutzroeder/netron/files/10167049/myTag.pb.zip[myTag.pb]",
  7805. "format": "TensorFlow Saved Model v1",
  7806. "link": "https://github.com/lutzroeder/netron/issues/1015"
  7807. },
  7808. {
  7809. "type": "tf",
  7810. "target": "nasnet_mobile.pb",
  7811. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/model_zoo/upload_20180427/nasnet_mobile_2018_04_27.tgz[./nasnet_mobile.pb]",
  7812. "format": "TensorFlow Graph",
  7813. "link": "https://www.tensorflow.org/lite/models"
  7814. },
  7815. {
  7816. "type": "tf",
  7817. "target": "myModel.txt",
  7818. "source": "https://github.com/lutzroeder/netron/files/12267629/myModel.txt.zip[myModel.txt]",
  7819. "format": "TensorFlow Graph",
  7820. "link": "https://github.com/lutzroeder/netron/issues/895"
  7821. },
  7822. {
  7823. "type": "tf",
  7824. "target": "output_graph.pbmm",
  7825. "source": "https://github.com/lutzroeder/netron/files/8645971/output_graph.pbmm.zip[output_graph.pbmm]",
  7826. "format": "TensorFlow GraphDef Memmapped",
  7827. "link": "https://github.com/lutzroeder/netron/issues/836"
  7828. },
  7829. {
  7830. "type": "tf",
  7831. "target": "pose_estimation_for_mobile.pb",
  7832. "source": "https://raw.githubusercontent.com/edvardHua/PoseEstimationForMobile/master/release/cpm_model/model.pb",
  7833. "format": "TensorFlow Graph",
  7834. "link": "https://github.com/edvardHua/PoseEstimationForMobile"
  7835. },
  7836. {
  7837. "type": "tf",
  7838. "target": "readable_graph.meta",
  7839. "source": "https://github.com/lutzroeder/netron/files/2592463/readable_graph.meta.zip[readable_graph.meta]",
  7840. "format": "TensorFlow MetaGraph",
  7841. "link": "https://github.com/lutzroeder/netron/issues/187"
  7842. },
  7843. {
  7844. "type": "tf",
  7845. "target": "resnet_v2_fp16_savedmodel_NHWC_saved_model.pb",
  7846. "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]",
  7847. "format": "TensorFlow Saved Model v1",
  7848. "tags": "skip-render",
  7849. "link": "https://github.com/onnx/tensorflow-onnx/blob/master/tests/run_pretrained_models.yaml"
  7850. },
  7851. {
  7852. "type": "tf",
  7853. "target": "resnet18_model_baseline.pbtxt",
  7854. "source": "https://github.com/lutzroeder/netron/files/2913372/resnet18_model_baseline.pbtxt.zip[resnet18_model_baseline.pbtxt]",
  7855. "format": "TensorFlow Graph",
  7856. "tags": "skip-render",
  7857. "link": "https://github.com/lutzroeder/netron/issues/235"
  7858. },
  7859. {
  7860. "type": "tf",
  7861. "target": "saved_model_xxx.pb",
  7862. "source": "https://github.com/lutzroeder/netron/files/6965264/saved_model_xxx.pb.zip[saved_model_xxx.pb]",
  7863. "format": "TensorFlow Saved Model v1",
  7864. "link": "https://github.com/lutzroeder/netron/issues/1015"
  7865. },
  7866. {
  7867. "type": "tf",
  7868. "target": "speech_commands_v0.pb",
  7869. "source": "http://storage.googleapis.com/download.tensorflow.org/models/speech_commands_v0.01.zip[conv_actions_frozen.pb]",
  7870. "format": "TensorFlow Graph"
  7871. },
  7872. {
  7873. "type": "tf",
  7874. "target": "squeezenet.pb",
  7875. "source": "https://github.com/user-attachments/files/19726108/squeezenet.pb.zip[squeezenet.pb]",
  7876. "tags": "validation",
  7877. "format": "TensorFlow Graph",
  7878. "link": "https://github.com/lutzroeder/netron/issues/187"
  7879. },
  7880. {
  7881. "type": "tf",
  7882. "target": "ssd_mobilenet_v1_android_export.pb",
  7883. "source": "https://storage.googleapis.com/download.tensorflow.org/models/object_detection/ssd_mobilenet_v1_android_export.zip[ssd_mobilenet_v1_android_export.pb]",
  7884. "format": "TensorFlow Graph",
  7885. "tags": "skip-render",
  7886. "link": "https://www.tensorflow.org/lite/models"
  7887. },
  7888. {
  7889. "type": "tf",
  7890. "target": "ssd_mobilenet_v1_coco_11_06_2017_graph.pbtxt",
  7891. "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]",
  7892. "format": "TensorFlow Graph",
  7893. "tags": "skip-render",
  7894. "link": "https://github.com/GoogleCloudPlatform/tensorflow-object-detection-example"
  7895. },
  7896. {
  7897. "type": "tf",
  7898. "target": "ssd_mobilenet_v1_coco_11_06_2017_frozen_inference.pb",
  7899. "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]",
  7900. "format": "TensorFlow Graph",
  7901. "link": "https://github.com/GoogleCloudPlatform/tensorflow-object-detection-example"
  7902. },
  7903. {
  7904. "type": "tf",
  7905. "target": "ssd_mobilenet_v1_coco_11_06_2017.ckpt.meta",
  7906. "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]",
  7907. "format": "TensorFlow MetaGraph",
  7908. "tags": "skip-render",
  7909. "link": "https://github.com/GoogleCloudPlatform/tensorflow-object-detection-example"
  7910. },
  7911. {
  7912. "type": "tf",
  7913. "target": "tensorflow_issue_9169_saved_model.pbtxt",
  7914. "source": "https://github.com/tensorflow/tensorflow/files/917065/sample.zip[sample/load/saved_model.pbtxt]",
  7915. "format": "TensorFlow Saved Model v1",
  7916. "link": "https://github.com/tensorflow/tensorflow/issues/9169"
  7917. },
  7918. {
  7919. "type": "tfjs",
  7920. "target": "air-time-model/air-time-model.json",
  7921. "source": "https://github.com/lutzroeder/netron/files/3170424/air-time-model.json.zip[air-time-model.json]",
  7922. "format": "TensorFlow.js layers-model",
  7923. "producer": "TensorFlow.js tfjs-layers v1.0.4",
  7924. "link": "https://github.com/lutzroeder/netron/issues/270"
  7925. },
  7926. {
  7927. "type": "tfjs",
  7928. "target": "age_gender_model/age_gender_model-weights_manifest.json,age_gender_model/age_gender_model-shard1",
  7929. "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",
  7930. "format": "TensorFlow.js Weights",
  7931. "tags": "quantization"
  7932. },
  7933. {
  7934. "type": "tfjs",
  7935. "target": "deeplab_ade20k_1_quantized_2_1.zip",
  7936. "source": "https://github.com/lutzroeder/netron/files/6766475/deeplab_ade20k_1_quantized_2_1.zip",
  7937. "format": "TensorFlow.js graph-model",
  7938. "link": "https://github.com/lutzroeder/netron/issues/294"
  7939. },
  7940. {
  7941. "type": "tfjs",
  7942. "target": "iamgeai2/metadata.json,iamgeai2/model.json,iamgeai2/weights.bin",
  7943. "source": "https://github.com/lutzroeder/netron/files/7800435/iamgeai2.zip[metadata.json,model.json,weights.bin] ",
  7944. "format": "TensorFlow.js Keras vtfjs-layers 1.3.1",
  7945. "link": "https://github.com/lutzroeder/netron/issues/294"
  7946. },
  7947. {
  7948. "type": "tfjs",
  7949. "target": "mnist_transfer_cnn_v1.zip",
  7950. "source": "https://github.com/lutzroeder/netron/files/3361048/mnist_transfer_cnn_v1.zip",
  7951. "format": "TensorFlow.js Keras v2.1.4",
  7952. "link": "https://github.com/tensorflow/tfjs-examples"
  7953. },
  7954. {
  7955. "type": "tfjs",
  7956. "target": "mobilenet_v1_0.25_224/model.json",
  7957. "source": "https://storage.googleapis.com/tfjs-models/tfjs/mobilenet_v1_0.25_224/model.json",
  7958. "format": "TensorFlow.js Keras v2.1.4",
  7959. "link": "https://github.com/tensorflow/tfjs-examples"
  7960. },
  7961. {
  7962. "type": "tfjs",
  7963. "target": "posenet_mobilenet_float_075.zip",
  7964. "source": "https://github.com/lutzroeder/netron/files/3357629/posenet_mobilenet_float_075.zip",
  7965. "format": "TensorFlow.js graph-model",
  7966. "link": "https://github.com/intel/webml-polyfill/issues/880"
  7967. },
  7968. {
  7969. "type": "tfjs",
  7970. "target": "posenet_mobilenet_float_075_1_default_1.zip",
  7971. "source": "https://github.com/lutzroeder/netron/files/7204409/posenet_mobilenet_float_075_1_default_1.zip",
  7972. "format": "TensorFlow.js graph-model",
  7973. "link": "https://github.com/lutzroeder/netron/issues/294"
  7974. },
  7975. {
  7976. "type": "tfjs",
  7977. "target": "sentiment_cnn_v1/model.json",
  7978. "source": "https://github.com/lutzroeder/netron/files/3361046/sentiment_cnn_v1.zip[model.json]",
  7979. "format": "TensorFlow.js Keras v2.1.4",
  7980. "link": "https://github.com/tensorflow/tfjs-examples"
  7981. },
  7982. {
  7983. "type": "tfjs",
  7984. "target": "ssd_mobilenet_v2_1_default_1.zip",
  7985. "source": "https://github.com/lutzroeder/netron/files/6605132/ssd_mobilenet_v2_1_default_1.zip",
  7986. "format": "TensorFlow.js graph-model",
  7987. "link": "https://github.com/lutzroeder/netron/issues/294"
  7988. },
  7989. {
  7990. "type": "tfjs",
  7991. "target": "translation_en_fr_v1/model.json",
  7992. "source": "https://github.com/user-attachments/files/15957620/translation_en_fr_v1.zip[model.json]",
  7993. "format": "TensorFlow.js Keras v2.1.4",
  7994. "link": "https://github.com/tensorflow/tfjs-examples"
  7995. },
  7996. {
  7997. "type": "tfjs",
  7998. "target": "test_concat_const_string_tfjs.zip",
  7999. "source": "https://github.com/lutzroeder/netron/files/7207228/test_concat_const_string_tfjs.zip",
  8000. "format": "TensorFlow.js graph-model",
  8001. "link": "https://github.com/lutzroeder/netron/issues/294"
  8002. },
  8003. {
  8004. "type": "tfjs",
  8005. "target": "yamnet.tar",
  8006. "source": "https://tfhub.dev/google/tfjs-model/yamnet/tfjs/1?tfjs-format=compressed",
  8007. "format": "TensorFlow.js graph-model",
  8008. "link": "https://tfhub.dev/google/tfjs-model/yamnet/tfjs/1"
  8009. },
  8010. {
  8011. "type": "tfjs",
  8012. "target": "yolo3_tiny_darknet.zip",
  8013. "source": "https://github.com/lutzroeder/netron/files/7150178/yolo3_tiny_darknet.zip",
  8014. "format": "TensorFlow.js graph-model",
  8015. "link": "https://github.com/lutzroeder/netron/issues/764"
  8016. },
  8017. {
  8018. "type": "tflite",
  8019. "target": "0256",
  8020. "source": "https://github.com/lutzroeder/netron/files/14074688/0256.tflite.zip[0256.tflite]",
  8021. "format": "TensorFlow Lite v3",
  8022. "tags": "quantization",
  8023. "link": "https://github.com/lutzroeder/netron/issues/256"
  8024. },
  8025. {
  8026. "type": "tflite",
  8027. "target": "0386.tflite",
  8028. "source": "https://github.com/lutzroeder/netron/files/14074694/0386.tflite.zip[0386.tflite]",
  8029. "format": "TensorFlow Lite v3",
  8030. "link": "https://github.com/lutzroeder/netron/issues/386"
  8031. },
  8032. {
  8033. "type": "tflite",
  8034. "target": "0416.tflite",
  8035. "source": "https://github.com/lutzroeder/netron/files/14074719/0416.tflite.zip[0416.tflite]",
  8036. "format": "TensorFlow Lite v3",
  8037. "tags": "quantization",
  8038. "link": "https://github.com/lutzroeder/netron/issues/416"
  8039. },
  8040. {
  8041. "type": "tflite",
  8042. "target": "0479.tflite",
  8043. "source": "https://github.com/lutzroeder/netron/files/14074721/0479.tflite.zip[0479.tflite]",
  8044. "format": "TensorFlow Lite v3",
  8045. "tags": "quantization",
  8046. "link": "https://github.com/lutzroeder/netron/issues/479"
  8047. },
  8048. {
  8049. "type": "tflite",
  8050. "target": "complex64.tflite",
  8051. "source": "https://github.com/lutzroeder/netron/files/9507072/complex64.tflite.zip[complex64.tflite]",
  8052. "format": "TensorFlow Lite v3",
  8053. "assert": "model.modules[0].nodes[6].attributes[0].name == 'T'",
  8054. "link": "https://github.com/lutzroeder/netron/issues/964"
  8055. },
  8056. {
  8057. "type": "tflite",
  8058. "target": "deeplab_mobilenetv2_513.tflite",
  8059. "source": "https://raw.githubusercontent.com/pinzhenx/webml-demo/master/examples/deeplab/model/deeplab_mobilenetv2_513.tflite",
  8060. "format": "TensorFlow Lite v3",
  8061. "tags": "quantization",
  8062. "link": "https://github.com/pinzhenx/webml-demo"
  8063. },
  8064. {
  8065. "type": "tflite",
  8066. "target": "deeplab_mobilenetv2_513_dilated.tflite",
  8067. "source": "https://raw.githubusercontent.com/pinzhenx/webml-demo/master/examples/deeplab/model/deeplab_mobilenetv2_513_dilated.tflite",
  8068. "format": "TensorFlow Lite v3",
  8069. "tags": "quantization",
  8070. "link": "https://github.com/pinzhenx/webml-demo"
  8071. },
  8072. {
  8073. "type": "tflite",
  8074. "target": "efficientnet-edgetpu-S_quant_edgetpu.tflite",
  8075. "source": "https://github.com/google-coral/edgetpu/raw/master/test_data/efficientnet-edgetpu-S_quant_edgetpu.tflite",
  8076. "format": "TensorFlow Lite v3",
  8077. "tags": "quantization",
  8078. "link": "https://github.com/lutzroeder/netron/issues/499"
  8079. },
  8080. {
  8081. "type": "tflite",
  8082. "target": "efficientnet_lite1_int8_2.tflite",
  8083. "source": "https://github.com/lutzroeder/netron/files/8309257/efficientnet_lite1_int8_2.tflite.zip[efficientnet_lite1_int8_2.tflite]",
  8084. "format": "TensorFlow Lite v3",
  8085. "tags": "quantization",
  8086. "link": "https://github.com/lutzroeder/netron/issues/34"
  8087. },
  8088. {
  8089. "type": "tflite",
  8090. "target": "extract_features_micro.tflite",
  8091. "source": "https://github.com/lutzroeder/netron/files/14550972/extract_features_micro.tflite.zip[extract_features_micro.tflite]",
  8092. "format": "TensorFlow Lite v3",
  8093. "link": "https://github.com/lutzroeder/netron/issues/481"
  8094. },
  8095. {
  8096. "type": "tflite",
  8097. "target": "face_detection_front.json",
  8098. "source": "https://github.com/lutzroeder/netron/files/4606685/face_detection_front.zip[face_detection_front.json]",
  8099. "format": "TensorFlow Lite v3"
  8100. },
  8101. {
  8102. "type": "tflite",
  8103. "target": "face_detection_front.tflite",
  8104. "source": "https://github.com/lutzroeder/netron/files/4606685/face_detection_front.zip[face_detection_front.tflite]",
  8105. "format": "TensorFlow Lite v3",
  8106. "link": "https://github.com/lutzroeder/netron/issues/487"
  8107. },
  8108. {
  8109. "type": "tflite",
  8110. "target": "hair_segmentation.json",
  8111. "source": "https://github.com/lutzroeder/netron/files/4606715/hair_segmentation.zip[hair_segmentation.json]",
  8112. "format": "TensorFlow Lite v3",
  8113. "link": "https://github.com/lutzroeder/netron/issues/487"
  8114. },
  8115. {
  8116. "type": "tflite",
  8117. "target": "hair_segmentation.tflite",
  8118. "source": "https://storage.googleapis.com/mediapipe-assets/hair_segmentation.tflite",
  8119. "format": "TensorFlow Lite v3",
  8120. "link": "https://google.github.io/mediapipe/solutions/models.html"
  8121. },
  8122. {
  8123. "type": "tflite",
  8124. "target": "hed_lite_model_quantize.tflite",
  8125. "source": "https://raw.githubusercontent.com/pqpo/SmartCropper/master/smartcropperlib/src/main/assets/models/hed_lite_model_quantize.tflite",
  8126. "format": "TensorFlow Lite v3",
  8127. "tags": "quantization",
  8128. "link": "https://github.com/pqpo/SmartCropper"
  8129. },
  8130. {
  8131. "type": "tflite",
  8132. "target": "inception_v3.tflite",
  8133. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/model_zoo/upload_20180427/inception_v3_2018_04_27.tgz[./inception_v3.tflite]",
  8134. "format": "TensorFlow Lite v3",
  8135. "tags": "quantization",
  8136. "link": "https://github.com/lutzroeder/netron/issues/34"
  8137. },
  8138. {
  8139. "type": "tflite",
  8140. "target": "keyword_scrambled_8bit.tflite",
  8141. "source": "https://raw.githubusercontent.com/tensorflow/tflite-micro/master/tensorflow/lite/micro/models/keyword_scrambled_8bit.tflite",
  8142. "format": "TensorFlow Lite v3",
  8143. "tags": "quantization",
  8144. "link": "https://github.com/tensorflow/tflite-micro"
  8145. },
  8146. {
  8147. "type": "tflite",
  8148. "target": "mbv2ca_100_85_none_697.tflite",
  8149. "source": "https://github.com/user-attachments/files/17251997/mbv2ca_100_85_none_697.tflite.zip[mbv2ca_100_85_none_697.tflite]",
  8150. "format": "TensorFlow Lite v3",
  8151. "tags": "quantization",
  8152. "error": "Invalid tensor data size.",
  8153. "link": "https://github.com/lutzroeder/netron/issues/34"
  8154. },
  8155. {
  8156. "type": "tflite",
  8157. "target": "mobilenet_v1_0.75_160_quantized.tflite",
  8158. "source": "https://github.com/lutzroeder/netron/files/4569400/mobilenet_v1_0.75_160_quantized.zip[mobilenet_v1_0.75_160_quantized.tflite]",
  8159. "format": "TensorFlow Lite v3",
  8160. "tags": "quantization",
  8161. "link": "https://github.com/lutzroeder/netron/issues/481"
  8162. },
  8163. {
  8164. "type": "tflite",
  8165. "target": "mobilenet_v1_1.0_224.tflite",
  8166. "source": "http://download.tensorflow.org/models/mobilenet_v1_2018_08_02/mobilenet_v1_1.0_224.tgz[./mobilenet_v1_1.0_224.tflite]",
  8167. "format": "TensorFlow Lite v3",
  8168. "tags": "quantization",
  8169. "link": "https://www.tensorflow.org/lite/models"
  8170. },
  8171. {
  8172. "type": "tflite",
  8173. "target": "mobilenet_v1_1.0_224_quant.tflite",
  8174. "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]",
  8175. "format": "TensorFlow Lite v3",
  8176. "tags": "quantization",
  8177. "link": "https://www.tensorflow.org/lite/models"
  8178. },
  8179. {
  8180. "type": "tflite",
  8181. "target": "model_pyramid_0_0_63_31.tflite",
  8182. "source": "https://github.com/lutzroeder/netron/files/6209444/model_pyramid_0_0_63_31.tflite.zip[model_pyramid_0_0_63_31.tflite]",
  8183. "format": "TensorFlow Lite v3",
  8184. "tags": "quantization",
  8185. "link": "https://github.com/lutzroeder/netron/issues/710"
  8186. },
  8187. {
  8188. "type": "tflite",
  8189. "target": "mnasnet_0.5_224.tflite",
  8190. "source": "http://download.tensorflow.org/models/tflite/mnasnet_0.5_224_09_07_2018.tgz[mnasnet_0.5_224/mnasnet_0.5_224.tflite]",
  8191. "format": "TensorFlow Lite v3",
  8192. "tags": "quantization",
  8193. "link": "https://www.tensorflow.org/lite/models"
  8194. },
  8195. {
  8196. "type": "tflite",
  8197. "target": "mnasnet_1.3_224.tflite",
  8198. "source": "http://download.tensorflow.org/models/tflite/mnasnet_1.3_224_09_07_2018.tgz[mnasnet_1.3_224/mnasnet_1.3_224.tflite]",
  8199. "format": "TensorFlow Lite v3",
  8200. "tags": "quantization",
  8201. "link": "https://www.tensorflow.org/lite/models"
  8202. },
  8203. {
  8204. "type": "tflite",
  8205. "target": "nasnet_mobile.tflite",
  8206. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/model_zoo/upload_20180427/nasnet_mobile_2018_04_27.tgz[./nasnet_mobile.tflite]",
  8207. "format": "TensorFlow Lite v3",
  8208. "tags": "quantization",
  8209. "link": "https://www.tensorflow.org/lite/models"
  8210. },
  8211. {
  8212. "type": "tflite",
  8213. "target": "pose_estimation_for_mobile.tflite",
  8214. "source": "https://raw.githubusercontent.com/edvardHua/PoseEstimationForMobile/master/release/cpm_model/model.tflite",
  8215. "format": "TensorFlow Lite v3",
  8216. "tags": "quantization",
  8217. "link": "https://github.com/edvardHua/PoseEstimationForMobile"
  8218. },
  8219. {
  8220. "type": "tflite",
  8221. "target": "quicknet.tflite",
  8222. "source": "https://github.com/lutzroeder/netron/files/5184953/quicknet.zip[quicknet.tflite]",
  8223. "format": "TensorFlow Lite v3",
  8224. "link": "https://github.com/lutzroeder/netron/issues/499"
  8225. },
  8226. {
  8227. "type": "tflite",
  8228. "target": "signature_concrete_functions.tflite",
  8229. "source": "https://github.com/lutzroeder/netron/files/13687443/signature_tflite_samples.zip[signature_concrete_functions.tflite]",
  8230. "format": "TensorFlow Lite v3",
  8231. "assert": "model.modules[0].nodes[0].attributes[0].value[0] == 'StringToNumber'",
  8232. "link": "https://github.com/lutzroeder/netron/issues/783"
  8233. },
  8234. {
  8235. "type": "tflite",
  8236. "target": "signature_keras.tflite",
  8237. "source": "https://github.com/lutzroeder/netron/files/13687443/signature_tflite_samples.zip[signature_keras.tflite]",
  8238. "format": "TensorFlow Lite v3",
  8239. "link": "https://github.com/lutzroeder/netron/issues/783"
  8240. },
  8241. {
  8242. "type": "tflite",
  8243. "target": "signature_saved_model.tflite",
  8244. "source": "https://github.com/lutzroeder/netron/files/13687443/signature_tflite_samples.zip[signature_saved_model.tflite]",
  8245. "format": "TensorFlow Lite v3",
  8246. "link": "https://github.com/lutzroeder/netron/issues/783"
  8247. },
  8248. {
  8249. "type": "tflite",
  8250. "target": "smartreply.tflite",
  8251. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/smartreply_1.0_2017_11_01.zip[smartreply.tflite]",
  8252. "format": "TensorFlow Lite v3"
  8253. },
  8254. {
  8255. "type": "tflite",
  8256. "target": "smartreply_1.0_2017_11_01.zip",
  8257. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/smartreply_1.0_2017_11_01.zip",
  8258. "format": "TensorFlow Lite v3"
  8259. },
  8260. {
  8261. "type": "tflite",
  8262. "target": "squeezenet.tflite",
  8263. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/model_zoo/upload_20180427/squeezenet_2018_04_27.tgz[./squeezenet.tflite]",
  8264. "tags": "validation,quantization",
  8265. "format": "TensorFlow Lite v3"
  8266. },
  8267. {
  8268. "type": "tflite",
  8269. "target": "speech_hotword_model_rank1_2017_11_14.tflite",
  8270. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/speech_hotword_model_rank1_2017_11_14.tflite",
  8271. "format": "TensorFlow Lite v3"
  8272. },
  8273. {
  8274. "type": "tflite",
  8275. "target": "speech_hotword_model_rank2_2017_11_14.tflite",
  8276. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/speech_hotword_model_rank2_2017_11_14.tflite",
  8277. "format": "TensorFlow Lite v3",
  8278. "tags": "quantization"
  8279. },
  8280. {
  8281. "type": "tflite",
  8282. "target": "speech_speakerid_model_2017_11_14.tflite",
  8283. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/speech_speakerid_model_2017_11_14.tflite",
  8284. "format": "TensorFlow Lite v3"
  8285. },
  8286. {
  8287. "type": "tflite",
  8288. "target": "speech_tts_model_2017_11_14.tflite",
  8289. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/speech_tts_model_2017_11_14.tflite",
  8290. "format": "TensorFlow Lite v3"
  8291. },
  8292. {
  8293. "type": "tflite",
  8294. "target": "speech_tts_model_2017_11_14.json",
  8295. "source": "https://github.com/lutzroeder/netron/files/4606719/speech_tts_model_2017_11_14.zip[speech_tts_model_2017_11_14.json]",
  8296. "format": "TensorFlow Lite v3",
  8297. "link": "https://github.com/lutzroeder/netron/issues/487"
  8298. },
  8299. {
  8300. "type": "tflite",
  8301. "target": "subword-conformer.latest.tflite",
  8302. "source": "https://github.com/lutzroeder/netron/files/6032934/subword-conformer.zip[subword-conformer.latest.tflite]",
  8303. "format": "TensorFlow Lite v3",
  8304. "tags": "skip-render,quantization",
  8305. "link": "https://github.com/lutzroeder/netron/issues/589"
  8306. },
  8307. {
  8308. "type": "tflite",
  8309. "target": "text_classification.tflite",
  8310. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/text_classification/text_classification.tflite",
  8311. "format": "TensorFlow Lite v3",
  8312. "tags": "quantization",
  8313. "link": "https://github.com/tensorflow/tensorflow/blob/master/tensorflow/lite/g3doc/models/text_classification/overview.md"
  8314. },
  8315. {
  8316. "type": "tflite",
  8317. "target": "tflite.onnx",
  8318. "source": "https://github.com/lutzroeder/netron/files/14879318/tflite.onnx.zip[tflite.onnx]",
  8319. "format": "TensorFlow Lite v3",
  8320. "link": "https://github.com/lutzroeder/netron/issues/34"
  8321. },
  8322. {
  8323. "type": "tflite",
  8324. "target": "two_subgraphs.bin",
  8325. "source": "https://raw.githubusercontent.com/tensorflow/tensorflow/master/tensorflow/lite/testdata/two_subgraphs.bin",
  8326. "format": "TensorFlow Lite v3",
  8327. "link": "https://github.com/tensorflow/tensorflow"
  8328. },
  8329. {
  8330. "type": "tflite",
  8331. "target": "xorGate.lite",
  8332. "source": "https://raw.githubusercontent.com/kosslab-kr/Tizen-NN-Runtime/master/Xor/xorGate.lite",
  8333. "format": "TensorFlow Lite v3",
  8334. "tags": "quantization",
  8335. "link": "https://github.com/kosslab-kr/Tizen-NN-Runtime"
  8336. },
  8337. {
  8338. "type": "tnn",
  8339. "target": "squeezenet_v1.1.tnnmodel,squeezenet_v1.1.tnnproto",
  8340. "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",
  8341. "format": "TNN",
  8342. "link": "https://github.com/Tencent/TNN"
  8343. },
  8344. {
  8345. "type": "tnn",
  8346. "target": "tnn_v2_model.tnnmodel,tnn_v2_model.tnnproto",
  8347. "source": "https://github.com/lutzroeder/netron/files/5753725/tnn_v2_model.zip[tnn_v2_model.tnnmodel,tnn_v2_model.tnnproto]",
  8348. "format": "TNN",
  8349. "link": "https://github.com/lutzroeder/netron/issues/521"
  8350. },
  8351. {
  8352. "type": "tnn",
  8353. "target": "youtu_face_alignment_phase1.tnnproto,youtu_face_alignment_phase1.tnnmodel",
  8354. "source": "https://github.com/lutzroeder/netron/files/15048808/youtu_face_alignment_phase1.zip[youtu_face_alignment_phase1.tnnproto,youtu_face_alignment_phase1.tnnmodel]",
  8355. "format": "TNN",
  8356. "assert": "model.modules[0].nodes[0].inputs[1].name == 'filter'",
  8357. "link": "https://github.com/lutzroeder/netron/issues/521"
  8358. },
  8359. {
  8360. "type": "torch",
  8361. "target": "2ch_notredame.t7",
  8362. "source": "https://github.com/lutzroeder/netron/files/11073797/2ch_notredame.t7.zip[2ch_notredame.t7]",
  8363. "format": "Torch v7",
  8364. "link": "https://github.com/szagoruyko/cvpr15deepcompare"
  8365. },
  8366. {
  8367. "type": "torch",
  8368. "target": "2ch2stream_liberty.t7",
  8369. "source": "https://github.com/lutzroeder/netron/files/11073798/2ch2stream_liberty.t7.zip[2ch2stream_liberty.t7]",
  8370. "format": "Torch v7",
  8371. "link": "https://github.com/szagoruyko/cvpr15deepcompare"
  8372. },
  8373. {
  8374. "type": "torch",
  8375. "target": "apple2orange.t7",
  8376. "source": "https://github.com/lutzroeder/netron/files/11073799/apple2orange.t7.zip[apple2orange.t7]",
  8377. "format": "Torch v7",
  8378. "link": "https://github.com/junyanz/CycleGAN"
  8379. },
  8380. {
  8381. "type": "torch",
  8382. "target": "bedrooms_4_net_G.t7",
  8383. "source": "https://github.com/soumith/lfs/raw/master/dcgan.torch/bedrooms_4_net_G.t7",
  8384. "format": "Torch v7",
  8385. "link": "https://github.com/soumith/dcgan.torch"
  8386. },
  8387. {
  8388. "type": "torch",
  8389. "target": "celebA_25_net_G.t7",
  8390. "source": "https://github.com/soumith/lfs/raw/master/dcgan.torch/celebA_25_net_G.t7",
  8391. "format": "Torch v7",
  8392. "link": "https://github.com/soumith/dcgan.torch"
  8393. },
  8394. {
  8395. "type": "torch",
  8396. "target": "cunet_art_14l_scale2.0x_model.t7",
  8397. "source": "https://raw.githubusercontent.com/nagadomi/waifu2x/master/models/cunet/art/noise0_model.t7",
  8398. "format": "Torch v7",
  8399. "link": "https://github.com/nagadomi/waifu2x"
  8400. },
  8401. {
  8402. "type": "torch",
  8403. "target": "Helen_8x.t7",
  8404. "source": "https://raw.githubusercontent.com/tyshiwo/FSRNet/master/models/Helen_8x.t7",
  8405. "format": "Torch v7",
  8406. "link": "https://github.com/tyshiwo/FSRNet"
  8407. },
  8408. {
  8409. "type": "torch",
  8410. "target": "inception.t7",
  8411. "source": "https://raw.githubusercontent.com/cpra/fer-cnn-sota/master/models/inception.t7",
  8412. "format": "Torch v7",
  8413. "link": "https://github.com/cpra/fer-cnn-sota"
  8414. },
  8415. {
  8416. "type": "torch",
  8417. "target": "net_kitti2015_fast_-a_train_all.t7",
  8418. "source": "https://github.com/lutzroeder/netron/files/3165404/net_kitti2015_fast_-a_train_all.t7.zip[net_kitti2015_fast_-a_train_all.t7]",
  8419. "format": "Torch v7",
  8420. "link": "https://github.com/lutzroeder/netron/issues/269"
  8421. },
  8422. {
  8423. "type": "torch",
  8424. "target": "net_kitti2015_slow_-a_train_all.t7",
  8425. "source": "https://github.com/lutzroeder/netron/files/9425494/net_kitti2015_slow_-a_train_all.t7.zip[net_kitti2015_slow_-a_train_all.t7]",
  8426. "format": "Torch v7",
  8427. "link": "https://github.com/lutzroeder/netron/issues/269"
  8428. },
  8429. {
  8430. "type": "torch",
  8431. "target": "openface.nn4.small2.v1.t7",
  8432. "source": "https://raw.githubusercontent.com/pyannote/pyannote-data/master/openface.nn4.small2.v1.t7",
  8433. "format": "Torch v7",
  8434. "link": "https://github.com/pyannote/pyannote-data"
  8435. },
  8436. {
  8437. "type": "torch",
  8438. "target": "rnnTracker_r300_l1_n1_m1_d4.t7",
  8439. "source": "https://raw.githubusercontent.com/aghagol/minimal_rnntracking_deploy/master/bin/rnnTracker_r300_l1_n1_m1_d4.t7",
  8440. "format": "Torch v7",
  8441. "link": "https://github.com/aghagol"
  8442. },
  8443. {
  8444. "type": "torch",
  8445. "target": "siam_liberty.t7",
  8446. "source": "https://github.com/lutzroeder/netron/files/11073755/siam_liberty.t7.zip[siam_liberty.t7]",
  8447. "format": "Torch v7",
  8448. "link": "https://github.com/szagoruyko/cvpr15deepcompare"
  8449. },
  8450. {
  8451. "type": "torch",
  8452. "target": "vgg.t7",
  8453. "source": "https://raw.githubusercontent.com/cpra/fer-cnn-sota/master/models/vgg.t7",
  8454. "format": "Torch v7",
  8455. "link": "https://github.com/cpra/fer-cnn-sota"
  8456. },
  8457. {
  8458. "type": "transformers",
  8459. "target": "Qwen2-7B-Instruct.zip",
  8460. "source": "https://github.com/user-attachments/files/21336228/Qwen2-7B-Instruct.zip",
  8461. "format": "Transformers",
  8462. "link": "https://github.com/lutzroeder/netron/issues/1480"
  8463. },
  8464. {
  8465. "type": "transformers",
  8466. "target": "tokenizer.json",
  8467. "source": "https://github.com/user-attachments/files/16203071/tokenizer.json.zip[tokenizer.json]",
  8468. "format": "Transformers",
  8469. "link": "https://github.com/lutzroeder/netron/issues/1480"
  8470. },
  8471. {
  8472. "type": "tvm",
  8473. "target": "mobilenet-v1-tvm.json",
  8474. "source": "https://github.com/lutzroeder/netron/files/2636924/mobilenet-v1-tvm.json.zip[mobilenet-v1-tvm.json]",
  8475. "format": "TVM",
  8476. "link": "https://github.com/lutzroeder/netron/issues/1342"
  8477. },
  8478. {
  8479. "type": "tvm",
  8480. "target": "squeezenet.params",
  8481. "source": "https://github.com/user-attachments/files/16922776/squeezenet.params.zip[squeezenet.params]",
  8482. "format": "TVM",
  8483. "link": "https://github.com/lutzroeder/netron/issues/1342"
  8484. },
  8485. {
  8486. "type": "tvm",
  8487. "target": "squeezenet_opt_level_1.json,squeezenet_opt_level_1.params",
  8488. "source": "https://github.com/user-attachments/files/16919287/squeezenet_opt_level_1.zip[squeezenet_opt_level_1.json,squeezenet_opt_level_1.params]",
  8489. "format": "TVM",
  8490. "link": "https://github.com/lutzroeder/netron/issues/1342"
  8491. },
  8492. {
  8493. "type": "tvm",
  8494. "target": "squeezenet_opt_level_3.params,squeezenet_opt_level_3.json",
  8495. "source": "https://github.com/user-attachments/files/16919289/squeezenet_opt_level_3.zip[squeezenet_opt_level_3.params,squeezenet_opt_level_3.json]",
  8496. "format": "TVM",
  8497. "link": "https://github.com/lutzroeder/netron/issues/1342"
  8498. },
  8499. {
  8500. "type": "uff",
  8501. "target": "resnet50_tensorflow_1.6.uff",
  8502. "source": "https://github.com/lutzroeder/netron/files/7402208/resnet50_tensorflow_1.6.uff.zip[resnet50_tensorflow_1.6.uff]",
  8503. "format": "UFF v1",
  8504. "link": "https://github.com/lutzroeder/netron/issues/593"
  8505. },
  8506. {
  8507. "type": "uff",
  8508. "target": "sample_unpruned_mobilenet_v2.tar.gz",
  8509. "source": "https://nvidia.box.com/shared/static/8oqvmd79llr6lq1fr43s4fu1ph37v8nt.gz",
  8510. "format": "UFF v1",
  8511. "link": "https://github.com/lutzroeder/netron/issues/511"
  8512. },
  8513. {
  8514. "type": "uff",
  8515. "target": "tmp_v2_coco.pbtxt",
  8516. "source": "https://github.com/lutzroeder/netron/files/4741218/tmp_v2_coco.zip[tmp_v2_coco.pbtxt]",
  8517. "format": "UFF v1",
  8518. "link": "https://github.com/lutzroeder/netron/issues/511"
  8519. },
  8520. {
  8521. "type": "weka",
  8522. "target": "j48model.model",
  8523. "source": "https://raw.githubusercontent.com/PTaati/wekaTree2python/master/j48model.model",
  8524. "error": "Unsupported type 'weka.classifiers.trees.J48'."
  8525. },
  8526. {
  8527. "type": "xgboost",
  8528. "target": "xgb_classifier.json",
  8529. "source": "https://github.com/user-attachments/files/20028544/xgb_classifier.zip[xgb_classifier.json]",
  8530. "error": "File contains unsupported XGBoost JSON data.",
  8531. "link": "https://github.com/lutzroeder/netron/issues/1452"
  8532. },
  8533. {
  8534. "type": "xgboost",
  8535. "target": "xgb_classifier.model",
  8536. "source": "https://github.com/user-attachments/files/20028544/xgb_classifier.zip[xgb_classifier.model]",
  8537. "error": "File contains unsupported XGBoost data.",
  8538. "link": "https://github.com/lutzroeder/netron/issues/1452"
  8539. },
  8540. {
  8541. "type": "xgboost",
  8542. "target": "xgb_classifier.pkl",
  8543. "source": "https://github.com/user-attachments/files/20028544/xgb_classifier.zip[xgb_classifier.pkl]",
  8544. "format": "scikit-learn",
  8545. "link": "https://github.com/lutzroeder/netron/issues/1452"
  8546. },
  8547. {
  8548. "type": "xgboost",
  8549. "target": "xgb_classifier.txt",
  8550. "source": "https://github.com/user-attachments/files/20028544/xgb_classifier.zip[xgb_classifier.txt]",
  8551. "error": "File contains unsupported XGBoost text data.",
  8552. "link": "https://github.com/lutzroeder/netron/issues/1452"
  8553. },
  8554. {
  8555. "type": "xmodel",
  8556. "target": "face-quality_pt.xmodel",
  8557. "source": "https://github.com/lutzroeder/netron/files/7083632/face-quality_pt-vck190-r1.4.0.tar.gz[face-quality_pt/face-quality_pt.xmodel]",
  8558. "format": "xmodel",
  8559. "link": "https://github.com/lutzroeder/netron/issues/718"
  8560. },
  8561. {
  8562. "type": "xmodel",
  8563. "target": "mobilenet_1_0_224_tf2-zcu102_zcu104-r1.3.1.xmodel",
  8564. "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]",
  8565. "format": "xmodel",
  8566. "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"
  8567. },
  8568. {
  8569. "type": "xmodel",
  8570. "target": "mobilenet_1_0_224_tf2-u50-u50lv-u280-v3me-r1.3.1.xmodel",
  8571. "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]",
  8572. "format": "xmodel",
  8573. "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"
  8574. },
  8575. {
  8576. "type": "xmodel",
  8577. "target": "PointsQuality_int.xmodel",
  8578. "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]",
  8579. "format": "xmodel",
  8580. "link": "https://github.com/lutzroeder/netron/issues/718"
  8581. }
  8582. ]