2
0

models.json 268 KB

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