2
0

models.json 231 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611
  1. [
  2. {
  3. "type": "armnn",
  4. "target": "ssd_mobilenet_v3_small_coco_2019_08_14.armnn",
  5. "source": "https://raw.githubusercontent.com/ARM-software/armnn/master/samples/serialized/ssd_mobilenet_v3_small_coco_2019_08_14.armnn",
  6. "format": "Arm NN",
  7. "link": "https://github.com/ARM-software/armnn"
  8. },
  9. {
  10. "type": "armnn",
  11. "target": "ssd_mobilenet_v3_small_coco_2019_08_14_q8.armnn",
  12. "source": "https://github.com/lutzroeder/netron/files/3839429/samples.zip[ssd_mobilenet_v3_small_coco_2019_08_14_q8.armnn]",
  13. "format": "Arm NN",
  14. "link": "https://github.com/ARM-software/armnn"
  15. },
  16. {
  17. "type": "armnn",
  18. "target": "ssd_mobilenet_v3_small_coco_2019_08_14_q16.armnn",
  19. "source": "https://github.com/lutzroeder/netron/files/3839429/samples.zip[ssd_mobilenet_v3_small_coco_2019_08_14_q16.armnn]",
  20. "format": "Arm NN",
  21. "link": "https://github.com/ARM-software/armnn"
  22. },
  23. {
  24. "type": "bigdl",
  25. "target": "analytics-zoo_alexnet-quantize_imagenet_0.1.0.model",
  26. "source": "https://s3-ap-southeast-1.amazonaws.com/analytics-zoo-models/imageclassification/imagenet/analytics-zoo_alexnet-quantize_imagenet_0.1.0.model",
  27. "format": "BigDL",
  28. "link": "https://analytics-zoo.github.io/master/#ProgrammingGuide/image-classification"
  29. },
  30. {
  31. "type": "bigdl",
  32. "target": "analytics-zoo_inception-v3_imagenet_0.1.0.model",
  33. "source": "https://analytics-zoo-models.s3-ap-southeast-1.amazonaws.com/analytics-zoo_inception-v3_imagenet_0.1.0.model",
  34. "format": "BigDL",
  35. "link": "https://analytics-zoo.github.io/master/#ProgrammingGuide/image-classification"
  36. },
  37. {
  38. "type": "bigdl",
  39. "target": "analytics-zoo_mobilenet-v2_imagenet_0.1.0.model",
  40. "source": "https://analytics-zoo-models.s3-ap-southeast-1.amazonaws.com/analytics-zoo_mobilenet-v2_imagenet_0.1.0.model",
  41. "format": "BigDL",
  42. "link": "https://analytics-zoo.github.io/master/#ProgrammingGuide/image-classification"
  43. },
  44. {
  45. "type": "bigdl",
  46. "target": "analytics-zoo_ssd-mobilenet-300x300_PASCAL_0.1.0.model",
  47. "source": "https://s3-ap-southeast-1.amazonaws.com/analytics-zoo-models/object-detection/analytics-zoo_ssd-mobilenet-300x300_PASCAL_0.1.0.model",
  48. "format": "BigDL",
  49. "link": "https://analytics-zoo.github.io/master/#ProgrammingGuide/object-detection"
  50. },
  51. {
  52. "type": "bigdl",
  53. "target": "bigdl_inception-v1_imagenet_0.4.0.model",
  54. "source": "https://s3-ap-southeast-1.amazonaws.com/bigdl-models/imageclassification/imagenet/bigdl_inception-v1_imagenet_0.4.0.model",
  55. "format": "BigDL",
  56. "link": "https://github.com/intel-analytics/analytics-zoo/tree/master/pyzoo/zoo/examples/nnframes/imageTransferLearning"
  57. },
  58. {
  59. "type": "bigdl",
  60. "target": "bigdl_messi_quantize.model",
  61. "source": "https://s3-ap-southeast-1.amazonaws.com/bigdl-models/object-detection/bigdl_messi_quantize.model",
  62. "format": "BigDL",
  63. "link": "https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=2ahUKEwisj6SS1sDlAhWRsJ4KHU1jCPAQFjAAegQIABAB&url=https%3A%2F%2Fcode.ihub.org.cn%2Fprojects%2F224%2Frepository%2Fcommit_diff%3Fchangeset%3Dad9908ee94c150af026b0be07a7d35dea071cf15&usg=AOvVaw3jUiipbdKKG6pDJs_Z7_kE"
  64. },
  65. {
  66. "type": "caffe",
  67. "target": "1D_lstm.prototxt",
  68. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/1D_lstm.prototxt",
  69. "format": "Caffe v2",
  70. "link": "https://github.com/cwlacewe/netscope"
  71. },
  72. {
  73. "type": "caffe",
  74. "target": "age_net.caffemodel",
  75. "source": "https://raw.githubusercontent.com/eveningglow/age-and-gender-classification/master/model/age_net.caffemodel",
  76. "format": "Caffe v1",
  77. "link": "https://github.com/eveningglow/age-and-gender-classification"
  78. },
  79. {
  80. "type": "caffe",
  81. "target": "alexnet.prototxt",
  82. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/alexnet.prototxt",
  83. "format": "Caffe v2",
  84. "link": "https://github.com/cwlacewe/netscope"
  85. },
  86. {
  87. "type": "caffe",
  88. "target": "AlexNet_SalObjSub.caffemodel",
  89. "source": "http://www.cs.bu.edu/groups/ivc/data/SOS/AlexNet_SalObjSub.caffemodel",
  90. "format": "Caffe v1",
  91. "link": "https://github.com/natanielruiz/net-archive/tree/master/salient-object-alexnet"
  92. },
  93. {
  94. "type": "caffe",
  95. "target": "AlexNet_SalObjSub_deploy.prototxt",
  96. "source": "https://raw.githubusercontent.com/natanielruiz/net-archive/master/salient-object-alexnet/deploy.prototxt",
  97. "format": "Caffe v1",
  98. "link": "https://github.com/natanielruiz/net-archive/tree/master/salient-object-alexnet"
  99. },
  100. {
  101. "type": "caffe",
  102. "target": "bvlc_alexnet.caffemodel",
  103. "source": "http://dl.caffe.berkeleyvision.org/bvlc_alexnet.caffemodel",
  104. "format": "Caffe v1",
  105. "link": "https://github.com/BVLC/caffe/tree/master/models/bvlc_alexnet"
  106. },
  107. {
  108. "type": "caffe",
  109. "target": "bvlc_caffenet_full_conv.prototxt",
  110. "source": "https://raw.githubusercontent.com/BVLC/caffe/master/examples/net_surgery/bvlc_caffenet_full_conv.prototxt",
  111. "format": "Caffe v2",
  112. "link": "https://github.com/BVLC/caffe/tree/master/examples/net_surgery"
  113. },
  114. {
  115. "type": "caffe",
  116. "target": "bvlc_alexnet_deploy.prototxt",
  117. "source": "https://raw.githubusercontent.com/BVLC/caffe/master/models/bvlc_alexnet/deploy.prototxt",
  118. "format": "Caffe v2",
  119. "link": "https://github.com/BVLC/caffe/tree/master/models/bvlc_alexnet"
  120. },
  121. {
  122. "type": "caffe",
  123. "target": "bvlc_googlenet.caffemodel",
  124. "source": "http://dl.caffe.berkeleyvision.org/bvlc_googlenet.caffemodel",
  125. "format": "Caffe v1",
  126. "link": "https://github.com/BVLC/caffe/tree/master/models/bvlc_googlenet"
  127. },
  128. {
  129. "type": "caffe",
  130. "target": "bvlc_reference_caffenet.caffemodel",
  131. "source": "http://dl.caffe.berkeleyvision.org/bvlc_reference_caffenet.caffemodel",
  132. "format": "Caffe v1",
  133. "link": "https://github.com/BVLC/caffe/tree/master/models/bvlc_reference_caffenet"
  134. },
  135. {
  136. "type": "caffe",
  137. "target": "bvlc_reference_rcnn_ilsvrc13.caffemodel",
  138. "source": "http://dl.caffe.berkeleyvision.org/bvlc_reference_rcnn_ilsvrc13.caffemodel",
  139. "format": "Caffe v1",
  140. "link": "https://github.com/BVLC/caffe/tree/master/models/bvlc_reference_rcnn_ilsvrc13"
  141. },
  142. {
  143. "type": "caffe",
  144. "target": "caffe_array.prototxt",
  145. "source": "https://github.com/lutzroeder/netron/files/3288816/caffe_examples.zip[caffe_array.prototxt]",
  146. "format": "Caffe v2",
  147. "link": "https://github.com/lutzroeder/netron/issues/276"
  148. },
  149. {
  150. "type": "caffe",
  151. "target": "caffe_invalid_file.caffemodel",
  152. "source": "https://github.com/lutzroeder/netron/files/3288816/caffe_examples.zip[caffe_invalid_file.caffemodel]",
  153. "error": "File format is not caffe.NetParameter (invalid wire type 4 at offset 11) in 'caffe_invalid_file.caffemodel'.",
  154. "link": "https://github.com/lutzroeder/netron/issues/276"
  155. },
  156. {
  157. "type": "caffe",
  158. "target": "caffe_invalid_semicolon.prototxt",
  159. "source": "https://github.com/lutzroeder/netron/files/3288816/caffe_examples.zip[caffe_invalid_semicolon.prototxt]",
  160. "error": "File text format is not caffe.NetParameter (Unexpected token ';' at 7:18) in 'caffe_invalid_semicolon.prototxt'.",
  161. "link": "https://github.com/lutzroeder/netron/issues/276"
  162. },
  163. {
  164. "type": "caffe",
  165. "target": "caffe_semicolon.prototxt",
  166. "source": "https://github.com/lutzroeder/netron/files/3288816/caffe_examples.zip[caffe_semicolon.prototxt]",
  167. "format": "Caffe v2",
  168. "link": "https://github.com/lutzroeder/netron/issues/276"
  169. },
  170. {
  171. "type": "caffe",
  172. "target": "caffenet.prototxt",
  173. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/caffenet.prototxt",
  174. "format": "Caffe v2",
  175. "link": "https://github.com/cwlacewe/netscope"
  176. },
  177. {
  178. "type": "caffe",
  179. "target": "cifar10_full_sigmoid_solver_bn.prototxt,cifar10_full_sigmoid_train_test_bn.prototxt",
  180. "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",
  181. "format": "Caffe v2",
  182. "link": "https://github.com/BVLC/caffe/tree/master/examples/cifar10"
  183. },
  184. {
  185. "type": "caffe",
  186. "target": "cityscapes_713_pspnet.prototxt",
  187. "source": "https://gist.githubusercontent.com/meetshah1995/6bfb59e6a3cfcb4e2bb8d47f827c2928/raw/cd1ea0091d6f9b40530d3390dad41fed60bd02aa/cityscapes_713_pspnet.prototxt",
  188. "format": "Caffe v2",
  189. "link": "https://gist.github.com/meetshah1995/6bfb59e6a3cfcb4e2bb8d47f827c2928"
  190. },
  191. {
  192. "type": "caffe",
  193. "target": "conv.prototxt",
  194. "source": "https://raw.githubusercontent.com/BVLC/caffe/master/examples/net_surgery/conv.prototxt",
  195. "format": "Caffe v2",
  196. "link": "https://github.com/BVLC/caffe/tree/master/examples/net_surgery"
  197. },
  198. {
  199. "type": "caffe",
  200. "target": "deepyeast.caffemodel",
  201. "source": "https://kodu.ut.ee/~leopoldp/2016_DeepYeast/code/caffe_model/HOwt_png_vgg_A_bn_iter_130000.caffemodel",
  202. "format": "Caffe v2",
  203. "link": "https://github.com/BVLC/caffe/wiki/Model-Zoo#deepyeast"
  204. },
  205. {
  206. "type": "caffe",
  207. "target": "DenseNet_121.prototxt",
  208. "source": "https://raw.githubusercontent.com/shicai/DenseNet-Caffe/master/DenseNet_121.prototxt",
  209. "format": "Caffe v2",
  210. "link": "https://github.com/shicai/DenseNet-Caffe"
  211. },
  212. {
  213. "type": "caffe",
  214. "target": "DenseNet_161.prototxt",
  215. "source": "https://raw.githubusercontent.com/shicai/DenseNet-Caffe/master/DenseNet_161.prototxt",
  216. "format": "Caffe v2",
  217. "link": "https://github.com/shicai/DenseNet-Caffe"
  218. },
  219. {
  220. "type": "caffe",
  221. "target": "DenseNet_169.prototxt",
  222. "source": "https://raw.githubusercontent.com/shicai/DenseNet-Caffe/master/DenseNet_169.prototxt",
  223. "format": "Caffe v2",
  224. "link": "https://github.com/shicai/DenseNet-Caffe"
  225. },
  226. {
  227. "type": "caffe",
  228. "target": "DenseNet_169.prototxt",
  229. "source": "https://raw.githubusercontent.com/shicai/DenseNet-Caffe/master/DenseNet_169.prototxt",
  230. "format": "Caffe v2",
  231. "link": "https://github.com/shicai/DenseNet-Caffe"
  232. },
  233. {
  234. "type": "caffe",
  235. "target": "deploy_iResNet_ROB.tpl.prototxt",
  236. "source": "https://raw.githubusercontent.com/leonzfa/iResNet/master/models/model/deploy_iResNet_ROB.tpl.prototxt",
  237. "error": "File text format is not caffe.NetParameter (Couldn't parse float '$SCALE_WIDTH' at 727:59) in 'deploy_iResNet_ROB.tpl.prototxt'.",
  238. "link": "https://github.com/leonzfa/iResNet"
  239. },
  240. {
  241. "type": "caffe",
  242. "target": "faster_rcnn_train_test_21cls.pt",
  243. "source": "https://raw.githubusercontent.com/sanghoon/pva-faster-rcnn/master/models/pvanet/pva9.1/faster_rcnn_train_test_21cls.pt",
  244. "format": "Caffe v2",
  245. "link": "https://github.com/sanghoon/pva-faster-rcnn"
  246. },
  247. {
  248. "type": "caffe",
  249. "target": "fasterRCNN_AlexNet.prototxt",
  250. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/fasterRCNN_AlexNet.prototxt",
  251. "format": "Caffe v2",
  252. "link": "https://github.com/cwlacewe/netscope"
  253. },
  254. {
  255. "type": "caffe",
  256. "target": "fasterRCNN_ResNet.prototxt",
  257. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/fasterRCNN_ResNet.prototxt",
  258. "format": "Caffe v2",
  259. "link": "https://github.com/cwlacewe/netscope"
  260. },
  261. {
  262. "type": "caffe",
  263. "target": "fasterRCNN_VGG.prototxt",
  264. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/fasterRCNN_VGG.prototxt",
  265. "format": "Caffe v2",
  266. "link": "https://github.com/cwlacewe/netscope"
  267. },
  268. {
  269. "type": "caffe",
  270. "target": "fasterRCNN_ZynqNet.prototxt",
  271. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/fasterRCNN_ZynqNet.prototxt",
  272. "format": "Caffe v2",
  273. "link": "https://github.com/cwlacewe/netscope"
  274. },
  275. {
  276. "type": "caffe",
  277. "target": "fcn-16s.prototxt",
  278. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/fcn-16s.prototxt",
  279. "format": "Caffe v1",
  280. "link": "https://github.com/cwlacewe/netscope"
  281. },
  282. {
  283. "type": "caffe",
  284. "target": "fcn32s-heavy-pascal.caffemodel",
  285. "source": "http://dl.caffe.berkeleyvision.org/fcn32s-heavy-pascal.caffemodel",
  286. "format": "Caffe v2",
  287. "link": "https://github.com/shelhamer/fcn.berkeleyvision.org"
  288. },
  289. {
  290. "type": "caffe",
  291. "target": "fcn-8s-pascal-deploy.prototxt",
  292. "source": "https://raw.githubusercontent.com/HyeonwooNoh/DeconvNet/master/model/FCN/fcn-8s-pascal-deploy.prototxt",
  293. "format": "Caffe v1",
  294. "link": "https://github.com/HyeonwooNoh/DeconvNet"
  295. },
  296. {
  297. "type": "caffe",
  298. "target": "finetune_flickr_style.caffemodel",
  299. "source": "http://dl.caffe.berkeleyvision.org/finetune_flickr_style.caffemodel",
  300. "format": "Caffe v1",
  301. "link": "https://github.com/BVLC/caffe/tree/master/models/finetune_flickr_style"
  302. },
  303. {
  304. "type": "caffe",
  305. "target": "gender_net.caffemodel",
  306. "source": "https://raw.githubusercontent.com/eveningglow/age-and-gender-classification/master/model/gender_net.caffemodel",
  307. "format": "Caffe v1",
  308. "link": "https://github.com/eveningglow/age-and-gender-classification"
  309. },
  310. {
  311. "type": "caffe",
  312. "target": "googlenet.prototxt",
  313. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/googlenet.prototxt",
  314. "format": "Caffe v2",
  315. "link": "https://github.com/cwlacewe/netscope"
  316. },
  317. {
  318. "type": "caffe",
  319. "target": "googlenet_finetune_web_car_iter_10000.caffemodel",
  320. "source": "http://mmlab.ie.cuhk.edu.hk/datasets/comp_cars/googlenet_finetune_web_car_iter_10000.caffemodel",
  321. "format": "Caffe v1",
  322. "link": "https://gist.github.com/bogger/b90eb88e31cd745525ae"
  323. },
  324. {
  325. "type": "caffe",
  326. "target": "googlelet_places205_train_iter_2400000.caffemodel",
  327. "source": "http://places.csail.mit.edu/model/googlenet_places205.tar.gz[googlenet_places205/googlelet_places205_train_iter_2400000.caffemodel]",
  328. "format": "Caffe v2",
  329. "link": "http://places.csail.mit.edu/downloadCNN.html"
  330. },
  331. {
  332. "type": "caffe",
  333. "target": "hybridCNN_iter_700000_upgraded.caffemodel",
  334. "source": "http://places.csail.mit.edu/model/hybridCNN_upgraded.tar.gz[hybridCNN_iter_700000_upgraded.caffemodel]",
  335. "format": "Caffe v1",
  336. "link": "http://places.csail.mit.edu/downloadCNN.html"
  337. },
  338. {
  339. "type": "caffe",
  340. "target": "inceptionv3.prototxt",
  341. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/inceptionv3.prototxt",
  342. "format": "Caffe v2",
  343. "link": "https://github.com/cwlacewe/netscope"
  344. },
  345. {
  346. "type": "caffe",
  347. "target": "inceptionv3_orig.prototxt",
  348. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/inceptionv3_orig.prototxt",
  349. "format": "Caffe v2",
  350. "link": "https://github.com/cwlacewe/netscope"
  351. },
  352. {
  353. "type": "caffe",
  354. "target": "inceptionv4.prototxt",
  355. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/inceptionv4.prototxt",
  356. "format": "Caffe v2",
  357. "link": "https://github.com/cwlacewe/netscope"
  358. },
  359. {
  360. "type": "caffe",
  361. "target": "inceptionv4_resnet.prototxt",
  362. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/inceptionv4_resnet.prototxt",
  363. "format": "Caffe v2",
  364. "link": "https://github.com/cwlacewe/netscope"
  365. },
  366. {
  367. "type": "caffe",
  368. "target": "inceptionv4_resnet.prototxt",
  369. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/inceptionv4_resnet.prototxt",
  370. "format": "Caffe v2",
  371. "link": "https://github.com/cwlacewe/netscope"
  372. },
  373. {
  374. "type": "caffe",
  375. "target": "lenet_consolidated_solver.prototxt",
  376. "source": "https://raw.githubusercontent.com/BVLC/caffe/master/examples/mnist/lenet_consolidated_solver.prototxt",
  377. "format": "Caffe v1",
  378. "link": "https://github.com/BVLC/caffe/tree/master/examples/mnist"
  379. },
  380. {
  381. "type": "caffe",
  382. "target": "lenet.prototxt",
  383. "source": "https://raw.githubusercontent.com/BVLC/caffe/master/examples/mnist/lenet.prototxt",
  384. "format": "Caffe v2",
  385. "link": "https://github.com/BVLC/caffe/tree/master/examples/mnist"
  386. },
  387. {
  388. "type": "caffe",
  389. "target": "linreg.prototxt",
  390. "source": "https://raw.githubusercontent.com/BVLC/caffe/master/examples/pycaffe/linreg.prototxt",
  391. "format": "Caffe v2",
  392. "link": "https://github.com/BVLC/caffe/tree/master/examples/pycaffe"
  393. },
  394. {
  395. "type": "caffe",
  396. "target": "lstm.prototxt",
  397. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/lstm.prototxt",
  398. "format": "Caffe v2",
  399. "link": "https://github.com/cwlacewe/netscope"
  400. },
  401. {
  402. "type": "caffe",
  403. "target": "mobilenet.caffemodel",
  404. "source": "https://raw.githubusercontent.com/shicai/MobileNet-Caffe/master/mobilenet.caffemodel",
  405. "format": "Caffe v2",
  406. "link": "https://github.com/shicai/MobileNet-Caffe"
  407. },
  408. {
  409. "type": "caffe",
  410. "target": "mobilenet_deploy.prototxt",
  411. "source": "https://raw.githubusercontent.com/shicai/MobileNet-Caffe/master/mobilenet_deploy.prototxt",
  412. "format": "Caffe v2",
  413. "link": "https://github.com/shicai/MobileNet-Caffe"
  414. },
  415. {
  416. "type": "caffe",
  417. "target": "mobilenet_yolov3_lite_train.prototxt",
  418. "source": "https://raw.githubusercontent.com/eric612/Caffe-YOLOv3-Windows/master/models/yolov3/mobilenet_yolov3_lite_train.prototxt",
  419. "format": "Caffe v2",
  420. "link": "https://github.com/eric612/Caffe-YOLOv3-Windows"
  421. },
  422. {
  423. "type": "caffe",
  424. "target": "mobilenet_yolov3_solver.prototxt,mobilenet_yolov3_train.prototxt",
  425. "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",
  426. "format": "Caffe v2",
  427. "link": "https://github.com/eric612/Caffe-YOLOv3-Windows"
  428. },
  429. {
  430. "type": "caffe",
  431. "target": "mobilenet_v2.caffemodel",
  432. "source": "https://raw.githubusercontent.com/shicai/MobileNet-Caffe/master/mobilenet_v2.caffemodel",
  433. "format": "Caffe v2",
  434. "link": "https://github.com/shicai/MobileNet-Caffe"
  435. },
  436. {
  437. "type": "caffe",
  438. "target": "mobilenet_v2_deploy.prototxt",
  439. "source": "https://raw.githubusercontent.com/shicai/MobileNet-Caffe/master/mobilenet_v2_deploy.prototxt",
  440. "format": "Caffe v2",
  441. "link": "https://github.com/shicai/MobileNet-Caffe"
  442. },
  443. {
  444. "type": "caffe",
  445. "target": "MobileNetSSD_train.prototxt",
  446. "source": "https://github.com/lutzroeder/netron/files/3771164/MobileNetSSD_train.prototxt.txt",
  447. "format": "Caffe v2",
  448. "link": "https://github.com/lutzroeder/netron/issues/358"
  449. },
  450. {
  451. "type": "caffe",
  452. "target": "mnist_siamese_solver.prototxt,mnist_siamese_train_test.prototxt",
  453. "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",
  454. "format": "Caffe v2",
  455. "link": "https://github.com/BVLC/caffe/tree/master/examples/siamese"
  456. },
  457. {
  458. "type": "caffe",
  459. "target": "netron_issue_306.prototxt",
  460. "source": "https://github.com/lutzroeder/netron/files/3440457/netron_issue_306.zip[netron_issue_306.pbtxt]",
  461. "format": "Caffe v2",
  462. "link": "https://github.com/lutzroeder/netron/issues/306"
  463. },
  464. {
  465. "type": "caffe",
  466. "target": "nin.prototxt",
  467. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/nin.prototxt",
  468. "format": "Caffe v1",
  469. "link": "https://github.com/cwlacewe/netscope"
  470. },
  471. {
  472. "type": "caffe",
  473. "target": "ORION_extended_trainval.prototxt",
  474. "source": "https://raw.githubusercontent.com/lmb-freiburg/orion/master/net_archs/modelnet10/ORION_extended_trainval.prototxt",
  475. "format": "Caffe v2",
  476. "link": "https://github.com/lmb-freiburg/orion"
  477. },
  478. {
  479. "type": "caffe",
  480. "target": "panoramic_object_detection_deploy_crop.prototxt.prototxt",
  481. "source": "https://raw.githubusercontent.com/gdlg/panoramic-object-detection/master/examples/inference/deploy_crop.prototxt",
  482. "format": "Caffe v2",
  483. "link": "https://github.com/gdlg/panoramic-object-detection/tree/master/examples/inference"
  484. },
  485. {
  486. "type": "caffe",
  487. "target": "places205CNN_iter_300000_upgraded.caffemodel",
  488. "source": "http://places.csail.mit.edu/model/placesCNN_upgraded.tar.gz[places205CNN_iter_300000_upgraded.caffemodel]",
  489. "format": "Caffe v1",
  490. "link": "http://places.csail.mit.edu/downloadCNN.html"
  491. },
  492. {
  493. "type": "caffe",
  494. "target": "pose_iter_584000.caffemodel",
  495. "source": "http://posefs1.perception.cs.cmu.edu/OpenPose/models/pose/body_25/pose_iter_584000.caffemodel",
  496. "format": "Caffe v2",
  497. "link": "https://github.com/CMU-Perceptual-Computing-Lab/openpose"
  498. },
  499. {
  500. "type": "caffe",
  501. "target": "ResNet-18-deploy.prototxt",
  502. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/ResNet-18-deploy.prototxt",
  503. "format": "Caffe v2",
  504. "link": "https://github.com/cwlacewe/netscope"
  505. },
  506. {
  507. "type": "caffe",
  508. "target": "ResNet-34.prototxt",
  509. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/ResNet-34.prototxt",
  510. "format": "Caffe v2",
  511. "link": "https://github.com/cwlacewe/netscope"
  512. },
  513. {
  514. "type": "caffe",
  515. "target": "resnet-50.prototxt",
  516. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/resnet-50.prototxt",
  517. "format": "Caffe v2",
  518. "link": "https://github.com/cwlacewe/netscope"
  519. },
  520. {
  521. "type": "caffe",
  522. "target": "ResNet-50-model.caffemodel",
  523. "source": "https://deepdetect.com/models/resnet/ResNet-50-model.caffemodel",
  524. "format": "Caffe v2",
  525. "link": "https://deepdetect.com/models/resnet/"
  526. },
  527. {
  528. "type": "caffe",
  529. "target": "ResNet-50-deploy.prototxt",
  530. "source": "https://deepdetect.com/models/resnet/ResNet-50-deploy.prototxt",
  531. "format": "Caffe v2",
  532. "link": "https://deepdetect.com/models/resnet/"
  533. },
  534. {
  535. "type": "caffe",
  536. "target": "ResNet-50_merged.qconv.winograd.cwl.prototxt",
  537. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/ResNet-50_merged.qconv.winograd.cwl.prototxt",
  538. "link": "https://github.com/cwlacewe/netscope"
  539. },
  540. {
  541. "type": "caffe",
  542. "target": "ResNet-101-deploy.prototxt",
  543. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/ResNet-101-deploy.prototxt",
  544. "format": "Caffe v2",
  545. "link": "https://github.com/cwlacewe/netscope"
  546. },
  547. {
  548. "type": "caffe",
  549. "target": "ResNet-101-model.caffemodel",
  550. "source": "https://deepdetect.com/models/resnet/ResNet-101-model.caffemodel",
  551. "format": "Caffe v2",
  552. "link": "https://deepdetect.com/models/resnet/"
  553. },
  554. {
  555. "type": "caffe",
  556. "target": "ResNet-152-model.caffemodel",
  557. "source": "https://deepdetect.com/models/resnet/ResNet-152-model.caffemodel",
  558. "format": "Caffe v2",
  559. "link": "https://deepdetect.com/models/resnet/"
  560. },
  561. {
  562. "type": "caffe",
  563. "target": "ResNet-152-deploy.prototxt",
  564. "source": "https://deepdetect.com/models/resnet/ResNet-152-deploy.prototxt",
  565. "format": "Caffe v2",
  566. "link": "https://deepdetect.com/models/resnet/"
  567. },
  568. {
  569. "type": "caffe",
  570. "target": "resnet-152.prototxt",
  571. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/resnet-152.prototxt",
  572. "format": "Caffe v2",
  573. "link": "https://github.com/cwlacewe/netscope"
  574. },
  575. {
  576. "type": "caffe",
  577. "target": "s2s_vgg_pstream_allvocab_fac2_iter_16000.caffemodel",
  578. "source": "https://www.dropbox.com/s/raw/wn6k2oqurxzt6e2/s2s_vgg_pstream_allvocab_fac2_iter_16000.caffemodel",
  579. "error": "File format is not caffe.NetParameter (invalid wire type 6 at offset 124546861) in 's2s_vgg_pstream_allvocab_fac2_iter_16000.caffemodel'.",
  580. "format": "Caffe v1",
  581. "link": "https://github.com/truongthanhdat/Video2Text"
  582. },
  583. {
  584. "type": "caffe",
  585. "target": "seq2seq_train_ep7_tar.prototxt",
  586. "source": "https://raw.githubusercontent.com/jasjeetIM/Seq2Seq/master/models/s2s/train_ep7_tar.prototxt",
  587. "format": "Caffe v2",
  588. "link": "https://github.com/jasjeetIM/Seq2Seq"
  589. },
  590. {
  591. "type": "caffe",
  592. "target": "se_resnet_50_v1_deploy.prototxt",
  593. "source": "https://raw.githubusercontent.com/shicai/SENet-Caffe/master/se_resnet_50_v1_deploy.prototxt",
  594. "format": "Caffe v2",
  595. "link": "https://github.com/shicai/SENet-Caffe"
  596. },
  597. {
  598. "type": "caffe",
  599. "target": "segnet_basic_inference.prototxt",
  600. "source": "https://raw.githubusercontent.com/alexgkendall/SegNet-Tutorial/master/Models/segnet_basic_inference.prototxt",
  601. "format": "Caffe v2",
  602. "link": "https://github.com/alexgkendall/SegNet-Tutorial"
  603. },
  604. {
  605. "type": "caffe",
  606. "target": "shufflenet_1x_g3_train.prototxt",
  607. "source": "https://raw.githubusercontent.com/Ewenwan/ShuffleNet-2/master/shufflenet_1x_g3_train.prototxt",
  608. "format": "Caffe v2",
  609. "link": "https://github.com/Ewenwan/ShuffleNet-2"
  610. },
  611. {
  612. "type": "caffe",
  613. "target": "squeezenet_v1.1.caffemodel",
  614. "source": "https://raw.githubusercontent.com/DeepScale/SqueezeNet/master/SqueezeNet_v1.1/squeezenet_v1.1.caffemodel",
  615. "format": "Caffe v2",
  616. "link": "https://github.com/DeepScale/SqueezeNet"
  617. },
  618. {
  619. "type": "caffe",
  620. "target": "sq11b2a_e3.prototxt",
  621. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/sq11b2a_e3.prototxt",
  622. "format": "Caffe v2",
  623. "link": "https://github.com/cwlacewe/netscope"
  624. },
  625. {
  626. "type": "caffe",
  627. "target": "squeezenet.prototxt",
  628. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/squeezenet.prototxt",
  629. "format": "Caffe v2",
  630. "link": "https://github.com/cwlacewe/netscope"
  631. },
  632. {
  633. "type": "caffe",
  634. "target": "squeezenet_v11.prototxt",
  635. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/squeezenet_v11.prototxt",
  636. "format": "Caffe v2",
  637. "link": "https://github.com/cwlacewe/netscope"
  638. },
  639. {
  640. "type": "caffe",
  641. "target": "ssd_16nodes_512_batch_train.prototxt",
  642. "source": "https://raw.githubusercontent.com/intel/caffe/master/models/intel_optimized_models/multinode/ssd_16nodes_512_batch/train.prototxt",
  643. "format": "Caffe v2",
  644. "link": "https://github.com/intel/caffe"
  645. },
  646. {
  647. "type": "caffe",
  648. "target": "SSD300.prototxt",
  649. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/SSD300.prototxt",
  650. "format": "Caffe v2",
  651. "link": "https://github.com/cwlacewe/netscope"
  652. },
  653. {
  654. "type": "caffe",
  655. "target": "tsn_bn_inception_flow_deploy.prototxt",
  656. "source": "https://raw.githubusercontent.com/yjxiong/temporal-segment-networks/master/models/hmdb51/tsn_bn_inception_flow_deploy.prototxt",
  657. "format": "Caffe v2",
  658. "link": "https://github.com/yjxiong/temporal-segment-networks"
  659. },
  660. {
  661. "type": "caffe",
  662. "target": "vanillaCNN.caffemodel",
  663. "source": "https://raw.githubusercontent.com/ishay2b/VanillaCNN/master/ZOO/vanillaCNN.caffemodel",
  664. "format": "Caffe v2",
  665. "link": "https://gist.github.com/ishay2b/58248e5f3c3bf575ac40"
  666. },
  667. {
  668. "type": "caffe",
  669. "target": "vgg-16.prototxt",
  670. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/vgg-16.prototxt",
  671. "format": "Caffe v1",
  672. "link": "https://github.com/cwlacewe/netscope"
  673. },
  674. {
  675. "type": "caffe",
  676. "target": "VGG_CNN_M_2048_deploy.prototxt",
  677. "source": "https://raw.githubusercontent.com/natanielruiz/net-archive/master/vgg_cnn_m_2048/VGG_CNN_M_2048_deploy.prototxt",
  678. "format": "Caffe v1",
  679. "link": "https://github.com/natanielruiz/net-archive"
  680. },
  681. {
  682. "type": "caffe",
  683. "target": "VGG_VOC0712Plus_SSD_300x300_ft_deploy.prototxt",
  684. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/VGG_VOC0712Plus_SSD_300x300_ft_deploy.prototxt",
  685. "format": "Caffe v2",
  686. "link": "https://github.com/cwlacewe/netscope"
  687. },
  688. {
  689. "type": "caffe",
  690. "target": "VGG_ILSVRC_19_layers.caffemodel",
  691. "source": "http://www.robots.ox.ac.uk/~vgg/software/very_deep/caffe/VGG_ILSVRC_19_layers.caffemodel",
  692. "format": "Caffe v1"
  693. },
  694. {
  695. "type": "caffe",
  696. "target": "YOLO.prototxt",
  697. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/YOLO.prototxt",
  698. "format": "Caffe v2",
  699. "link": "https://github.com/cwlacewe/netscope"
  700. },
  701. {
  702. "type": "caffe",
  703. "target": "yolov3-tiny.prototxt",
  704. "source": "https://raw.githubusercontent.com/eric612/MobileNet-YOLO/master/models/darknet_yolov3/yolov3-tiny.prototxt",
  705. "format": "Caffe v2",
  706. "link": "https://github.com/eric612/MobileNet-YOLO/tree/master/models/darknet_yolov3"
  707. },
  708. {
  709. "type": "caffe",
  710. "target": "yolov3-spp.prototxt",
  711. "source": "https://raw.githubusercontent.com/eric612/MobileNet-YOLO/master/models/darknet_yolov3/yolov3-spp.prototxt",
  712. "format": "Caffe v2",
  713. "link": "https://github.com/eric612/MobileNet-YOLO/tree/master/models/darknet_yolov3"
  714. },
  715. {
  716. "type": "caffe",
  717. "target": "zynqnet.prototxt",
  718. "source": "https://raw.githubusercontent.com/cwlacewe/netscope/master/presets/zynqnet.prototxt",
  719. "format": "Caffe v2",
  720. "link": "https://github.com/cwlacewe/netscope"
  721. },
  722. {
  723. "type": "caffe2",
  724. "target": "bvlc_alexnet/predict_net.pb,bvlc_alexnet/init_net.pb",
  725. "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",
  726. "format": "Caffe2",
  727. "link": "https://github.com/caffe2/models"
  728. },
  729. {
  730. "type": "caffe2",
  731. "target": "bvlc_alexnet/init_net.pb",
  732. "source": "https://s3.amazonaws.com/download.caffe2.ai/models/bvlc_alexnet/init_net.pb",
  733. "format": "Caffe2",
  734. "link": "https://github.com/caffe2/models"
  735. },
  736. {
  737. "type": "caffe2",
  738. "target": "bvlc_alexnet/predict_net.pbtxt,bvlc_alexnet/init_net.pb",
  739. "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",
  740. "format": "Caffe2",
  741. "link": "https://github.com/caffe2/models"
  742. },
  743. {
  744. "type": "caffe2",
  745. "target": "bvlc_googlenet/predict_net.pb,bvlc_googlenet/init_net.pb",
  746. "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",
  747. "format": "Caffe2",
  748. "link": "https://github.com/caffe2/models"
  749. },
  750. {
  751. "type": "caffe2",
  752. "target": "bvlc_reference_caffenet/predict_net.pb,bvlc_reference_caffenet/init_net.pb",
  753. "source": "https://s3.amazonaws.com/download.caffe2.ai/models/bvlc_reference_caffenet/predict_net.pb,https://s3.amazonaws.com/download.caffe2.ai/models/bvlc_reference_caffenet/init_net.pb",
  754. "format": "Caffe2",
  755. "link": "https://github.com/caffe2/models"
  756. },
  757. {
  758. "type": "caffe2",
  759. "target": "bvlc_reference_rcnn_ilsvrc13/predict_net.pb,bvlc_reference_rcnn_ilsvrc13/init_net.pb",
  760. "source": "https://s3.amazonaws.com/download.caffe2.ai/models/bvlc_reference_rcnn_ilsvrc13/predict_net.pb,https://s3.amazonaws.com/download.caffe2.ai/models/bvlc_reference_rcnn_ilsvrc13/init_net.pb",
  761. "format": "Caffe2",
  762. "link": "https://github.com/caffe2/models"
  763. },
  764. {
  765. "type": "caffe2",
  766. "target": "densenet121/predict_net.pb,densenet121/init_net.pb",
  767. "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",
  768. "format": "Caffe2",
  769. "link": "https://github.com/caffe2/models"
  770. },
  771. {
  772. "type": "caffe2",
  773. "target": "e2e_faster_rcnn_R-50-C4_1x/predict_net.pb,e2e_faster_rcnn_R-50-C4_1x/init_net.pb",
  774. "source": "https://s3.amazonaws.com/download.caffe2.ai/models/detectron/e2e_faster_rcnn_R-50-C4_1x/predict_net.pb,https://s3.amazonaws.com/download.caffe2.ai/models/detectron/e2e_faster_rcnn_R-50-C4_1x/init_net.pb",
  775. "format": "Caffe2",
  776. "link": "https://github.com/caffe2/models"
  777. },
  778. {
  779. "type": "caffe2",
  780. "target": "generalized_rcnn/net.pbtxt",
  781. "source": "https://github.com/lutzroeder/netron/files/2801714/net.pbtxt.txt",
  782. "format": "Caffe2",
  783. "render": "skip",
  784. "link": "https://github.com/lutzroeder/netron/issues/223"
  785. },
  786. {
  787. "type": "caffe2",
  788. "target": "generalized_rcnn/predict_net.pbtxt",
  789. "source": "https://github.com/lutzroeder/netron/files/2802044/predict_net.pbtxt.txt",
  790. "format": "Caffe2",
  791. "link": "https://github.com/lutzroeder/netron/issues/223"
  792. },
  793. {
  794. "type": "caffe2",
  795. "target": "inception_v1/predict_net.pb,inception_v1/init_net.pb",
  796. "source": "https://s3.amazonaws.com/download.caffe2.ai/models/inception_v1/predict_net.pb,https://s3.amazonaws.com/download.caffe2.ai/models/inception_v1/init_net.pb",
  797. "format": "Caffe2",
  798. "link": "https://github.com/caffe2/models"
  799. },
  800. {
  801. "type": "caffe2",
  802. "target": "inception_v2/predict_net.pb,inception_v2/init_net.pb",
  803. "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",
  804. "format": "Caffe2",
  805. "link": "https://github.com/caffe2/models"
  806. },
  807. {
  808. "type": "caffe2",
  809. "target": "lenet/predict_net.pbtxt,lenet/init_net.pbtxt",
  810. "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",
  811. "format": "Caffe2",
  812. "link": "https://github.com/jolibrain/deepdetect/tree/master/templates/caffe2"
  813. },
  814. {
  815. "type": "caffe2",
  816. "target": "mask_rcnn_2go/model.pbtxt",
  817. "source": "https://raw.githubusercontent.com/caffe2/models/master/mask_rcnn_2go/model/fp32/model.pbtxt",
  818. "format": "Caffe2",
  819. "link": "https://github.com/lutzroeder/netron/issues/168"
  820. },
  821. {
  822. "type": "caffe2",
  823. "target": "mobilenet/predict_net_int8.pbtxt,mobilenet/init_net_int8.pbtxt",
  824. "source": "https://raw.githubusercontent.com/cuiyanx/dnnl-models/master/Image%20Classification/mobilenet/predict_net_int8.pbtxt,https://raw.githubusercontent.com/cuiyanx/dnnl-models/master/Image%20Classification/mobilenet/init_net_int8.pbtxt",
  825. "format": "Caffe2",
  826. "link": "https://github.com/lutzroeder/netron/issues/437"
  827. },
  828. {
  829. "type": "caffe2",
  830. "target": "mobilenet_v2/predict_net.pb,mobilenet_v2/init_net.pb",
  831. "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",
  832. "format": "Caffe2",
  833. "link": "https://github.com/caffe2/models"
  834. },
  835. {
  836. "type": "caffe2",
  837. "target": "mobilenet_v2/predict_net.pb",
  838. "source": "https://s3.amazonaws.com/download.caffe2.ai/models/mobilenet_v2/predict_net.pb",
  839. "format": "Caffe2",
  840. "link": "https://github.com/caffe2/models"
  841. },
  842. {
  843. "type": "caffe2",
  844. "target": "mobilenet_v2_quantized/predict_net.pb,mobilenet_v2_quantized/init_net.pb",
  845. "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",
  846. "format": "Caffe2",
  847. "link": "https://github.com/caffe2/models"
  848. },
  849. {
  850. "type": "caffe2",
  851. "target": "resnet50_quantized/resnet50_quantized_predict_net.pb,resnet50_quantized/resnet50_quantized_init_net.pb",
  852. "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",
  853. "format": "Caffe2",
  854. "link": "https://github.com/caffe2/models/tree/master/resnet50_quantized"
  855. },
  856. {
  857. "type": "caffe2",
  858. "target": "onnx_while/predict_net.pb,onnx_while/inits_net.pb",
  859. "source": "https://github.com/lutzroeder/netron/files/2522635/onnxwhile.zip[predict_net.pb,init_net.pb]",
  860. "format": "Caffe2",
  861. "link": "https://github.com/lutzroeder/netron/issues/168"
  862. },
  863. {
  864. "type": "caffe2",
  865. "target": "ops/ops.pbtxt",
  866. "source": "https://raw.githubusercontent.com/tensorflow/tensorflow/master/tensorflow/core/ops/ops.pbtxt",
  867. "error": "Unsupported file content for extension '.pbtxt' in 'ops.pbtxt'.",
  868. "link": "https://github.com/tensorflow/tensorflow/blob/master/tensorflow/core/ops/ops.pbtxt"
  869. },
  870. {
  871. "type": "caffe2",
  872. "target": "resnet50/predict_net.pb,resnet50/init_net.pb",
  873. "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",
  874. "format": "Caffe2",
  875. "link": "https://github.com/caffe2/models"
  876. },
  877. {
  878. "type": "caffe2",
  879. "target": "squeezenet/squeezenet.pb,squeezenet/init_net.pb",
  880. "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",
  881. "format": "Caffe2",
  882. "link": "https://github.com/caffe2/models"
  883. },
  884. {
  885. "type": "caffe2",
  886. "target": "vgg19/predict_net.pb,vgg19/init_net.pb",
  887. "source": "https://s3.amazonaws.com/download.caffe2.ai/models/vgg19/predict_net.pb,https://s3.amazonaws.com/download.caffe2.ai/models/vgg19/init_net.pb",
  888. "format": "Caffe2",
  889. "link": "https://github.com/caffe2/models"
  890. },
  891. {
  892. "type": "caffe2",
  893. "target": "zfnet512/predict_net.pb,zfnet512/init_net.pb",
  894. "source": "https://s3.amazonaws.com/download.caffe2.ai/models/zfnet512/predict_net.pb,https://s3.amazonaws.com/download.caffe2.ai/models/zfnet512/init_net.pb",
  895. "format": "Caffe2",
  896. "link": "https://github.com/caffe2/models"
  897. },
  898. {
  899. "type": "chainer",
  900. "target": "generator_model.h5",
  901. "source": "https://raw.githubusercontent.com/mattya/chainer-DCGAN/master/generator_model.h5",
  902. "format": "Chainer HDF5",
  903. "link": "https://github.com/mattya/chainer-DCGAN"
  904. },
  905. {
  906. "type": "chainer",
  907. "target": "mlp.h5",
  908. "source": "https://github.com/lutzroeder/netron/files/3666244/mlp.zip[mlp.h5]",
  909. "format": "Chainer HDF5",
  910. "link": "https://github.com/lutzroeder/netron/issues/337"
  911. },
  912. {
  913. "type": "chainer",
  914. "target": "mlp.npz",
  915. "source": "https://github.com/lutzroeder/netron/files/3666244/mlp.zip[mlp.npz]",
  916. "format": "Chainer NumPy",
  917. "link": "https://github.com/lutzroeder/netron/issues/337"
  918. },
  919. {
  920. "type": "cntk",
  921. "target": "v1/01_OneHidden.dnn",
  922. "source": "https://raw.githubusercontent.com/Microsoft/CNTK/master/Tests/UnitTests/NetworkTests/Models/01_OneHidden.dnn",
  923. "format": "CNTK v1.18",
  924. "link": "https://github.com/Microsoft/CNTK"
  925. },
  926. {
  927. "type": "cntk",
  928. "target": "v1/AlexNet.model",
  929. "source": "https://www.cntk.ai/Models/AlexNet/AlexNet.model",
  930. "format": "CNTK v1.14"
  931. },
  932. {
  933. "type": "cntk",
  934. "target": "v1/AlexNetBS.model",
  935. "source": "https://www.cntk.ai/Models/AlexNet/AlexNetBS.model",
  936. "format": "CNTK v1.15"
  937. },
  938. {
  939. "type": "cntk",
  940. "target": "v1/cifar10.pretrained.cmf",
  941. "source": "https://raw.githubusercontent.com/Microsoft/CNTK/master/Tutorials/ImageHandsOn/cifar10.pretrained.cmf",
  942. "format": "CNTK v1.14",
  943. "link": "https://github.com/Microsoft/CNTK"
  944. },
  945. {
  946. "type": "cntk",
  947. "target": "v1/cifar10.ResNet.cmf",
  948. "source": "https://raw.githubusercontent.com/Microsoft/CNTK/master/Tutorials/ImageHandsOn/cifar10.ResNet.cmf",
  949. "format": "CNTK v1.10",
  950. "link": "https://github.com/Microsoft/CNTK"
  951. },
  952. {
  953. "type": "cntk",
  954. "target": "v1/cntkSpeechFF.dnn",
  955. "source": "https://github.com/lutzroeder/netron/files/3243442/cntkSpeechFF.dnn.zip[cntkSpeechFF.dnn]",
  956. "format": "CNTK v1.31",
  957. "link": "https://github.com/lutzroeder/netron/issues/153"
  958. },
  959. {
  960. "type": "cntk",
  961. "target": "v1/ResNet_18.model",
  962. "source": "https://www.cntk.ai/Models/ResNet/ResNet_18.model",
  963. "format": "CNTK v1.17"
  964. },
  965. {
  966. "type": "cntk",
  967. "target": "v1/Fast-RCNN.model",
  968. "source": "https://www.cntk.ai/Models/FRCN_Pascal/Fast-RCNN.model",
  969. "format": "CNTK v1.15",
  970. "link": "https://github.com/Microsoft/CNTK/blob/7c838d3b6c448004e5a06aa00c984a629f880416/PretrainedModels/download_model.py"
  971. },
  972. {
  973. "type": "cntk",
  974. "target": "v1/Fast-RCNN_grocery100.model",
  975. "source": "https://www.cntk.ai/Models/FRCN_Grocery/Fast-RCNN_grocery100.model",
  976. "format": "CNTK v1.15",
  977. "link": "https://github.com/Microsoft/CNTK/blob/7c838d3b6c448004e5a06aa00c984a629f880416/PretrainedModels/download_model.py"
  978. },
  979. {
  980. "type": "cntk",
  981. "target": "v1/ResNet20_CIFAR10_DataAug.dnn",
  982. "source": "https://raw.githubusercontent.com/Microsoft/CNTK/master/Tests/UnitTests/NetworkTests/Models/ResNet20_CIFAR10_DataAug.dnn",
  983. "format": "CNTK v1.18",
  984. "link": "https://github.com/Microsoft/CNTK"
  985. },
  986. {
  987. "type": "cntk",
  988. "target": "v1/slu.forward.backward.cmf",
  989. "source": "https://raw.githubusercontent.com/Microsoft/CNTK/master/Tutorials/SLUHandsOn/slu.forward.backward.cmf",
  990. "format": "CNTK v1.14",
  991. "link": "https://github.com/Microsoft/CNTK"
  992. },
  993. {
  994. "type": "cntk",
  995. "target": "v1/slu.forward.cmf",
  996. "source": "https://raw.githubusercontent.com/Microsoft/CNTK/master/Tutorials/SLUHandsOn/slu.forward.cmf",
  997. "format": "CNTK v1.14",
  998. "link": "https://github.com/Microsoft/CNTK"
  999. },
  1000. {
  1001. "type": "cntk",
  1002. "target": "v1/slu.forward.nobn.cmf",
  1003. "source": "https://raw.githubusercontent.com/Microsoft/CNTK/master/Tutorials/SLUHandsOn/slu.forward.nobn.cmf",
  1004. "format": "CNTK v1.14",
  1005. "link": "https://github.com/Microsoft/CNTK"
  1006. },
  1007. {
  1008. "type": "cntk",
  1009. "target": "v1/slu.forward.lookahead.cmf",
  1010. "source": "https://raw.githubusercontent.com/Microsoft/CNTK/master/Tutorials/SLUHandsOn/slu.forward.lookahead.cmf",
  1011. "format": "CNTK v1.14",
  1012. "link": "https://github.com/Microsoft/CNTK"
  1013. },
  1014. {
  1015. "type": "cntk",
  1016. "target": "v2/AlexNet_ImageNet_Caffe.model",
  1017. "source": "https://www.cntk.ai/Models/Caffe_Converted/AlexNet_ImageNet_Caffe.model",
  1018. "format": "CNTK v2",
  1019. "link": "https://github.com/Microsoft/CNTK/blob/master/PretrainedModels/download_model.py"
  1020. },
  1021. {
  1022. "type": "cntk",
  1023. "target": "v2/AlexNet_ImageNet_CNTK.model",
  1024. "source": "https://www.cntk.ai/Models/CNTK_Pretrained/AlexNet_ImageNet_CNTK.model"
  1025. },
  1026. {
  1027. "type": "cntk",
  1028. "target": "v2/Bean.cntk",
  1029. "source": "https://media.githubusercontent.com/media/Microsoft/ELL-models/master/models/ILSVRC2012/Bean/Bean.cntk.zip[Bean.cntk]",
  1030. "format": "CNTK v2",
  1031. "link": "https://github.com/Microsoft/ELL-models"
  1032. },
  1033. {
  1034. "type": "cntk",
  1035. "target": "v2/BNInception_ImageNet_Caffe.model",
  1036. "source": "https://www.cntk.ai/Models/Caffe_Converted/BNInception_ImageNet_Caffe.model",
  1037. "format": "CNTK v2",
  1038. "link": "https://github.com/Microsoft/CNTK/blob/master/PretrainedModels/download_model.py"
  1039. },
  1040. {
  1041. "type": "cntk",
  1042. "target": "v2/Chalta.model",
  1043. "source": "https://media.githubusercontent.com/media/Microsoft/ELL-models/master/models/ILSVRC2012/Chalta/Chalta.cntk.zip[Chalta.cntk]",
  1044. "format": "CNTK v2",
  1045. "link": "https://github.com/Microsoft/ELL-models"
  1046. },
  1047. {
  1048. "type": "cntk",
  1049. "target": "v2/d_I160x160x3CMCMCMCMCMCMC1AS.model",
  1050. "source": "https://media.githubusercontent.com/media/Microsoft/ELL-models/master/models/ILSVRC2012/d_I160x160x3CMCMCMCMCMCMC1AS/d_I160x160x3CMCMCMCMCMCMC1AS.cntk.zip[d_I160x160x3CMCMCMCMCMCMC1AS.cntk]",
  1051. "format": "CNTK v2",
  1052. "link": "https://github.com/Microsoft/ELL-models/tree/master/models/ILSVRC2012/d_I160x160x3CMCMCMCMCMCMC1AS"
  1053. },
  1054. {
  1055. "type": "cntk",
  1056. "target": "v2/DRNN.model",
  1057. "source": "https://www.cntk.ai/Models/SuperResolution/DRNN.model",
  1058. "format": "CNTK v2",
  1059. "link": "https://cntk.ai/pythondocs/CNTK_302A_Evaluation_of_Pretrained_Super-resolution_Models.html"
  1060. },
  1061. {
  1062. "type": "cntk",
  1063. "target": "v2/initial_policy_network.dnn",
  1064. "source": "https://raw.githubusercontent.com/Microsoft/CNTK/master/bindings/python/cntk/contrib/deeprl/tests/data/initial_policy_network.dnn",
  1065. "format": "CNTK v2",
  1066. "link": "https://github.com/Microsoft/CNTK"
  1067. },
  1068. {
  1069. "type": "cntk",
  1070. "target": "v2/InceptionV3_ImageNet_CNTK.model",
  1071. "source": "https://www.cntk.ai/Models/CNTK_Pretrained/InceptionV3_ImageNet_CNTK.model",
  1072. "format": "CNTK v2",
  1073. "link": "https://github.com/Microsoft/MMdnn/blob/master/mmdnn/conversion/examples/cntk/extract_model.py"
  1074. },
  1075. {
  1076. "type": "cntk",
  1077. "target": "v2/mobilenetv2-1.0.dnn",
  1078. "source": "https://s3.amazonaws.com/mxnet-model-server/onnx-mobilenet/mobilenetv2-1.0.model",
  1079. "error": "Unsupported file content for extension '.dnn' in 'mobilenetv2-1.0.dnn'.",
  1080. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  1081. },
  1082. {
  1083. "type": "cntk",
  1084. "target": "v2/ResNet18_ImageNet_CNTK.model",
  1085. "source": "https://www.cntk.ai/Models/CNTK_Pretrained/ResNet18_ImageNet_CNTK.model",
  1086. "format": "CNTK v2",
  1087. "link": "https://github.com/Microsoft/CNTK/blob/master/PretrainedModels/Image.md"
  1088. },
  1089. {
  1090. "type": "cntk",
  1091. "target": "v2/ResNet20_CIFAR10_CNTK.model",
  1092. "source": "https://www.cntk.ai/Models/CNTK_Pretrained/ResNet20_CIFAR10_CNTK.model",
  1093. "format": "CNTK v2",
  1094. "link": "https://github.com/Microsoft/CNTK/blob/master/PretrainedModels/Image.md"
  1095. },
  1096. {
  1097. "type": "cntk",
  1098. "target": "v2/ResNet34_ImageNet_CNTK.model",
  1099. "source": "https://www.cntk.ai/Models/CNTK_Pretrained/ResNet34_ImageNet_CNTK.model"
  1100. },
  1101. {
  1102. "type": "cntk",
  1103. "target": "v2/ResNet50_ImageNet_CNTK.model",
  1104. "source": "https://www.cntk.ai/Models/CNTK_Pretrained/ResNet50_ImageNet_CNTK.model"
  1105. },
  1106. {
  1107. "type": "cntk",
  1108. "target": "v2/ResNet110_CIFAR10_CNTK.model",
  1109. "source": "https://www.cntk.ai/Models/CNTK_Pretrained/ResNet110_CIFAR10_CNTK.model",
  1110. "format": "CNTK v2",
  1111. "link": "https://github.com/Microsoft/CNTK/blob/master/PretrainedModels/Image.md"
  1112. },
  1113. {
  1114. "type": "cntk",
  1115. "target": "v2/ResNet101_ImageNet_CNTK.model",
  1116. "source": "https://www.cntk.ai/Models/CNTK_Pretrained/ResNet101_ImageNet_CNTK.model",
  1117. "format": "CNTK v2"
  1118. },
  1119. {
  1120. "type": "cntk",
  1121. "target": "v2/ResNet101_ImageNet_Caffe.model",
  1122. "source": "https://www.cntk.ai/Models/Caffe_Converted/ResNet101_ImageNet_Caffe.model",
  1123. "format": "CNTK v2",
  1124. "link": "https://github.com/Microsoft/CNTK/blob/master/PretrainedModels/Image.md"
  1125. },
  1126. {
  1127. "type": "cntk",
  1128. "target": "v2/ResNet152_ImageNet_Caffe.model",
  1129. "source": "https://www.cntk.ai/Models/Caffe_Converted/ResNet152_ImageNet_Caffe.model",
  1130. "format": "CNTK v2",
  1131. "link": "https://github.com/Microsoft/CNTK/blob/master/PretrainedModels/Image.md"
  1132. },
  1133. {
  1134. "type": "cntk",
  1135. "target": "v2/ResNet152_ImageNet_CNTK.model",
  1136. "source": "https://www.cntk.ai/Models/CNTK_Pretrained/ResNet152_ImageNet_CNTK.model"
  1137. },
  1138. {
  1139. "type": "cntk",
  1140. "target": "v2/SRGAN.model",
  1141. "source": "https://www.cntk.ai/Models/SuperResolution/SRGAN.model",
  1142. "format": "CNTK v2",
  1143. "link": "https://cntk.ai/pythondocs/CNTK_302A_Evaluation_of_Pretrained_Super-resolution_Models.html"
  1144. },
  1145. {
  1146. "type": "cntk",
  1147. "target": "v2/SRResNet.model",
  1148. "source": "https://www.cntk.ai/Models/SuperResolution/SRResNet.model",
  1149. "format": "CNTK v2",
  1150. "link": "https://cntk.ai/pythondocs/CNTK_302A_Evaluation_of_Pretrained_Super-resolution_Models.html"
  1151. },
  1152. {
  1153. "type": "cntk",
  1154. "target": "v2/tutorial_103b_mnist.model",
  1155. "source": "https://github.com/lutzroeder/netron/files/2591620/tutorial_models.zip[tutorial_103b_mnist.model]",
  1156. "format": "CNTK v2",
  1157. "link": "https://github.com/lutzroeder/netron/issues/153"
  1158. },
  1159. {
  1160. "type": "cntk",
  1161. "target": "v2/tutorial_103c_mnist.model",
  1162. "source": "https://github.com/lutzroeder/netron/files/2591620/tutorial_models.zip[tutorial_103c_mnist.model]",
  1163. "format": "CNTK v2",
  1164. "link": "https://github.com/lutzroeder/netron/issues/153"
  1165. },
  1166. {
  1167. "type": "cntk",
  1168. "target": "v2/tutorial_103d_mnist.model",
  1169. "source": "https://github.com/lutzroeder/netron/files/2591620/tutorial_models.zip[tutorial_103d_mnist.model]",
  1170. "format": "CNTK v2",
  1171. "link": "https://github.com/lutzroeder/netron/issues/153"
  1172. },
  1173. {
  1174. "type": "cntk",
  1175. "target": "v2/tutorial_106a_lstm.model",
  1176. "source": "https://github.com/lutzroeder/netron/files/2591620/tutorial_models.zip[tutorial_106a_lstm.model]",
  1177. "format": "CNTK v2",
  1178. "link": "https://github.com/lutzroeder/netron/issues/153"
  1179. },
  1180. {
  1181. "type": "cntk",
  1182. "target": "v2/VGG16_ImageNet_Caffe.model",
  1183. "source": "https://www.cntk.ai/Models/Caffe_Converted/VGG16_ImageNet_Caffe.model"
  1184. },
  1185. {
  1186. "type": "cntk",
  1187. "target": "v2/VGG19_ImageNet_Caffe.model",
  1188. "source": "https://www.cntk.ai/Models/Caffe_Converted/VGG19_ImageNet_Caffe.model"
  1189. },
  1190. {
  1191. "type": "cntk",
  1192. "target": "v2/VDSR.model",
  1193. "source": "https://www.cntk.ai/Models/SuperResolution/VDSR.model",
  1194. "format": "CNTK v2",
  1195. "link": "https://cntk.ai/pythondocs/CNTK_302A_Evaluation_of_Pretrained_Super-resolution_Models.html"
  1196. },
  1197. {
  1198. "type": "coreml",
  1199. "target": "BERTSQUADFP16.mlmodel",
  1200. "source": "https://docs-assets.developer.apple.com/coreml/models/Text/QuestionAnswering/BERT_SQUAD/BERTSQUADFP16.mlmodel",
  1201. "format": "Core ML v4",
  1202. "link": "https://developer.apple.com/machine-learning/models"
  1203. },
  1204. {
  1205. "type": "coreml",
  1206. "target": "CarClassifier.mlmodel",
  1207. "source": "https://raw.githubusercontent.com/PZ1Sharer05/CreateMLmodels/master/CarClassifier.mlmodel",
  1208. "format": "Core ML v1",
  1209. "link": "https://github.com/PZ1Sharer05/CreateMLmodels"
  1210. },
  1211. {
  1212. "type": "coreml",
  1213. "target": "DocumentClassification.mlmodel",
  1214. "source": "https://raw.githubusercontent.com/toddkramer/DocumentClassifier/master/Sources/DocumentClassification.mlmodel",
  1215. "format": "Core ML v1",
  1216. "link": "https://github.com/toddkramer/DocumentClassifier"
  1217. },
  1218. {
  1219. "type": "coreml",
  1220. "target": "DeepLabV3.mlmodel",
  1221. "source": "https://docs-assets.developer.apple.com/coreml/models/Image/ImageSegmentation/DeepLabV3/DeepLabV3.mlmodel",
  1222. "format": "Core ML v3",
  1223. "link": "https://developer.apple.com/machine-learning/models"
  1224. },
  1225. {
  1226. "type": "coreml",
  1227. "target": "EnvSceneClassification.mlmodel",
  1228. "source": "https://raw.githubusercontent.com/anujdutt9/iOS-Audio-Classification/cdf5b72dc351a83168369d0afbd0eeba9ecae448/RealTimeSoundClassifier/RealTimeSoundClassifier/EnvSceneClassification.mlmodel",
  1229. "format": "Core ML v3",
  1230. "link": "https://github.com/anujdutt9/iOS-Audio-Classification"
  1231. },
  1232. {
  1233. "type": "coreml",
  1234. "target": "coreml_invalid_file.mlmodel",
  1235. "source": "https://github.com/lutzroeder/netron/files/3219681/coreml_invalid_file.mlmodel.zip",
  1236. "error": "File format is not coreml.Model (invalid wire type 7 at offset 13) in 'coreml_invalid_file.mlmodel'.",
  1237. "format": "Core ML v1",
  1238. "link": "https://github.com/lutzroeder/netron/issues/193"
  1239. },
  1240. {
  1241. "type": "coreml",
  1242. "target": "Exermote.mlmodel",
  1243. "source": "https://raw.githubusercontent.com/Lausbert/Exermote/master/ExermoteInference/ExermoteCoreML/ExermoteCoreML/Model/Exermote.mlmodel",
  1244. "format": "Core ML v1"
  1245. },
  1246. {
  1247. "type": "coreml",
  1248. "target": "faces_model.mlmodel",
  1249. "source": "https://github.com/NovaTecConsulting/FaceRecognition-in-ARKit/files/1526806/faces_model.mlmodel.zip[faces_model.mlmodel]",
  1250. "format": "Core ML v1",
  1251. "link": "https://github.com/NovaTecConsulting/FaceRecognition-in-ARKit/issues/3"
  1252. },
  1253. {
  1254. "type": "coreml",
  1255. "target": "FCRNFP16.mlmodel",
  1256. "source": "https://docs-assets.developer.apple.com/coreml/models/Image/DepthEstimation/FCRN/FCRNFP16.mlmodel",
  1257. "format": "Core ML v2",
  1258. "link": "https://developer.apple.com/machine-learning/models"
  1259. },
  1260. {
  1261. "type": "coreml",
  1262. "target": "float16.mlmodel",
  1263. "source": "https://github.com/lutzroeder/netron/files/2382815/model.zip[model.mlmodel]",
  1264. "format": "Core ML v2",
  1265. "link": "https://github.com/lutzroeder/netron/issues/149"
  1266. },
  1267. {
  1268. "type": "coreml",
  1269. "target": "FNS-Candy.mlmodel",
  1270. "source": "https://raw.githubusercontent.com/ileafsolutions/StyleArt/master/StyleArt/CoreMLModels/FNS-Candy.mlmodel",
  1271. "link": "https://github.com/ileafsolutions/StyleArt"
  1272. },
  1273. {
  1274. "type": "coreml",
  1275. "target": "food.mlmodel",
  1276. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food.mlmodel",
  1277. "format": "Core ML v1",
  1278. "link": "https://github.com/kingreza/quantization"
  1279. },
  1280. {
  1281. "type": "coreml",
  1282. "target": "food_kmeans_1.mlmodel",
  1283. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_kmeans_1.mlmodel",
  1284. "format": "Core ML v3",
  1285. "link": "https://github.com/kingreza/quantization"
  1286. },
  1287. {
  1288. "type": "coreml",
  1289. "target": "food_kmeans_2.mlmodel",
  1290. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_kmeans_2.mlmodel",
  1291. "format": "Core ML v3",
  1292. "link": "https://github.com/kingreza/quantization"
  1293. },
  1294. {
  1295. "type": "coreml",
  1296. "target": "food_kmeans_3.mlmodel",
  1297. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_kmeans_3.mlmodel",
  1298. "format": "Core ML v3",
  1299. "link": "https://github.com/kingreza/quantization"
  1300. },
  1301. {
  1302. "type": "coreml",
  1303. "target": "food_kmeans_4.mlmodel",
  1304. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_kmeans_4.mlmodel",
  1305. "format": "Core ML v3",
  1306. "link": "https://github.com/kingreza/quantization"
  1307. },
  1308. {
  1309. "type": "coreml",
  1310. "target": "food_kmeans_5.mlmodel",
  1311. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_kmeans_5.mlmodel",
  1312. "format": "Core ML v3",
  1313. "link": "https://github.com/kingreza/quantization"
  1314. },
  1315. {
  1316. "type": "coreml",
  1317. "target": "food_kmeans_6.mlmodel",
  1318. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_kmeans_6.mlmodel",
  1319. "format": "Core ML v3",
  1320. "link": "https://github.com/kingreza/quantization"
  1321. },
  1322. {
  1323. "type": "coreml",
  1324. "target": "food_kmeans_7.mlmodel",
  1325. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_kmeans_7.mlmodel",
  1326. "format": "Core ML v3",
  1327. "link": "https://github.com/kingreza/quantization"
  1328. },
  1329. {
  1330. "type": "coreml",
  1331. "target": "food_kmeans_8.mlmodel",
  1332. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_kmeans_8.mlmodel",
  1333. "format": "Core ML v3",
  1334. "link": "https://github.com/kingreza/quantization"
  1335. },
  1336. {
  1337. "type": "coreml",
  1338. "target": "food_kmeans_16.mlmodel",
  1339. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_kmeans_16.mlmodel",
  1340. "format": "Core ML v2",
  1341. "link": "https://github.com/kingreza/quantization"
  1342. },
  1343. {
  1344. "type": "coreml",
  1345. "target": "food_linear_1.mlmodel",
  1346. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_1.mlmodel",
  1347. "format": "Core ML v3",
  1348. "link": "https://github.com/kingreza/quantization"
  1349. },
  1350. {
  1351. "type": "coreml",
  1352. "target": "food_linear_2.mlmodel",
  1353. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_2.mlmodel",
  1354. "format": "Core ML v3",
  1355. "link": "https://github.com/kingreza/quantization"
  1356. },
  1357. {
  1358. "type": "coreml",
  1359. "target": "food_linear_3.mlmodel",
  1360. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_3.mlmodel",
  1361. "format": "Core ML v3",
  1362. "link": "https://github.com/kingreza/quantization"
  1363. },
  1364. {
  1365. "type": "coreml",
  1366. "target": "food_linear_4.mlmodel",
  1367. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_4.mlmodel",
  1368. "format": "Core ML v3",
  1369. "link": "https://github.com/kingreza/quantization"
  1370. },
  1371. {
  1372. "type": "coreml",
  1373. "target": "food_linear_5.mlmodel",
  1374. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_5.mlmodel",
  1375. "format": "Core ML v3",
  1376. "link": "https://github.com/kingreza/quantization"
  1377. },
  1378. {
  1379. "type": "coreml",
  1380. "target": "food_linear_6.mlmodel",
  1381. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_6.mlmodel",
  1382. "format": "Core ML v3",
  1383. "link": "https://github.com/kingreza/quantization"
  1384. },
  1385. {
  1386. "type": "coreml",
  1387. "target": "food_linear_7.mlmodel",
  1388. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_7.mlmodel",
  1389. "format": "Core ML v3",
  1390. "link": "https://github.com/kingreza/quantization"
  1391. },
  1392. {
  1393. "type": "coreml",
  1394. "target": "food_linear_8.mlmodel",
  1395. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_8.mlmodel",
  1396. "format": "Core ML v3",
  1397. "link": "https://github.com/kingreza/quantization"
  1398. },
  1399. {
  1400. "type": "coreml",
  1401. "target": "food_linear_16.mlmodel",
  1402. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_16.mlmodel",
  1403. "format": "Core ML v2",
  1404. "link": "https://github.com/kingreza/quantization"
  1405. },
  1406. {
  1407. "type": "coreml",
  1408. "target": "food_linear_lut_1.mlmodel",
  1409. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_lut_1.mlmodel",
  1410. "format": "Core ML v3",
  1411. "link": "https://github.com/kingreza/quantization"
  1412. },
  1413. {
  1414. "type": "coreml",
  1415. "target": "food_linear_lut_2.mlmodel",
  1416. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_lut_2.mlmodel",
  1417. "format": "Core ML v3",
  1418. "link": "https://github.com/kingreza/quantization"
  1419. },
  1420. {
  1421. "type": "coreml",
  1422. "target": "food_linear_lut_3.mlmodel",
  1423. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_lut_3.mlmodel",
  1424. "format": "Core ML v3",
  1425. "link": "https://github.com/kingreza/quantization"
  1426. },
  1427. {
  1428. "type": "coreml",
  1429. "target": "food_linear_lut_4.mlmodel",
  1430. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_lut_4.mlmodel",
  1431. "format": "Core ML v3",
  1432. "link": "https://github.com/kingreza/quantization"
  1433. },
  1434. {
  1435. "type": "coreml",
  1436. "target": "food_linear_lut_5.mlmodel",
  1437. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_lut_5.mlmodel",
  1438. "format": "Core ML v3",
  1439. "link": "https://github.com/kingreza/quantization"
  1440. },
  1441. {
  1442. "type": "coreml",
  1443. "target": "food_linear_lut_6.mlmodel",
  1444. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_lut_6.mlmodel",
  1445. "format": "Core ML v3",
  1446. "link": "https://github.com/kingreza/quantization"
  1447. },
  1448. {
  1449. "type": "coreml",
  1450. "target": "food_linear_lut_7.mlmodel",
  1451. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_lut_7.mlmodel",
  1452. "format": "Core ML v3",
  1453. "link": "https://github.com/kingreza/quantization"
  1454. },
  1455. {
  1456. "type": "coreml",
  1457. "target": "food_linear_lut_8.mlmodel",
  1458. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_lut_8.mlmodel",
  1459. "format": "Core ML v3",
  1460. "link": "https://github.com/kingreza/quantization"
  1461. },
  1462. {
  1463. "type": "coreml",
  1464. "target": "food_linear_lut_16.mlmodel",
  1465. "source": "https://raw.githubusercontent.com/kingreza/quantization/master/food_linear_lut_16.mlmodel",
  1466. "format": "Core ML v2",
  1467. "link": "https://github.com/kingreza/quantization"
  1468. },
  1469. {
  1470. "type": "coreml",
  1471. "target": "GoogLeNetPlaces.mlmodel",
  1472. "source": "https://docs-assets.developer.apple.com/coreml/models/GoogLeNetPlaces.mlmodel"
  1473. },
  1474. {
  1475. "type": "coreml",
  1476. "target": "HED_so.mlmodel",
  1477. "source": "https://raw.githubusercontent.com/s1ddok/HED-CoreML/master/HED-CoreML/Models/HED_so.mlmodel",
  1478. "link": "https://github.com/s1ddok/HED-CoreML"
  1479. },
  1480. {
  1481. "type": "coreml",
  1482. "target": "HED_so3.mlmodel",
  1483. "source": "https://raw.githubusercontent.com/s1ddok/HED-CoreML/master/HED-CoreML/Models/HED_so3.mlmodel",
  1484. "link": "https://github.com/s1ddok/HED-CoreML"
  1485. },
  1486. {
  1487. "type": "coreml",
  1488. "target": "HED_fuse.mlmodel",
  1489. "source": "https://raw.githubusercontent.com/s1ddok/HED-CoreML/master/HED-CoreML/Models/HED_fuse.mlmodel",
  1490. "link": "https://github.com/s1ddok/HED-CoreML"
  1491. },
  1492. {
  1493. "type": "coreml",
  1494. "target": "imdb_lstm.mlmodel",
  1495. "source": "https://github.com/lutzroeder/netron/files/2591614/imdb_lstm.mlmodel.zip[imdb_lstm.mlmodel]",
  1496. "format": "Core ML v1",
  1497. "link": "https://github.com/lutzroeder/netron/issues/149"
  1498. },
  1499. {
  1500. "type": "coreml",
  1501. "target": "imdb_bidirectional_lstm.mlmodel",
  1502. "source": "https://github.com/lutzroeder/netron/files/2591615/imdb_bidirectional_lstm.mlmodel.zip[imdb_bidirectional_lstm.mlmodel]",
  1503. "format": "Core ML v1",
  1504. "link": "https://github.com/lutzroeder/netron/issues/149"
  1505. },
  1506. {
  1507. "type": "coreml",
  1508. "target": "Inceptionv3.mlmodel",
  1509. "source": "https://docs-assets.developer.apple.com/coreml/models/Inceptionv3.mlmodel"
  1510. },
  1511. {
  1512. "type": "coreml",
  1513. "target": "iris.mlmodel",
  1514. "source": "https://raw.githubusercontent.com/gavi/Iris/master/Iris/iris.mlmodel",
  1515. "format": "Core ML v1",
  1516. "link": "https://github.com/gavi/Iris"
  1517. },
  1518. {
  1519. "type": "coreml",
  1520. "target": "MessageClassifier.mlmodel",
  1521. "source": "https://raw.githubusercontent.com/llSourcell/A_guide_to_coreML/master/MessageClassifier.mlmodel",
  1522. "link": "https://github.com/llSourcell/A_guide_to_coreML"
  1523. },
  1524. {
  1525. "type": "coreml",
  1526. "target": "MNIST.mlmodel",
  1527. "source": "https://github.com/ph1ps/MNIST-CoreML/raw/master/MNISTPrediction/MNIST.mlmodel",
  1528. "link": "https://github.com/SwiftBrain/awesome-CoreML-models"
  1529. },
  1530. {
  1531. "type": "coreml",
  1532. "target": "MNISTClassifier.mlmodel",
  1533. "source": "https://docs-assets.developer.apple.com/coreml/models/Image/DrawingClassification/MNISTClassifier/MNISTClassifier.mlmodel",
  1534. "format": "Core ML v1",
  1535. "link": "https://developer.apple.com/machine-learning/models"
  1536. },
  1537. {
  1538. "type": "coreml",
  1539. "target": "MobileNet.mlmodel",
  1540. "source": "https://docs-assets.developer.apple.com/coreml/models/MobileNet.mlmodel"
  1541. },
  1542. {
  1543. "type": "coreml",
  1544. "target": "mobilenet_v2_1.4_224.mlmodel",
  1545. "source": "https://github.com/tf-coreml/tf-coreml/files/2575260/mobilenet_v2_1.4_224.mlmodel.zip[mobilenet_v2_1.4_224.mlmodel]",
  1546. "format": "Core ML v1",
  1547. "link": "https://github.com/tf-coreml/tf-coreml/issues/252"
  1548. },
  1549. {
  1550. "type": "coreml",
  1551. "target": "MovieRecommender.mlmodel",
  1552. "source": "https://raw.githubusercontent.com/anupamchugh/iowncode/master/CoreMLRecommender/CoreMLRecommender/MovieRecommender.mlmodel",
  1553. "format": "Core ML v4",
  1554. "link": "https://github.com/anupamchugh/iowncode/tree/master/CoreMLRecommender"
  1555. },
  1556. {
  1557. "type": "coreml",
  1558. "target": "NamesDT.mlmodel",
  1559. "source": "https://github.com/cocoa-ai/NamesCoreMLDemo/raw/master/Names/Resources/NamesDT.mlmodel",
  1560. "link": "https://github.com/SwiftBrain/awesome-CoreML-models"
  1561. },
  1562. {
  1563. "type": "coreml",
  1564. "target": "onehot_simple.mlmodel",
  1565. "source": "https://raw.githubusercontent.com/onnx/onnxmltools/master/tests/data/onehot_simple.mlmodel",
  1566. "link": "https://github.com/onnx/onnxmltools/tree/master/tests/data"
  1567. },
  1568. {
  1569. "type": "coreml",
  1570. "target": "PoseEstimationForMobile.mlmodel",
  1571. "source": "https://raw.githubusercontent.com/edvardHua/PoseEstimationForMobile/master/release/cpm_model/model.mlmodel",
  1572. "format": "Core ML v1",
  1573. "link": "https://github.com/edvardHua/PoseEstimationForMobile"
  1574. },
  1575. {
  1576. "type": "coreml",
  1577. "target": "ProductTagger.mlmodel",
  1578. "source": "https://raw.githubusercontent.com/aidev1065/CustomEntityRecognition/master/ProductTagger.mlmodel",
  1579. "format": "Core ML v3",
  1580. "link": "https://github.com/aidev1065/CustomEntityRecognition"
  1581. },
  1582. {
  1583. "type": "coreml",
  1584. "target": "ProgrammingLanguageClassifier.mlmodel",
  1585. "source": "https://raw.githubusercontent.com/Flight-School/Programming-Language-Classifier/master/ProgrammingLanguageClassifier.mlmodel",
  1586. "format": "Core ML v3",
  1587. "link": "https://github.com/Flight-School/Programming-Language-Classifier"
  1588. },
  1589. {
  1590. "type": "coreml",
  1591. "target": "ReadTheRoom.mlmodel",
  1592. "source": "https://raw.githubusercontent.com/CapTechMobile/blogfest-coreml/d8e8c15d33e9591c9e81cb18e5ea4b2fb6972503/ReadTheRoom/ReadTheRoom.mlmodel",
  1593. "format": "Core ML v4",
  1594. "link": "https://github.com/CapTechMobile/blogfest-coreml"
  1595. },
  1596. {
  1597. "type": "coreml",
  1598. "target": "Resnet50.mlmodel",
  1599. "source": "https://docs-assets.developer.apple.com/coreml/models/Resnet50.mlmodel"
  1600. },
  1601. {
  1602. "type": "coreml",
  1603. "target": "SentimentPolarity.mlmodel",
  1604. "source": "https://github.com/cocoa-ai/SentimentCoreMLDemo/raw/master/SentimentPolarity/Resources/SentimentPolarity.mlmodel",
  1605. "link": "https://github.com/SwiftBrain/awesome-CoreML-models"
  1606. },
  1607. {
  1608. "type": "coreml",
  1609. "target": "sentiment_model.mlmodel",
  1610. "source": "https://github.com/lutzroeder/netron/files/2591618/sentiment_model.mlmodel.zip[sentiment_model.mlmodel]",
  1611. "format": "Core ML v1",
  1612. "link": "https://github.com/lutzroeder/netron/issues/149"
  1613. },
  1614. {
  1615. "type": "coreml",
  1616. "target": "SqueezeNet.mlmodel",
  1617. "source": "https://docs-assets.developer.apple.com/coreml/models/Image/ImageClassification/SqueezeNet/SqueezeNet.mlmodel",
  1618. "format": "Core ML v1",
  1619. "link": "https://developer.apple.com/machine-learning/models"
  1620. },
  1621. {
  1622. "type": "coreml",
  1623. "target": "SqueezeNetFP16.mlmodel",
  1624. "source": "https://docs-assets.developer.apple.com/coreml/models/Image/ImageClassification/SqueezeNet/SqueezeNetFP16.mlmodel",
  1625. "format": "Core ML v2",
  1626. "link": "https://developer.apple.com/machine-learning/models"
  1627. },
  1628. {
  1629. "type": "coreml",
  1630. "target": "SqueezeNetInt8LUT.mlmodel",
  1631. "source": "https://docs-assets.developer.apple.com/coreml/models/Image/ImageClassification/SqueezeNet/SqueezeNetInt8LUT.mlmodel",
  1632. "format": "Core ML v3",
  1633. "link": "https://developer.apple.com/machine-learning/models"
  1634. },
  1635. {
  1636. "type": "coreml",
  1637. "target": "test_categorical_imputer.mlmodel",
  1638. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_categorical_imputer.mlmodel]",
  1639. "format": "Core ML v1",
  1640. "link": "https://github.com/lutzroeder/netron/issues/193"
  1641. },
  1642. {
  1643. "type": "coreml",
  1644. "target": "test_keras_embedding_model.mlmodel",
  1645. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_keras_embedding_model.mlmodel]",
  1646. "format": "Core ML v1",
  1647. "link": "https://github.com/lutzroeder/netron/issues/193"
  1648. },
  1649. {
  1650. "type": "coreml",
  1651. "target": "test_linear_regressor.mlmodel",
  1652. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_linear_regressor.mlmodel]",
  1653. "format": "Core ML v1",
  1654. "link": "https://github.com/lutzroeder/netron/issues/193"
  1655. },
  1656. {
  1657. "type": "coreml",
  1658. "target": "test_normalizer_boston.mlmodel",
  1659. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_normalizer_boston.mlmodel]",
  1660. "format": "Core ML v1",
  1661. "link": "https://github.com/lutzroeder/netron/issues/193"
  1662. },
  1663. {
  1664. "type": "coreml",
  1665. "target": "test_normalizer_random.mlmodel",
  1666. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_normalizer_random.mlmodel]",
  1667. "format": "Core ML v1",
  1668. "link": "https://github.com/lutzroeder/netron/issues/193"
  1669. },
  1670. {
  1671. "type": "coreml",
  1672. "target": "test_one_hot_encoder_many_columns.mlmodel",
  1673. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_one_hot_encoder_many_columns.mlmodel]",
  1674. "format": "Core ML v1",
  1675. "link": "https://github.com/lutzroeder/netron/issues/193"
  1676. },
  1677. {
  1678. "type": "coreml",
  1679. "target": "test_one_hot_encoder_one_column_of_several.mlmodel",
  1680. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_one_hot_encoder_one_column_of_several.mlmodel]",
  1681. "format": "Core ML v1",
  1682. "link": "https://github.com/lutzroeder/netron/issues/193"
  1683. },
  1684. {
  1685. "type": "coreml",
  1686. "target": "test_one_hot_encoder_pipeline.mlmodel",
  1687. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_one_hot_encoder_pipeline.mlmodel]",
  1688. "format": "Core ML v1",
  1689. "link": "https://github.com/lutzroeder/netron/issues/193"
  1690. },
  1691. {
  1692. "type": "coreml",
  1693. "target": "test_random_forest_classifier.mlmodel",
  1694. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_random_forest_classifier.mlmodel]",
  1695. "format": "Core ML v1",
  1696. "link": "https://github.com/lutzroeder/netron/issues/193"
  1697. },
  1698. {
  1699. "type": "coreml",
  1700. "target": "test_random_forest_regressor.mlmodel",
  1701. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_random_forest_regressor.mlmodel]",
  1702. "format": "Core ML v1",
  1703. "link": "https://github.com/lutzroeder/netron/issues/193"
  1704. },
  1705. {
  1706. "type": "coreml",
  1707. "target": "test_support_vector_classifier.mlmodel",
  1708. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_support_vector_classifier.mlmodel]",
  1709. "format": "Core ML v1",
  1710. "link": "https://github.com/lutzroeder/netron/issues/193"
  1711. },
  1712. {
  1713. "type": "coreml",
  1714. "target": "test_support_vector_regressor.mlmodel",
  1715. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_support_vector_regressor.mlmodel]",
  1716. "format": "Core ML v1",
  1717. "link": "https://github.com/lutzroeder/netron/issues/193"
  1718. },
  1719. {
  1720. "type": "coreml",
  1721. "target": "test_tree_regressor.mlmodel",
  1722. "source": "https://github.com/lutzroeder/netron/files/3268269/coreml_models.zip[test_tree_regressor.mlmodel]",
  1723. "format": "Core ML v1",
  1724. "link": "https://github.com/lutzroeder/netron/issues/193"
  1725. },
  1726. {
  1727. "type": "coreml",
  1728. "target": "TinyDrawingEmbedding.mlmodel",
  1729. "source": "https://github.com/apple/coremltools/raw/master/examples/updatable_models/models/TinyDrawingEmbedding.mlmodel",
  1730. "link": "https://github.com/apple/coremltools"
  1731. },
  1732. {
  1733. "type": "coreml",
  1734. "target": "TinyYOLO.mlmodel",
  1735. "source": "https://raw.githubusercontent.com/hollance/YOLO-CoreML-MPSNNGraph/master/TinyYOLO-CoreML/TinyYOLO-CoreML/TinyYOLO.mlmodel"
  1736. },
  1737. {
  1738. "type": "coreml",
  1739. "target": "UpdatableKNN.mlmodel",
  1740. "source": "https://github.com/lutzroeder/netron/files/3424578/UpdatableKNN.zip[UpdatableKNN.mlmodel]",
  1741. "format": "Core ML v4",
  1742. "link": "https://github.com/lutzroeder/netron/issues/193"
  1743. },
  1744. {
  1745. "type": "coreml",
  1746. "target": "UpdatableMNISTDigitClassifier.mlmodel",
  1747. "source": "https://github.com/lutzroeder/netron/files/3424579/UpdatableMNISTDigitClassifier.zip[UpdatableMNISTDigitClassifier.mlmodel]",
  1748. "format": "Core ML v1",
  1749. "link": "https://github.com/lutzroeder/netron/issues/193"
  1750. },
  1751. {
  1752. "type": "coreml",
  1753. "target": "VGG16.mlmodel",
  1754. "source": "https://docs-assets.developer.apple.com/coreml/models/VGG16.mlmodel"
  1755. },
  1756. {
  1757. "type": "coreml",
  1758. "target": "wave.mlmodel",
  1759. "source": "https://raw.githubusercontent.com/UnusualWolf/coreML/master/StyleArt-master/StyleArt/CoreMLModels/wave.mlmodel",
  1760. "format": "Core ML v1",
  1761. "link": "https://github.com/UnusualWolf/coreML"
  1762. },
  1763. {
  1764. "type": "coreml",
  1765. "target": "YOLOv3.mlmodel",
  1766. "source": "https://docs-assets.developer.apple.com/coreml/models/Image/ObjectDetection/YOLOv3/YOLOv3.mlmodel",
  1767. "format": "Core ML v3",
  1768. "link": "https://developer.apple.com/machine-learning/models"
  1769. },
  1770. {
  1771. "type": "coreml",
  1772. "target": "YOLOv3Tiny.mlmodel",
  1773. "source": "https://docs-assets.developer.apple.com/coreml/models/Image/ObjectDetection/YOLOv3Tiny/YOLOv3Tiny.mlmodel",
  1774. "format": "Core ML v3",
  1775. "link": "https://developer.apple.com/machine-learning/models"
  1776. },
  1777. {
  1778. "type": "darknet",
  1779. "target": "alexnet.cfg,alexnet.weights",
  1780. "source": "https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/alexnet.cfg,https://pjreddie.com/media/files/alexnet.weights",
  1781. "format": "Darknet",
  1782. "link": "https://pjreddie.com/darknet/imagenet"
  1783. },
  1784. {
  1785. "type": "darknet",
  1786. "target": "csresnext50-panet-spp.cfg",
  1787. "source": "https://raw.githubusercontent.com/WongKinYiu/CrossStagePartialNetworks/master/cfg/csresnext50-panet-spp.cfg",
  1788. "format": "Darknet",
  1789. "link": "https://github.com/lutzroeder/netron/issues/381"
  1790. },
  1791. {
  1792. "type": "darknet",
  1793. "target": "darknet_invalid_file.cfg",
  1794. "source": "https://github.com/lutzroeder/netron/files/3219696/darknet_invalid_file.cfg.zip[darknet_invalid_file.cfg]",
  1795. "error": "Invalid cfg 'xxxx' at line 4 in 'darknet_invalid_file.cfg'.",
  1796. "link": "https://github.com/lutzroeder/netron/issues/277"
  1797. },
  1798. {
  1799. "type": "darknet",
  1800. "target": "darknet53_448.cfg,darknet53_448.weights",
  1801. "source": "https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/darknet53_448.cfg,https://pjreddie.com/media/files/darknet53_448.weights",
  1802. "format": "Darknet",
  1803. "link": "https://pjreddie.com/darknet/imagenet"
  1804. },
  1805. {
  1806. "type": "darknet",
  1807. "target": "enet-coco.cfg",
  1808. "source": "https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/enet-coco.cfg",
  1809. "format": "Darknet",
  1810. "link": "https://github.com/lutzroeder/netron/issues/381"
  1811. },
  1812. {
  1813. "type": "darknet",
  1814. "target": "face_small_3.cfg",
  1815. "source": "https://raw.githubusercontent.com/zlmo/Face-Detection/master/cfg/face_small_3.cfg",
  1816. "format": "Darknet",
  1817. "link": "https://github.com/zlmo/Face-Detection"
  1818. },
  1819. {
  1820. "type": "darknet",
  1821. "target": "Gaussian_yolov3_BDD.cfg",
  1822. "source": "https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/Gaussian_yolov3_BDD.cfg",
  1823. "format": "Darknet",
  1824. "link": "https://github.com/AlexeyAB/darknet"
  1825. },
  1826. {
  1827. "type": "darknet",
  1828. "target": "go.cfg,go.weights",
  1829. "source": "https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/go.cfg,https://pjreddie.com/media/files/go.weights",
  1830. "format": "Darknet",
  1831. "link": "https://pjreddie.com/darknet/darkgo-go-in-darknet"
  1832. },
  1833. {
  1834. "type": "darknet",
  1835. "target": "grrm.cfg,grrm.weights",
  1836. "source": "https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/rnn.cfg,https://pjreddie.com/media/files/grrm.weights",
  1837. "format": "Darknet",
  1838. "link": "https://pjreddie.com/darknet/rnns-in-darknet"
  1839. },
  1840. {
  1841. "type": "darknet",
  1842. "target": "gru.cfg,gru.weights",
  1843. "source": "https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/gru.cfg",
  1844. "format": "Darknet",
  1845. "link": "https://pjreddie.com/darknet"
  1846. },
  1847. {
  1848. "type": "darknet",
  1849. "target": "jnet-conv.cfg,jnet-conv.weights",
  1850. "source": "https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/jnet-conv.cfg,https://pjreddie.com/media/files/jnet-conv.weights",
  1851. "format": "Darknet",
  1852. "link": "https://pjreddie.com/darknet/nightmare"
  1853. },
  1854. {
  1855. "type": "darknet",
  1856. "target": "lstm.train.cfg",
  1857. "source": "https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/lstm.train.cfg",
  1858. "format": "Darknet",
  1859. "link": "https://github.com/AlexeyAB/darknet"
  1860. },
  1861. {
  1862. "type": "darknet",
  1863. "target": "mixnet_m_gpu.cfg",
  1864. "source": "https://github.com/lutzroeder/netron/files/3935529/mixnet_m_gpu.cfg.txt",
  1865. "format": "Darknet",
  1866. "link": "https://github.com/lutzroeder/netron/issues/381"
  1867. },
  1868. {
  1869. "type": "darknet",
  1870. "target": "resnet18.cfg,resnet18.weights",
  1871. "source": "https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/resnet18.cfg,https://pjreddie.com/media/files/resnet18.weights",
  1872. "format": "Darknet",
  1873. "link": "https://pjreddie.com/darknet/imagenet"
  1874. },
  1875. {
  1876. "type": "darknet",
  1877. "target": "resnet152.cfg,resnet152.weights",
  1878. "source": "https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/resnet152.cfg,https://pjreddie.com/media/files/resnet152.weights",
  1879. "format": "Darknet",
  1880. "link": "https://pjreddie.com/darknet/imagenet"
  1881. },
  1882. {
  1883. "type": "darknet",
  1884. "target": "tiny.cfg,tiny.weights",
  1885. "source": "https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/tiny.cfg,https://pjreddie.com/media/files/tiny.weights",
  1886. "format": "Darknet",
  1887. "link": "https://pjreddie.com/darknet/tiny-darknet"
  1888. },
  1889. {
  1890. "type": "darknet",
  1891. "target": "yolo-coco.cfg",
  1892. "source": "https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/yolov1/yolo-coco.cfg",
  1893. "format": "Darknet",
  1894. "link": "https://github.com/AlexeyAB/darknet"
  1895. },
  1896. {
  1897. "type": "darknet",
  1898. "target": "yolo-voc.cfg",
  1899. "source": "https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/yolo-voc.cfg",
  1900. "format": "Darknet",
  1901. "link": "https://github.com/AlexeyAB/darknet"
  1902. },
  1903. {
  1904. "type": "darknet",
  1905. "target": "yolo.cfg",
  1906. "source": "https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/yolo.cfg",
  1907. "format": "Darknet",
  1908. "link": "https://github.com/AlexeyAB/darknet"
  1909. },
  1910. {
  1911. "type": "darknet",
  1912. "target": "yolo_v3_tiny_pan3_aa_ae_mixup_scale_giou.cfg",
  1913. "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]",
  1914. "format": "Darknet",
  1915. "link": "https://github.com/lutzroeder/netron/issues/277"
  1916. },
  1917. {
  1918. "type": "darknet",
  1919. "target": "yolov3-openimages.cfg,yolov3-openimages.weights",
  1920. "source": "https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/yolov3-openimages.cfg,https://pjreddie.com/media/files/yolov3-openimages.weights",
  1921. "format": "Darknet",
  1922. "link": "https://pjreddie.com/darknet/yolo"
  1923. },
  1924. {
  1925. "type": "darknet",
  1926. "target": "yolov3-spp.cfg,yolov3-spp.weights",
  1927. "source": "https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/yolov3-spp.cfg,https://pjreddie.com/media/files/yolov3-spp.weights",
  1928. "format": "Darknet",
  1929. "link": "https://pjreddie.com/darknet/yolo"
  1930. },
  1931. {
  1932. "type": "darknet",
  1933. "target": "yolov3-tiny.cfg,yolov3-tiny.weights",
  1934. "source": "https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/yolov3-tiny.cfg,https://pjreddie.com/media/files/yolov3-tiny.weights",
  1935. "format": "Darknet",
  1936. "link": "https://github.com/AlexeyAB/darknet"
  1937. },
  1938. {
  1939. "type": "darknet",
  1940. "target": "yolov3-tiny_3l_shortcut_multilayer_per_feature_softmax.cfg",
  1941. "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]",
  1942. "format": "Darknet",
  1943. "link": "https://github.com/lutzroeder/netron/issues/410"
  1944. },
  1945. {
  1946. "type": "darknet",
  1947. "target": "yolo9000.cfg",
  1948. "source": "https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/yolo9000.cfg",
  1949. "format": "Darknet",
  1950. "link": "https://github.com/AlexeyAB/darknet"
  1951. },
  1952. {
  1953. "type": "dl4j",
  1954. "target": "darknet19_dl4j_inference.v2.zip",
  1955. "source": "https://dl4jdata.blob.core.windows.net/models/darknet19_dl4j_inference.v2.zip",
  1956. "format": "Deeplearning4j",
  1957. "link": "https://github.com/eclipse/deeplearning4j"
  1958. },
  1959. {
  1960. "type": "dl4j",
  1961. "target": "lenet_dl4j_mnist_inference.zip",
  1962. "source": "https://dl4jdata.blob.core.windows.net/models/lenet_dl4j_mnist_inference.zip",
  1963. "format": "Deeplearning4j",
  1964. "link": "https://github.com/eclipse/deeplearning4j"
  1965. },
  1966. {
  1967. "type": "dl4j",
  1968. "target": "nasnetmobile_dl4j_inference.v1.zip",
  1969. "source": "https://dl4jdata.blob.core.windows.net/models/nasnetmobile_dl4j_inference.v1.zip",
  1970. "format": "Deeplearning4j",
  1971. "link": "https://github.com/eclipse/deeplearning4j"
  1972. },
  1973. {
  1974. "type": "dl4j",
  1975. "target": "resnet50_dl4j_inference.v3.zip",
  1976. "source": "https://dl4jdata.blob.core.windows.net/models/resnet50_dl4j_inference.v3.zip",
  1977. "format": "Deeplearning4j",
  1978. "link": "https://github.com/eclipse/deeplearning4j"
  1979. },
  1980. {
  1981. "type": "dl4j",
  1982. "target": "squeezenet_dl4j_inference.v2.zip",
  1983. "source": "https://dl4jdata.blob.core.windows.net/models/squeezenet_dl4j_inference.v2.zip",
  1984. "format": "Deeplearning4j",
  1985. "link": "https://github.com/eclipse/deeplearning4j"
  1986. },
  1987. {
  1988. "type": "dl4j",
  1989. "target": "tiny-yolo-voc_dl4j_inference.v2.zip",
  1990. "source": "https://dl4jdata.blob.core.windows.net/models/tiny-yolo-voc_dl4j_inference.v2.zip",
  1991. "format": "Deeplearning4j",
  1992. "link": "https://github.com/eclipse/deeplearning4j"
  1993. },
  1994. {
  1995. "type": "dl4j",
  1996. "target": "unet_dl4j_segment_inference.v1.zip",
  1997. "source": "https://dl4jdata.blob.core.windows.net/models/unet_dl4j_segment_inference.v1.zip",
  1998. "format": "Deeplearning4j",
  1999. "link": "https://github.com/eclipse/deeplearning4j"
  2000. },
  2001. {
  2002. "type": "dl4j",
  2003. "target": "vgg19_dl4j_inference.zip",
  2004. "source": "https://dl4jdata.blob.core.windows.net/models/vgg19_dl4j_inference.zip",
  2005. "format": "Deeplearning4j",
  2006. "link": "https://github.com/eclipse/deeplearning4j"
  2007. },
  2008. {
  2009. "type": "dl4j",
  2010. "target": "xception_dl4j_inference.v2.zip",
  2011. "source": "https://dl4jdata.blob.core.windows.net/models/xception_dl4j_inference.v2.zip",
  2012. "format": "Deeplearning4j",
  2013. "link": "https://github.com/eclipse/deeplearning4j"
  2014. },
  2015. {
  2016. "type": "dl4j",
  2017. "target": "yolo2_dl4j_inference.v3.zip",
  2018. "source": "https://dl4jdata.blob.core.windows.net/models/yolo2_dl4j_inference.v3.zip",
  2019. "format": "Deeplearning4j",
  2020. "link": "https://github.com/eclipse/deeplearning4j"
  2021. },
  2022. {
  2023. "type": "flux",
  2024. "target": "helloworld.bson",
  2025. "source": "https://github.com/lutzroeder/netron/files/3638212/helloworld.zip[helloworld.bson]",
  2026. "format": "Flux",
  2027. "link": "https://github.com/lutzroeder/netron/issues/334"
  2028. },
  2029. {
  2030. "type": "keras",
  2031. "target": "babi_rnn.h5",
  2032. "source": "https://github.com/lutzroeder/netron/files/2592329/keras_models.zip[babi_rnn.h5]",
  2033. "format": "Keras v2.1.2",
  2034. "link": "https://github.com/lutzroeder/netron/issues/57"
  2035. },
  2036. {
  2037. "type": "keras",
  2038. "target": "bidirectional_lstm.h5",
  2039. "source": "https://github.com/lutzroeder/netron/files/2592329/keras_models.zip[bidirectional_lstm.h5]",
  2040. "format": "Keras v2.1.2",
  2041. "link": "https://github.com/lutzroeder/netron/issues/57"
  2042. },
  2043. {
  2044. "type": "keras",
  2045. "target": "cats_and_dogs_small_1.h5",
  2046. "source": "https://raw.githubusercontent.com/wwells/CUNY_DATA_698/master/DL_Coursework/DLR/cats_and_dogs_small_1.h5",
  2047. "format": "Keras v2.1.5",
  2048. "link": "https://github.com/wwells/CUNY_DATA_698/tree/master/DL_Coursework/DLR"
  2049. },
  2050. {
  2051. "type": "keras",
  2052. "target": "cats_and_dogs_small_2.h5",
  2053. "source": "https://raw.githubusercontent.com/kylehamilton/deep-learning-with-r-notebooks/master/cats_and_dogs_small_2.h5",
  2054. "format": "Keras v2.0.9",
  2055. "link": "https://github.com/kylehamilton/deep-learning-with-r-notebooks"
  2056. },
  2057. {
  2058. "type": "keras",
  2059. "target": "cats_and_dogs_2_activation.h5",
  2060. "source": "https://github.com/lutzroeder/netron/files/2592329/keras_models.zip[cats_and_dogs_2_activation.h5]",
  2061. "format": "Keras v2.1.3",
  2062. "link": "https://github.com/lutzroeder/netron/issues/57"
  2063. },
  2064. {
  2065. "type": "keras",
  2066. "target": "CNN_SN_flaw1_v1.h5",
  2067. "source": "https://github.com/lutzroeder/netron/files/2452413/CNN_SN_flaw1_v1.h5.zip[CNN_SN_flaw1_v1.h5]",
  2068. "format": "Keras v2.2.3",
  2069. "link": "https://github.com/lutzroeder/netron/issues/157"
  2070. },
  2071. {
  2072. "type": "keras",
  2073. "target": "DenseNet121.h5",
  2074. "link": "https://keras.io/applications",
  2075. "script": "./tools/keras sync install zoo"
  2076. },
  2077. {
  2078. "type": "keras",
  2079. "target": "generating_images_with_vaes.h5",
  2080. "source": "https://github.com/lutzroeder/netron/files/2592326/generating_images_with_vaes.h5.zip[generating_images_with_vaes.h5]",
  2081. "format": "Keras v2.1.3",
  2082. "link": "https://github.com/fchollet/deep-learning-with-python-notebooks/blob/master/8.4-generating-images-with-vaes.ipynb"
  2083. },
  2084. {
  2085. "type": "keras",
  2086. "target": "imdb_embedding.h5",
  2087. "source": "https://github.com/lutzroeder/netron/files/2592329/keras_models.zip[imdb_embedding.h5]",
  2088. "format": "Keras v2.1.3",
  2089. "link": "https://github.com/lutzroeder/netron/issues/57"
  2090. },
  2091. {
  2092. "type": "keras",
  2093. "target": "imdb_simplernn.h5",
  2094. "source": "https://github.com/lutzroeder/netron/files/2592329/keras_models.zip[imdb_simplernn.h5]",
  2095. "format": "Keras v2.1.3",
  2096. "link": "https://github.com/lutzroeder/netron/issues/57"
  2097. },
  2098. {
  2099. "type": "keras",
  2100. "target": "InceptionResNetV2.h5",
  2101. "link": "https://keras.io/applications",
  2102. "script": "./tools/keras sync install zoo"
  2103. },
  2104. {
  2105. "type": "keras",
  2106. "target": "InceptionV3.h5",
  2107. "link": "https://keras.io/applications",
  2108. "script": "./tools/keras sync install zoo"
  2109. },
  2110. {
  2111. "type": "keras",
  2112. "target": "keras_invalid_file.h5",
  2113. "source": "https://github.com/lutzroeder/netron/files/3364286/keras_invalid_file.zip[keras_invalid_file.h5]",
  2114. "error": "Unsupported file content for extension '.h5' in 'keras_invalid_file.h5'.",
  2115. "link": "https://github.com/lutzroeder/netron/issues/57"
  2116. },
  2117. {
  2118. "type": "keras",
  2119. "target": "lstm_seq2seq.h5",
  2120. "source": "https://github.com/lutzroeder/netron/files/2592328/lstm_seq2seq.zip[lstm_seq2seq.h5]",
  2121. "format": "Keras v2.1.2",
  2122. "link": "https://github.com/lutzroeder/netron/issues/57"
  2123. },
  2124. {
  2125. "type": "keras",
  2126. "target": "lstm_seq2seq.json",
  2127. "source": "https://github.com/lutzroeder/netron/files/2592328/lstm_seq2seq.zip[lstm_seq2seq.json] ",
  2128. "format": "Keras",
  2129. "link": "https://github.com/lutzroeder/netron/issues/57"
  2130. },
  2131. {
  2132. "type": "keras",
  2133. "target": "mimo.h5",
  2134. "source": "https://github.com/lutzroeder/netron/files/2565761/mimo.h5.zip[mimo.h5]",
  2135. "format": "Keras v2.2.0",
  2136. "link": "https://github.com/lutzroeder/netron/issues/138"
  2137. },
  2138. {
  2139. "type": "keras",
  2140. "target": "mnist_float16.h5",
  2141. "source": "https://github.com/lutzroeder/netron/files/2592324/mnist.zip[mnist_float16.h5]",
  2142. "format": "Keras v2.1.2",
  2143. "link": "https://github.com/lutzroeder/netron/issues/57"
  2144. },
  2145. {
  2146. "type": "keras",
  2147. "target": "mnist_float32.h5",
  2148. "source": "https://github.com/lutzroeder/netron/files/2592324/mnist.zip[mnist_float32.h5]",
  2149. "format": "Keras v2.1.2",
  2150. "link": "https://github.com/lutzroeder/netron/issues/57"
  2151. },
  2152. {
  2153. "type": "keras",
  2154. "target": "mnist_float64.h5",
  2155. "source": "https://github.com/lutzroeder/netron/files/2592324/mnist.zip[mnist_float64.h5]",
  2156. "format": "Keras v2.1.2",
  2157. "link": "https://github.com/lutzroeder/netron/issues/57"
  2158. },
  2159. {
  2160. "type": "keras",
  2161. "target": "mobilenet.h5",
  2162. "source": "https://raw.githubusercontent.com/aio-libs/aiohttp-demos/master/demos/imagetagger/tests/data/mobilenet.h5",
  2163. "format": "Keras v2.2.2",
  2164. "link": "https://github.com/aio-libs/aiohttp-demos/tree/master/demos/imagetagger/tests/data"
  2165. },
  2166. {
  2167. "type": "keras",
  2168. "target": "MobileNetV2.h5",
  2169. "link": "https://keras.io/applications",
  2170. "script": "./tools/keras sync install zoo"
  2171. },
  2172. {
  2173. "type": "keras",
  2174. "target": "NASNetMobile.h5",
  2175. "link": "https://keras.io/applications",
  2176. "script": "./tools/keras sync install zoo"
  2177. },
  2178. {
  2179. "type": "keras",
  2180. "target": "nested_bidrectional.h5",
  2181. "source": "https://github.com/lutzroeder/netron/files/4304644/nested_bidrectional.zip[nested_bidrectional.h5]",
  2182. "format": "Keras v2.3.1",
  2183. "link": "https://github.com/lutzroeder/netron/issues/428"
  2184. },
  2185. {
  2186. "type": "keras",
  2187. "target": "nested_bidrectional_weights.h5",
  2188. "source": "https://github.com/lutzroeder/netron/files/4304644/nested_bidrectional.zip[nested_bidrectional_weights.h5]",
  2189. "format": "Keras v2.3.1",
  2190. "link": "https://github.com/lutzroeder/netron/issues/428"
  2191. },
  2192. {
  2193. "type": "keras",
  2194. "target": "netron_issue_326.json",
  2195. "source": "https://github.com/lutzroeder/netron/files/3563087/netron_issue_326.zip[netron_issue_326.json]",
  2196. "format": "Keras v2.2.4-tf",
  2197. "link": "https://github.com/lutzroeder/netron/issues/326"
  2198. },
  2199. {
  2200. "type": "keras",
  2201. "target": "netron_issue_428.h5",
  2202. "source": "https://github.com/lutzroeder/netron/files/4221535/netron_issue_428.zip[netron_issue_428.h5]",
  2203. "format": "Keras v2.2.4-tf",
  2204. "link": "https://github.com/lutzroeder/netron/issues/428"
  2205. },
  2206. {
  2207. "type": "keras",
  2208. "target": "netron_issue_435.h5",
  2209. "source": "https://github.com/lutzroeder/netron/files/4269953/netron_issue_435.zip[netron_issue_435.h5]",
  2210. "format": "Keras v2.2.4",
  2211. "link": "https://github.com/lutzroeder/netron/issues/435"
  2212. },
  2213. {
  2214. "type": "keras",
  2215. "target": "nietzsche.h5",
  2216. "source": "https://github.com/lutzroeder/netron/files/2592329/keras_models.zip[nietzsche.h5]",
  2217. "format": "Keras v2.1.3",
  2218. "link": "https://github.com/lutzroeder/netron/issues/57"
  2219. },
  2220. {
  2221. "type": "keras",
  2222. "target": "residual_cnn.h5",
  2223. "source": "https://github.com/lutzroeder/netron/files/2592329/keras_models.zip[residual_cnn.h5]",
  2224. "format": "Keras v2.1.2",
  2225. "link": "https://github.com/lutzroeder/netron/issues/57"
  2226. },
  2227. {
  2228. "type": "keras",
  2229. "target": "resnet50_weights_tf_dim_ordering_tf_kernels.h5",
  2230. "source": "https://github.com/fchollet/deep-learning-models/releases/download/v0.2/resnet50_weights_tf_dim_ordering_tf_kernels.h5",
  2231. "format": "Keras"
  2232. },
  2233. {
  2234. "type": "keras",
  2235. "target": "sentiment_model.h5",
  2236. "source": "https://github.com/lutzroeder/netron/files/2592329/keras_models.zip[sentiment_model.h5]",
  2237. "format": "Keras v2.1.3",
  2238. "link": "https://github.com/lutzroeder/netron/issues/57"
  2239. },
  2240. {
  2241. "type": "keras",
  2242. "target": "siamese_net.json",
  2243. "source": "https://github.com/lutzroeder/netron/files/2592353/siamese_net.json.zip[siamese_net.json]",
  2244. "format": "Keras",
  2245. "link": "https://github.com/lutzroeder/netron/issues/130"
  2246. },
  2247. {
  2248. "type": "keras",
  2249. "target": "snapshot_parent_0097.h5",
  2250. "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",
  2251. "error": "File format is not Keras HDF5 in 'snapshot_parent_0097.h5'.\nFile format is not Chainer HDF5 in 'snapshot_parent_0097.h5'.",
  2252. "link": "https://github.com/uber-research/deep-neuroevolution"
  2253. },
  2254. {
  2255. "type": "keras",
  2256. "target": "time_distributed.h5",
  2257. "source": "https://github.com/lutzroeder/netron/files/2592329/keras_models.zip[time_distributed.h5]",
  2258. "format": "Keras v2.1.2",
  2259. "link": "https://github.com/lutzroeder/netron/issues/57"
  2260. },
  2261. {
  2262. "type": "keras",
  2263. "target": "tiny-yolo-voc.h5",
  2264. "source": "https://raw.githubusercontent.com/hollance/YOLO-CoreML-MPSNNGraph/master/Convert/yad2k/model_data/tiny-yolo-voc.h5",
  2265. "format": "Keras v1.2.2",
  2266. "link": "https://github.com/hollance/YOLO-CoreML-MPSNNGraph/tree/master/Convert/yad2k/model_data"
  2267. },
  2268. {
  2269. "type": "keras",
  2270. "target": "tiramisu_fc_dense103_model.json",
  2271. "source": "https://raw.githubusercontent.com/0bserver07/One-Hundred-Layers-Tiramisu/master/tiramisu_fc_dense103_model.json",
  2272. "format": "Keras v2.0.2", "runtime": "tensorflow",
  2273. "link": "https://github.com/0bserver07/One-Hundred-Layers-Tiramisu"
  2274. },
  2275. {
  2276. "type": "keras",
  2277. "target": "VGG19.h5",
  2278. "link": "https://keras.io/applications",
  2279. "script": "./tools/keras sync install zoo"
  2280. },
  2281. {
  2282. "type": "mediapipe",
  2283. "target": "clipped_images_from_file_at_24fps.pbtxt",
  2284. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/graphs/media_sequence/clipped_images_from_file_at_24fps.pbtxt",
  2285. "format": "MediaPipe",
  2286. "link": "https://github.com/google/mediapipe"
  2287. },
  2288. {
  2289. "type": "mediapipe",
  2290. "target": "face_detection_mobile_cpu.pbtxt",
  2291. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/graphs/face_detection/face_detection_mobile_cpu.pbtxt",
  2292. "format": "MediaPipe",
  2293. "link": "https://github.com/google/mediapipe"
  2294. },
  2295. {
  2296. "type": "mediapipe",
  2297. "target": "hand_detection_mobile.pbtxt",
  2298. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/graphs/hand_tracking/hand_detection_mobile.pbtxt",
  2299. "format": "MediaPipe",
  2300. "link": "https://github.com/google/mediapipe"
  2301. },
  2302. {
  2303. "type": "mediapipe",
  2304. "target": "hand_tracking_mobile.pbtxt",
  2305. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/graphs/hand_tracking/hand_tracking_mobile.pbtxt",
  2306. "format": "MediaPipe",
  2307. "link": "https://github.com/google/mediapipe"
  2308. },
  2309. {
  2310. "type": "mediapipe",
  2311. "target": "object_detection_desktop_live.pbtxt",
  2312. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/examples/coral/graphs/object_detection_desktop_live.pbtxt",
  2313. "format": "MediaPipe",
  2314. "link": "https://github.com/google/mediapipe"
  2315. },
  2316. {
  2317. "type": "mediapipe",
  2318. "target": "shoe_classic_occlusion_tracking.pbtxt",
  2319. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/graphs/object_detection_3d/shoe_classic_occlusion_tracking.pbtxt",
  2320. "format": "MediaPipe",
  2321. "link": "https://github.com/lutzroeder/netron/issues/444"
  2322. },
  2323. {
  2324. "type": "mediapipe",
  2325. "target": "tvl1_flow_and_rgb_from_file.pbtxt",
  2326. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/graphs/media_sequence/tvl1_flow_and_rgb_from_file.pbtxt",
  2327. "format": "MediaPipe",
  2328. "link": "https://github.com/google/mediapipe"
  2329. },
  2330. {
  2331. "type": "mediapipe",
  2332. "target": "yt8m_dataset_model_inference.pbtxt",
  2333. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/graphs/youtube8m/yt8m_dataset_model_inference.pbtxt",
  2334. "format": "MediaPipe",
  2335. "link": "https://github.com/google/mediapipe"
  2336. },
  2337. {
  2338. "type": "mlnet",
  2339. "target": "BinaryClassification_AutoML_SentimentModel.zip",
  2340. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/BinaryClassification_AutoML/SentimentAnalysis/MLModels/SentimentModel.zip",
  2341. "format": "ML.NET v1.0.27701.1",
  2342. "link": "https://github.com/dotnet/machinelearning-samples"
  2343. },
  2344. {
  2345. "type": "mlnet",
  2346. "target": "BikeDemandForecasting.zip",
  2347. "source": "https://github.com/lutzroeder/netron/files/4042150/MLModel.zip",
  2348. "format": "ML.NET v1.4.28305.1",
  2349. "link": "https://github.com/dotnet/machinelearning-samples"
  2350. },
  2351. {
  2352. "type": "mlnet",
  2353. "target": "ep_model1.zip",
  2354. "source": "https://github.com/lutzroeder/netron/files/4216033/ep_model1.zip",
  2355. "format": "ML.NET v1.0.0.0",
  2356. "link": "https://github.com/lutzroeder/netron/issues/170"
  2357. },
  2358. {
  2359. "type": "mlnet",
  2360. "target": "ep_model3.zip",
  2361. "source": "https://github.com/lutzroeder/netron/files/4216304/ep_model3.zip",
  2362. "format": "ML.NET v1.0.0.0",
  2363. "link": "https://github.com/lutzroeder/netron/issues/170"
  2364. },
  2365. {
  2366. "type": "mlnet",
  2367. "target": "FastTreeModel.zip",
  2368. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/Regression_BikeSharingDemand/BikeSharingDemand/MLModels/FastTreeModel.zip",
  2369. "format": "ML.NET v1.0.0.0",
  2370. "link": "https://github.com/dotnet/machinelearning-samples"
  2371. },
  2372. {
  2373. "type": "mlnet",
  2374. "target": "FastTreeTweedieModel.zip",
  2375. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/Regression_BikeSharingDemand/BikeSharingDemand/MLModels/FastTreeTweedieModel.zip",
  2376. "format": "ML.NET v1.0.0.0",
  2377. "link": "https://github.com/dotnet/machinelearning-samples"
  2378. },
  2379. {
  2380. "type": "mlnet",
  2381. "target": "GitHubLabelerModel.zip",
  2382. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/end-to-end-apps/MulticlassClassification-GitHubLabeler/GitHubLabeler/MLModels/GitHubLabelerModel.zip",
  2383. "format": "ML.NET v1.0.27701.1",
  2384. "link": "https://github.com/dotnet/machinelearning-samples"
  2385. },
  2386. {
  2387. "type": "mlnet",
  2388. "target": "ImageClassification.Predict.imageClassifier.zip",
  2389. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/DeepLearning_TensorFlowEstimator/ImageClassification.Predict/assets/inputs/MLNETModel/imageClassifier.zip",
  2390. "format": "ML.NET v1.4.28230.4",
  2391. "link": "https://github.com/dotnet/machinelearning-samples"
  2392. },
  2393. {
  2394. "type": "mlnet",
  2395. "target": "IrisClassificationModel.zip",
  2396. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/MulticlassClassification_Iris/IrisClassification/MLModels/IrisClassificationModel.zip",
  2397. "format": "ML.NET v1.0.0.0",
  2398. "link": "https://github.com/dotnet/machinelearning-samples"
  2399. },
  2400. {
  2401. "type": "mlnet",
  2402. "target": "MovieRecommender_Model.zip",
  2403. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/end-to-end-apps/Recommendation-MovieRecommender/MovieRecommender_Model/Model/model.zip",
  2404. "format": "ML.NET v1.4.28230.4",
  2405. "link": "https://github.com/dotnet/machinelearning-samples"
  2406. },
  2407. {
  2408. "type": "mlnet",
  2409. "target": "MLSentimentModel.zip",
  2410. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/end-to-end-apps/ScalableSentimentAnalysisBlazorWebApp/BlazorSentimentAnalysis.Server/ML/MLSentimentModel.zip",
  2411. "format": "ML.NET v1.0.0.0",
  2412. "link": "https://github.com/dotnet/machinelearning-samples"
  2413. },
  2414. {
  2415. "type": "mlnet",
  2416. "target": "ngram.zip",
  2417. "source": "https://github.com/lutzroeder/netron/files/4216079/ngram.zip?raw=true",
  2418. "format": "ML.NET v3.10.29.504",
  2419. "link": "https://github.com/lutzroeder/netron/issues/170"
  2420. },
  2421. {
  2422. "type": "mlnet",
  2423. "target": "PoissonModel.zip",
  2424. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/Regression_BikeSharingDemand/BikeSharingDemand/MLModels/PoissonModel.zip",
  2425. "format": "ML.NET v1.0.0.0",
  2426. "link": "https://github.com/dotnet/machinelearning-samples"
  2427. },
  2428. {
  2429. "type": "mlnet",
  2430. "target": "product_month_fastTreeTweedie.zip",
  2431. "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",
  2432. "format": "ML.NET v1.3.28006.10",
  2433. "link": "https://github.com/dotnet/machinelearning-samples"
  2434. },
  2435. {
  2436. "type": "mlnet",
  2437. "target": "ProductSalesChangePointModel.zip",
  2438. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/end-to-end-apps/AnomalyDetection-Sales/SpikeDetectionE2EApp/MLModels/ProductSalesChangePointModel.zip",
  2439. "format": "ML.NET v1.4.28305.1",
  2440. "link": "https://github.com/dotnet/machinelearning-samples"
  2441. },
  2442. {
  2443. "type": "mlnet",
  2444. "target": "ProductSalesSpikeModel.zip",
  2445. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/end-to-end-apps/AnomalyDetection-Sales/SpikeDetectionE2EApp/MLModels/ProductSalesSpikeModel.zip",
  2446. "format": "ML.NET v1.4.28305.1",
  2447. "link": "https://github.com/dotnet/machinelearning-samples"
  2448. },
  2449. {
  2450. "type": "mlnet",
  2451. "target": "randomizedPca.zip",
  2452. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/AnomalyDetection_CreditCardFraudDetection/CreditCardFraudDetection.Predictor/assets/input/randomizedPca.zip",
  2453. "format": "ML.NET v1.2.27902.10",
  2454. "link": "https://github.com/dotnet/machinelearning-samples"
  2455. },
  2456. {
  2457. "type": "mlnet",
  2458. "target": "retailClustering.zip",
  2459. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/Clustering_CustomerSegmentation/CustomerSegmentation.Train/assets/outputs/retailClustering.zip",
  2460. "format": "ML.NET v1.0.27701.1",
  2461. "link": "https://github.com/dotnet/machinelearning-samples"
  2462. },
  2463. {
  2464. "type": "mlnet",
  2465. "target": "SDCAModel.zip",
  2466. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/Regression_BikeSharingDemand/BikeSharingDemand/MLModels/SDCAModel.zip",
  2467. "format": "ML.NET v1.0.0.0",
  2468. "link": "https://github.com/dotnet/machinelearning-samples"
  2469. },
  2470. {
  2471. "type": "mlnet",
  2472. "target": "TaxiFareModel.zip",
  2473. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/master/samples/csharp/getting-started/Regression_AutoML/TaxiFarePrediction/MLModels/TaxiFareModel.zip",
  2474. "format": "ML.NET v1.0.27701.1",
  2475. "link": "https://github.com/dotnet/machinelearning-samples"
  2476. },
  2477. {
  2478. "type": "mlnet",
  2479. "target": "termlookup_with_key.zip",
  2480. "source": "https://github.com/lutzroeder/netron/files/4216237/termlookup_with_key.zip?raw=true",
  2481. "format": "ML.NET v1.0.0.0",
  2482. "link": "https://github.com/lutzroeder/netron/issues/170"
  2483. },
  2484. {
  2485. "type": "mlnet",
  2486. "target": "TinyYoloModel.zip",
  2487. "source": "https://raw.githubusercontent.com/dotnet/machinelearning-samples/61b428c746f39069a9d1d92f9e0f819e6beb30f3/samples/csharp/end-to-end-apps/DeepLearning_ObjectDetection_Onnx/OnnxObjectDetectionE2EAPP/ML/MLNETModel/TinyYoloModel.zip",
  2488. "format": "ML.NET v1.0.27701.1"
  2489. },
  2490. {
  2491. "type": "mnn",
  2492. "target": "inception-v3.mnn",
  2493. "source": "https://raw.githubusercontent.com/alibaba/MNN/master/benchmark/models/inception-v3.mnn",
  2494. "format": "MNN v2",
  2495. "link": "https://github.com/alibaba/MNN"
  2496. },
  2497. {
  2498. "type": "mnn",
  2499. "target": "mobilenet-v1-1.0.mnn",
  2500. "source": "https://raw.githubusercontent.com/alibaba/MNN/master/benchmark/models/mobilenet-v1-1.0.mnn",
  2501. "format": "MNN v2",
  2502. "link": "https://github.com/alibaba/MNN"
  2503. },
  2504. {
  2505. "type": "mnn",
  2506. "target": "MobileNetV2_224.mnn",
  2507. "source": "https://raw.githubusercontent.com/alibaba/MNN/master/benchmark/models/MobileNetV2_224.mnn",
  2508. "format": "MNN v2",
  2509. "link": "https://github.com/alibaba/MNN"
  2510. },
  2511. {
  2512. "type": "mnn",
  2513. "target": "resnet-v2-50.mnn",
  2514. "source": "https://raw.githubusercontent.com/alibaba/MNN/master/benchmark/models/resnet-v2-50.mnn",
  2515. "format": "MNN v2",
  2516. "link": "https://github.com/alibaba/MNN"
  2517. },
  2518. {
  2519. "type": "mnn",
  2520. "target": "simple.mnn",
  2521. "source": "https://github.com/lutzroeder/netron/files/3698466/simple.mnn.zip[simple.mnn]",
  2522. "format": "MNN v2",
  2523. "link": "https://github.com/lutzroeder/netron/issues/341"
  2524. },
  2525. {
  2526. "type": "mnn",
  2527. "target": "SqueezeNetV1.0.mnn",
  2528. "source": "https://raw.githubusercontent.com/alibaba/MNN/master/benchmark/models/SqueezeNetV1.0.mnn",
  2529. "format": "MNN v2",
  2530. "link": "https://github.com/alibaba/MNN"
  2531. },
  2532. {
  2533. "type": "mxnet",
  2534. "target": "arcface-resnet100.model",
  2535. "source": "https://s3.amazonaws.com/mxnet-model-server/onnx-arcface/arcface-resnet100.model",
  2536. "format": "MXNet Model Server v0.2"
  2537. },
  2538. {
  2539. "type": "mxnet",
  2540. "target": "bvlc_alexnet-symbol.json,bvlc_alexnet-0000.params",
  2541. "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",
  2542. "format": "MXNet v0.10.0",
  2543. "link": "https://github.com/rai-project/mxnet/blob/master/builtin_models/BVLC-AlexNet.yml"
  2544. },
  2545. {
  2546. "type": "mxnet",
  2547. "target": "caffenet.model",
  2548. "source": "https://s3.amazonaws.com/model-server/models/caffenet/caffenet.model",
  2549. "format": "MXNet Model Server v0.1",
  2550. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2551. },
  2552. {
  2553. "type": "mxnet",
  2554. "target": "caffenet.model",
  2555. "source": "https://s3.amazonaws.com/model-server/models/caffenet/caffenet.model",
  2556. "format": "MXNet Model Server v0.1",
  2557. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2558. },
  2559. {
  2560. "type": "mxnet",
  2561. "target": "crepe.mar",
  2562. "source": "https://s3.amazonaws.com/model-server/model_archive_1.0/crepe.mar",
  2563. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2564. },
  2565. {
  2566. "type": "mxnet",
  2567. "target": "conv_weights_sharing.json",
  2568. "source": "https://github.com/lutzroeder/netron/files/3016064/conv_weights_sharing.json.zip[conv_weights_sharing.json]",
  2569. "format": "MXNet v1.3.0",
  2570. "link": "https://github.com/lutzroeder/netron/issues/245"
  2571. },
  2572. {
  2573. "type": "mxnet",
  2574. "target": "deep3d-symbol.json",
  2575. "source": "https://raw.githubusercontent.com/dmlc/mxnet-gtc-tutorial/master/deep3d/deep3d-symbol.json",
  2576. "format": "MXNet",
  2577. "link": "https://github.com/dmlc/mxnet-gtc-tutorial/tree/master/deep3d"
  2578. },
  2579. {
  2580. "type": "mxnet",
  2581. "target": "dpn68-symbol.json",
  2582. "source": "http://s3.amazonaws.com/store.carml.org/models/mxnet/dpn68/dpn68-symbol.json",
  2583. "format": "MXNet",
  2584. "link": "https://github.com/rai-project/mxnet/blob/master/builtin_models/DPN68.yml"
  2585. },
  2586. {
  2587. "type": "mxnet",
  2588. "target": "ferplus.model",
  2589. "source": "https://s3.amazonaws.com/model-server/models/FERPlus/ferplus.model",
  2590. "format": "MXNet Model Server v0.2",
  2591. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2592. },
  2593. {
  2594. "type": "mxnet",
  2595. "target": "inception_resnet_v2-symbol.json",
  2596. "source": "https://raw.githubusercontent.com/soeaver/mxnet-model/master/cls/inception/inception_resnet_v2-symbol.json",
  2597. "format": "MXNet v1.0.1",
  2598. "link": "https://github.com/soeaver/mxnet-model/tree/master/cls"
  2599. },
  2600. {
  2601. "type": "mxnet",
  2602. "target": "inception_v1.model",
  2603. "source": "https://s3.amazonaws.com/model-server/models/onnx-inception_v1/inception_v1.model",
  2604. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2605. },
  2606. {
  2607. "type": "mxnet",
  2608. "target": "inception_v3-symbol.json",
  2609. "source": "https://raw.githubusercontent.com/soeaver/mxnet-model/master/cls/inception/inception_v3-symbol.json",
  2610. "format": "MXNet v0.11.0",
  2611. "link": "https://github.com/soeaver/mxnet-model/tree/master/cls"
  2612. },
  2613. {
  2614. "type": "mxnet",
  2615. "target": "Inception-7-symbol.json",
  2616. "source": "https://raw.githubusercontent.com/bzshang/yelp-photo-classification/master/mxnet_model/inception_v3/Inception-7-symbol.json",
  2617. "format": "MXNet",
  2618. "link": "https://github.com/bzshang/yelp-photo-classification/tree/master/mxnet_model/inception_v3"
  2619. },
  2620. {
  2621. "type": "mxnet",
  2622. "target": "Inception-BN.model",
  2623. "source": "https://s3.amazonaws.com/model-server/models/inception-bn/Inception-BN.model"
  2624. },
  2625. {
  2626. "type": "mxnet",
  2627. "target": "Inception-BN-0126.params,Inception-BN-symbol.json",
  2628. "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",
  2629. "format": "MXNet",
  2630. "link": "https://mxnet.apache.org/model_zoo/index.html"
  2631. },
  2632. {
  2633. "type": "mxnet",
  2634. "target": "lstm_ptb.model",
  2635. "source": "https://s3.amazonaws.com/model-server/models/lstm_ptb/lstm_ptb.model",
  2636. "format": "MXNet Model Server v0.1",
  2637. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2638. },
  2639. {
  2640. "type": "mxnet",
  2641. "target": "lstm_ptb-symbol.json",
  2642. "source": "https://s3.amazonaws.com/model-server/models/lstm_ptb/lstm_ptb-symbol.json",
  2643. "format": "MXNet v0.11.0",
  2644. "link": "https://github.com/awslabs/mxnet-model-server/tree/master/examples/lstm_ptb"
  2645. },
  2646. {
  2647. "type": "mxnet",
  2648. "target": "mobilenet-v1-tvm.json",
  2649. "source": "https://github.com/lutzroeder/netron/files/2636924/mobilenet-v1-tvm.json.zip[mobilenet-v1-tvm.json]",
  2650. "format": "TVM",
  2651. "link": "https://github.com/lutzroeder/netron/issues/199"
  2652. },
  2653. {
  2654. "type": "mxnet",
  2655. "target": "nin.model",
  2656. "source": "https://s3.amazonaws.com/model-server/models/nin/nin.model",
  2657. "format": "MXNet Model Server v0.1",
  2658. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2659. },
  2660. {
  2661. "type": "mxnet",
  2662. "target": "resnet-18.model",
  2663. "source": "https://s3.amazonaws.com/model-server/models/resnet-18/resnet-18.model",
  2664. "format": "MXNet Model Server v0.1",
  2665. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2666. },
  2667. {
  2668. "type": "mxnet",
  2669. "target": "resnet-50-0000.params",
  2670. "source": "http://data.mxnet.io/models/imagenet/resnet/50-layers/resnet-50-0000.params",
  2671. "format": "MXNet",
  2672. "link": "https://github.com/awslabs/deeplearning-benchmark/blob/master/image_classification/common/modelzoo.py"
  2673. },
  2674. {
  2675. "type": "mxnet",
  2676. "target": "resnet-101-symbol.json",
  2677. "source": "http://data.mxnet.io/models/imagenet/resnet/101-layers/resnet-101-symbol.json",
  2678. "format": "MXNet",
  2679. "link": "https://github.com/awslabs/deeplearning-benchmark/blob/master/image_classification/common/modelzoo.py"
  2680. },
  2681. {
  2682. "type": "mxnet",
  2683. "target": "resnet-152.model",
  2684. "source": "https://s3.amazonaws.com/model-server/models/resnet-152/resnet-152.model",
  2685. "format": "MXNet Model Server v0.1",
  2686. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2687. },
  2688. {
  2689. "type": "mxnet",
  2690. "target": "resnet-152-symbol.json",
  2691. "source": "http://data.mxnet.io/models/imagenet/resnet/152-layers/resnet-152-symbol.json",
  2692. "format": "MXNet",
  2693. "link": "https://github.com/awslabs/deeplearning-benchmark/blob/master/image_classification/common/modelzoo.py"
  2694. },
  2695. {
  2696. "type": "mxnet",
  2697. "target": "resnet50_ssd_model.model",
  2698. "source": "https://s3.amazonaws.com/model-server/models/resnet50_ssd/resnet50_ssd_model.model",
  2699. "format": "MXNet Model Server v0.1",
  2700. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2701. },
  2702. {
  2703. "type": "mxnet",
  2704. "target": "ResNet_DUC_HDC.model",
  2705. "source": "https://s3.amazonaws.com/mxnet-model-server/onnx-duc/ResNet_DUC_HDC.model",
  2706. "format": "MXNet Model Server v0.2",
  2707. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2708. },
  2709. {
  2710. "type": "mxnet",
  2711. "target": "RN101-5k500-symbol.json,RN101-5k500-0000.params",
  2712. "source": "https://s3.amazonaws.com/mmcommons-tutorial/models/RN101-5k500-symbol.json,https://s3.amazonaws.com/mmcommons-tutorial/models/RN101-5k500-0012.params",
  2713. "format": "MXNet v0.9.4",
  2714. "link": "https://mxnet.apache.org/model_zoo/index.html"
  2715. },
  2716. {
  2717. "type": "mxnet",
  2718. "target": "mobilenetv2-1.0.model",
  2719. "source": "https://s3.amazonaws.com/mxnet-model-server/onnx-mobilenet/mobilenetv2-1.0.model",
  2720. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2721. },
  2722. {
  2723. "type": "mxnet",
  2724. "target": "resnet101v2.model",
  2725. "source": "https://s3.amazonaws.com/mxnet-model-server/onnx-resnetv2/resnet101v2.model",
  2726. "format": "MXNet Model Server v0.2", "runtime": "MXNet v1.2.0",
  2727. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2728. },
  2729. {
  2730. "type": "mxnet",
  2731. "target": "resnet152v1.model",
  2732. "source": "https://s3.amazonaws.com/mxnet-model-server/onnx-resnetv1/resnet152v1.model",
  2733. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2734. },
  2735. {
  2736. "type": "mxnet",
  2737. "target": "resnet18v2.model",
  2738. "source": "https://s3.amazonaws.com/mxnet-model-server/onnx-resnetv2/resnet18v2.model",
  2739. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2740. },
  2741. {
  2742. "type": "mxnet",
  2743. "target": "resnet34v1.model",
  2744. "source": "https://s3.amazonaws.com/mxnet-model-server/onnx-resnetv1/resnet34v1.model",
  2745. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2746. },
  2747. {
  2748. "type": "mxnet",
  2749. "target": "resnet34v2.model",
  2750. "source": "https://s3.amazonaws.com/mxnet-model-server/onnx-resnetv2/resnet34v2.model",
  2751. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2752. },
  2753. {
  2754. "type": "mxnet",
  2755. "target": "resnet50v1.model",
  2756. "source": "https://s3.amazonaws.com/mxnet-model-server/onnx-resnetv1/resnet50v1.model",
  2757. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2758. },
  2759. {
  2760. "type": "mxnet",
  2761. "target": "resnet50v2.model",
  2762. "source": "https://s3.amazonaws.com/mxnet-model-server/onnx-resnetv2/resnet50v2.model",
  2763. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2764. },
  2765. {
  2766. "type": "mxnet",
  2767. "target": "resnext-101-64x4d.model",
  2768. "source": "https://s3.amazonaws.com/model-server/models/resnext-101-64x4d/resnext-101-64x4d.model",
  2769. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2770. },
  2771. {
  2772. "type": "mxnet",
  2773. "target": "squeezenet.model",
  2774. "source": "https://s3.amazonaws.com/model-server/models/onnx-squeezenet/squeezenet.model"
  2775. },
  2776. {
  2777. "type": "mxnet",
  2778. "target": "squeezenet_v1.1.model",
  2779. "source": "https://s3.amazonaws.com/model-server/models/squeezenet_v1.1/squeezenet_v1.1.model"
  2780. },
  2781. {
  2782. "type": "mxnet",
  2783. "target": "squeezenet_v1.1.mar",
  2784. "source": "https://s3.amazonaws.com/model-server/model_archive_1.0/squeezenet_v1.1.mar",
  2785. "format": "MXNet Model Archive v1.0",
  2786. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2787. },
  2788. {
  2789. "type": "mxnet",
  2790. "target": "squeezenet_v1.1.zip",
  2791. "source": "https://s3.amazonaws.com/model-server/model_archive_1.0/squeezenet_v1.1.mar",
  2792. "format": "MXNet",
  2793. "link": "https://github.com/awslabs/mxnet-model-server/blob/master/docs/model_zoo.md"
  2794. },
  2795. {
  2796. "type": "mxnet",
  2797. "target": "vgg16.mar",
  2798. "source": "https://s3.amazonaws.com/model-server/model_archive_1.0/vgg16.mar"
  2799. },
  2800. {
  2801. "type": "mxnet",
  2802. "target": "vgg16_bn.model",
  2803. "source": "https://s3.amazonaws.com/mxnet-model-server/onnx-vgg16_bn/vgg16_bn.model"
  2804. },
  2805. {
  2806. "type": "ncnn",
  2807. "target": "centerface.param,centerface.bin",
  2808. "source": "https://raw.githubusercontent.com/MirrorYuChen/ncnn_example/798f64b7d5f0b883e05cb994258d43658b0661b6/models/centerface.param,https://raw.githubusercontent.com/MirrorYuChen/ncnn_example/798f64b7d5f0b883e05cb994258d43658b0661b6/models/centerface.bin",
  2809. "format": "ncnn",
  2810. "link": "https://github.com/MirrorYuChen/ncnn_example"
  2811. },
  2812. {
  2813. "type": "ncnn",
  2814. "target": "darknet_yolov2.cfg.ncnn,darknet_yolov2.weights.ncnn",
  2815. "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",
  2816. "format": "ncnn",
  2817. "link": "https://github.com/00liujj/gen-ncnn-models"
  2818. },
  2819. {
  2820. "type": "ncnn",
  2821. "target": "frozen.pb.cfg.ncnn,frozen.pb.weights.ncnn",
  2822. "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",
  2823. "format": "ncnn",
  2824. "link": "https://github.com/00liujj/gen-ncnn-models"
  2825. },
  2826. {
  2827. "type": "ncnn",
  2828. "target": "googlenet.param",
  2829. "source": "https://raw.githubusercontent.com/Tencent/ncnn/master/benchmark/googlenet.param",
  2830. "format": "ncnn",
  2831. "link": "https://github.com/Tencent/ncnn"
  2832. },
  2833. {
  2834. "type": "ncnn",
  2835. "target": "mnet-opt.param,mnet-opt.bin",
  2836. "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",
  2837. "format": "ncnn",
  2838. "link": "https://github.com/MirrorYuChen/ncnn_example"
  2839. },
  2840. {
  2841. "type": "ncnn",
  2842. "target": "mobilefacenet.bin,mobilefacenet.param",
  2843. "source": "https://raw.githubusercontent.com/GRAYKEY/mobilefacenet_ncnn/master/models/mobilefacenet.bin,https://raw.githubusercontent.com/GRAYKEY/mobilefacenet_ncnn/master/models/mobilefacenet.param",
  2844. "format": "ncnn",
  2845. "link": "https://github.com/GRAYKEY/mobilefacenet_ncnn"
  2846. },
  2847. {
  2848. "type": "ncnn",
  2849. "target": "mobilenetv2_yolov3.param",
  2850. "source": "https://raw.githubusercontent.com/Tencent/ncnn/master/benchmark/mobilenetv2_yolov3.param",
  2851. "format": "ncnn",
  2852. "link": "https://github.com/Tencent/ncnn"
  2853. },
  2854. {
  2855. "type": "ncnn",
  2856. "target": "MobileNetSSD_deploy.param.bin,MobileNetSSD_deploy.bin",
  2857. "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",
  2858. "format": "ncnn",
  2859. "link": "https://github.com/chehongshu/ncnnforandroid_objectiondetection_Mobilenetssd"
  2860. },
  2861. {
  2862. "type": "ncnn",
  2863. "target": "ncnn_yolo2_det3.bin,ncnn_yolo2_det3.param",
  2864. "source": "https://raw.githubusercontent.com/kyo055/ncnn_yolo2/master/models/det3.bin,https://raw.githubusercontent.com/kyo055/ncnn_yolo2/master/models/det3.param",
  2865. "format": "ncnn",
  2866. "link": "https://github.com/kyo055/ncnn_yolo2"
  2867. },
  2868. {
  2869. "type": "ncnn",
  2870. "target": "netron_issue_397.param",
  2871. "source": "https://github.com/lutzroeder/netron/files/3981934/det.txt",
  2872. "format": "ncnn",
  2873. "link": "https://github.com/lutzroeder/netron/issues/397"
  2874. },
  2875. {
  2876. "type": "ncnn",
  2877. "target": "proxylessnasnet.param",
  2878. "source": "https://raw.githubusercontent.com/Tencent/ncnn/master/benchmark/proxylessnasnet.param",
  2879. "format": "ncnn",
  2880. "link": "https://github.com/Tencent/ncnn"
  2881. },
  2882. {
  2883. "type": "ncnn",
  2884. "target": "resnet18_int8.param",
  2885. "source": "https://raw.githubusercontent.com/Tencent/ncnn/master/benchmark/resnet18_int8.param",
  2886. "format": "ncnn",
  2887. "link": "https://github.com/Tencent/ncnn"
  2888. },
  2889. {
  2890. "type": "ncnn",
  2891. "target": "shufflenet.param",
  2892. "source": "https://raw.githubusercontent.com/Tencent/ncnn/master/benchmark/shufflenet.param",
  2893. "format": "ncnn",
  2894. "link": "https://github.com/Tencent/ncnn"
  2895. },
  2896. {
  2897. "type": "ncnn",
  2898. "target": "squeezenet.param",
  2899. "source": "https://raw.githubusercontent.com/Tencent/ncnn/master/benchmark/squeezenet.param",
  2900. "format": "ncnn",
  2901. "link": "https://github.com/Tencent/ncnn"
  2902. },
  2903. {
  2904. "type": "ncnn",
  2905. "target": "faces_wider_squeezenet.param,faces_wider_squeezenet.bin",
  2906. "source": "https://deepdetect.com/models/init/embedded/images/detection/squeezenet_ssd_faces_ncnn.tar.gz[faces_wider_squeezenet.param,faces_wider_squeezenet.bin]",
  2907. "format": "ncnn",
  2908. "link": "https://www.deepdetect.com/models/faces_embedded_ncnn"
  2909. },
  2910. {
  2911. "type": "ncnn",
  2912. "target": "squeezenet_v1.1.param.bin,squeezenet_v1.1.bin",
  2913. "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",
  2914. "format": "ncnn",
  2915. "link": "https://github.com/Tencent/ncnn"
  2916. },
  2917. {
  2918. "type": "ncnn",
  2919. "target": "squeezenet_v1.1.bin",
  2920. "source": "https://raw.githubusercontent.com/nihui/ncnn-android-squeezenet/master/app/src/main/assets/squeezenet_v1.1.bin",
  2921. "error": "File not found 'squeezenet_v1.1.param' in 'squeezenet_v1.1.bin'.",
  2922. "link": "https://github.com/Tencent/ncnn"
  2923. },
  2924. {
  2925. "type": "ncnn",
  2926. "target": "vgg16.param",
  2927. "source": "https://raw.githubusercontent.com/Tencent/ncnn/master/benchmark/vgg16.param",
  2928. "format": "ncnn",
  2929. "link": "https://github.com/Tencent/ncnn"
  2930. },
  2931. {
  2932. "type": "onnx",
  2933. "target": "arcface-resnet100.onnx",
  2934. "source": "https://s3.amazonaws.com/onnx-model-zoo/arcface/resnet100/resnet100.onnx",
  2935. "format": "ONNX v3",
  2936. "link": "https://github.com/onnx/models/tree/master/models/face_recognition/ArcFace"
  2937. },
  2938. {
  2939. "type": "onnx",
  2940. "target": "bidaf.onnx",
  2941. "source": "https://onnxzoo.blob.core.windows.net/models/opset_9/bidaf/bidaf.onnx",
  2942. "format": "ONNX v4", "producer": "CNTK 2.7",
  2943. "link": "https://github.com/onnx/models/tree/master/bidaf"
  2944. },
  2945. {
  2946. "type": "onnx",
  2947. "target": "bertsquad-10.onnx",
  2948. "source": "https://github.com/onnx/models/blob/master/text/machine_comprehension/bert-squad/model/bertsquad-10.onnx?raw=true",
  2949. "format": "ONNX v5", "producer": "tf2onnx 1.5.2",
  2950. "render": "skip",
  2951. "link": "https://github.com/onnx/models/blob/master/text/machine_comprehension/bert-squad/README.md"
  2952. },
  2953. {
  2954. "type": "onnx",
  2955. "target": "bvlc_alexnet_opset_3.onnx",
  2956. "source": "https://s3.amazonaws.com/download.onnx/models/opset_3/bvlc_alexnet.tar.gz[bvlc_alexnet/model.onnx]",
  2957. "link": "https://github.com/onnx/models/tree/master/bvlc_alexnet"
  2958. },
  2959. {
  2960. "type": "onnx",
  2961. "target": "bvlc_alexnet_opset_9.onnx",
  2962. "source": "https://s3.amazonaws.com/download.onnx/models/opset_9/bvlc_alexnet.tar.gz[bvlc_alexnet/model.onnx]",
  2963. "link": "https://github.com/onnx/models/tree/master/bvlc_alexnet"
  2964. },
  2965. {
  2966. "type": "onnx",
  2967. "target": "bvlc_googlenet_opset_9.onnx",
  2968. "source": "https://s3.amazonaws.com/download.onnx/models/opset_9/bvlc_googlenet.tar.gz[bvlc_googlenet/model.onnx]",
  2969. "link": "https://github.com/onnx/models/tree/master/bvlc_googlenet"
  2970. },
  2971. {
  2972. "type": "onnx",
  2973. "target": "bvlc_reference_caffenet_opset_9.onnx",
  2974. "source": "https://s3.amazonaws.com/download.onnx/models/opset_9/bvlc_reference_caffenet.tar.gz[bvlc_reference_caffenet/model.onnx]"
  2975. },
  2976. {
  2977. "type": "onnx",
  2978. "target": "bvlc_reference_rcnn_ilsvrc13_opset_9.onnx",
  2979. "source": "https://s3.amazonaws.com/download.onnx/models/opset_9/bvlc_reference_rcnn_ilsvrc13.tar.gz[bvlc_reference_rcnn_ilsvrc13/model.onnx]",
  2980. "link": "https://github.com/onnx/models/tree/master/bvlc_reference_rcnn_ilsvrc13"
  2981. },
  2982. {
  2983. "type": "onnx",
  2984. "target": "candy.onnx",
  2985. "source": "https://raw.githubusercontent.com/Microsoft/Windows-Machine-Learning/master/Samples/FNSCandyStyleTransfer/UWP/cs/Assets/candy.onnx",
  2986. "format": "ONNX v3",
  2987. "link": "https://github.com/Microsoft/Windows-Machine-Learning/tree/master/Samples/FNSCandyStyleTransfer/UWP/cs/Assets"
  2988. },
  2989. {
  2990. "type": "onnx",
  2991. "target": "conv_autopad.onnx",
  2992. "source": "https://raw.githubusercontent.com/microsoft/onnxruntime/master/onnxruntime/test/testdata/conv_autopad.onnx",
  2993. "format": "ONNX v3",
  2994. "link": "https://github.com/microsoft/onnxruntime/tree/master/onnxruntime/test/testdata"
  2995. },
  2996. {
  2997. "type": "onnx",
  2998. "target": "denotation_Add_ImageNet1920WithImageMetadataBgr8_SRGB_0_255.onnx",
  2999. "source": "https://github.com/lutzroeder/netron/files/2587943/onnx_denotation_models.zip[denotation_Add_ImageNet1920WithImageMetadataBgr8_SRGB_0_255.onnx]",
  3000. "format": "ONNX v3",
  3001. "link": "https://github.com/lutzroeder/netron/issues/183"
  3002. },
  3003. {
  3004. "type": "onnx",
  3005. "target": "denotation_Add_ImageNet1920WithImageMetadataBgra8_SRGB_0_255.onnx",
  3006. "source": "https://github.com/lutzroeder/netron/files/2587943/onnx_denotation_models.zip[denotation_Add_ImageNet1920WithImageMetadataBgra8_SRGB_0_255.onnx]",
  3007. "format": "ONNX v3",
  3008. "link": "https://github.com/lutzroeder/netron/issues/183"
  3009. },
  3010. {
  3011. "type": "onnx",
  3012. "target": "denotation_Add_ImageNet1920WithImageMetadataRgb8_SRGB_0_255.onnx",
  3013. "source": "https://github.com/lutzroeder/netron/files/2587943/onnx_denotation_models.zip[denotation_Add_ImageNet1920WithImageMetadataRgb8_SRGB_0_255.onnx]",
  3014. "format": "ONNX v3",
  3015. "link": "https://github.com/lutzroeder/netron/issues/183"
  3016. },
  3017. {
  3018. "type": "onnx",
  3019. "target": "denotation_Add_ImageNet1920WithImageMetadataRgba8_SRGB_0_255.onnx",
  3020. "source": "https://github.com/lutzroeder/netron/files/2587943/onnx_denotation_models.zip[denotation_Add_ImageNet1920WithImageMetadataRgba8_SRGB_0_255.onnx]",
  3021. "format": "ONNX v3",
  3022. "link": "https://github.com/lutzroeder/netron/issues/183"
  3023. },
  3024. {
  3025. "type": "onnx",
  3026. "target": "densenet121_opset_9.tar.gz",
  3027. "source": "https://s3.amazonaws.com/download.onnx/models/opset_9/densenet121.tar.gz"
  3028. },
  3029. {
  3030. "type": "onnx",
  3031. "target": "densenet121_opset_9.onnx",
  3032. "source": "https://s3.amazonaws.com/download.onnx/models/opset_9/densenet121.tar.gz[densenet121/model.onnx]"
  3033. },
  3034. {
  3035. "type": "onnx",
  3036. "target": "DocumentClassification.onnx",
  3037. "source": "https://github.com/lutzroeder/netron/files/2592479/DocumentClassification.onnx.zip[DocumentClassification.onnx]",
  3038. "format": "ONNX v3",
  3039. "link": "https://github.com/lutzroeder/netron/issues/188"
  3040. },
  3041. {
  3042. "type": "onnx",
  3043. "target": "eisber_model3.pbtxt",
  3044. "source": "https://github.com/lutzroeder/netron/files/4209090/eisber_model3.pbtxt.zip[eisber_model3.pbtxt]",
  3045. "format": "ONNX v3",
  3046. "link": "https://github.com/lutzroeder/netron/issues/188"
  3047. },
  3048. {
  3049. "type": "onnx",
  3050. "target": "Exermote.onnx",
  3051. "source": "https://github.com/lutzroeder/netron/files/2592478/Exermote.onnx.zip[Exermote.onnx]",
  3052. "format": "ONNX v3",
  3053. "link": "https://github.com/lutzroeder/netron/issues/188"
  3054. },
  3055. {
  3056. "type": "onnx",
  3057. "target": "emoji8.onnx",
  3058. "source": "https://raw.githubusercontent.com/Microsoft/Windows-Machine-Learning/master/Samples/Emoji8/UWP/cs/Emoji8/Models/model.onnx",
  3059. "format": "ONNX v3",
  3060. "link": "https://github.com/Microsoft/Windows-Machine-Learning/tree/master/Samples/Emoji8/UWP/cs/Emoji8"
  3061. },
  3062. {
  3063. "type": "onnx",
  3064. "target": "emotion_ferplus_opset_8.onnx",
  3065. "source": "https://onnxzoo.blob.core.windows.net/models/opset_8/emotion_ferplus/emotion_ferplus.tar.gz[emotion_ferplus/model.onnx]"
  3066. },
  3067. {
  3068. "type": "onnx",
  3069. "target": "FastStyleNet.onnx",
  3070. "source": "https://raw.githubusercontent.com/tkat0/chainer-nnvm-example/master/models/chainer-fast-neuralstyle/FastStyleNet.onnx",
  3071. "format": "ONNX v1", "producer": "Chainer 3.2.0"
  3072. },
  3073. {
  3074. "type": "onnx",
  3075. "target": "gzip_invalid_archive.tar.gz",
  3076. "source": "https://github.com/lutzroeder/netron/files/3027192/gzip_invalid_archive.tar.gz",
  3077. "error": "Invalid GZIP archive in 'gzip_invalid_archive.tar.gz'.",
  3078. "link": "https://github.com/lutzroeder/netron/issues/249"
  3079. },
  3080. {
  3081. "type": "onnx",
  3082. "target": "gzip_invalid_compression.tar.gz",
  3083. "source": "https://github.com/lutzroeder/netron/files/3027193/gzip_invalid_compression.tar.gz",
  3084. "error": "Invalid compression method '1' in 'gzip_invalid_compression.tar.gz'.",
  3085. "link": "https://github.com/lutzroeder/netron/issues/249"
  3086. },
  3087. {
  3088. "type": "onnx",
  3089. "target": "input_0.pb",
  3090. "source": "https://s3.amazonaws.com/download.onnx/models/opset_9/shufflenet.tar.gz[shufflenet/test_data_set_0/input_0.pb]",
  3091. "error": "Unsupported file content for extension '.pb' in 'input_0.pb'.",
  3092. "link": "https://github.com/onnx/models/tree/master/bvlc_alexnet"
  3093. },
  3094. {
  3095. "type": "onnx",
  3096. "target": "inception_v1_opset_9.onnx",
  3097. "source": "https://s3.amazonaws.com/download.onnx/models/opset_9/inception_v1.tar.gz[inception_v1/model.onnx]"
  3098. },
  3099. {
  3100. "type": "onnx",
  3101. "target": "inception_v2_opset_6.onnx",
  3102. "source": "https://s3.amazonaws.com/download.onnx/models/opset_6/inception_v2.tar.gz[inception_v2/model.onnx]"
  3103. },
  3104. {
  3105. "type": "onnx",
  3106. "target": "inception_v2_opset_8.onnx",
  3107. "source": "https://s3.amazonaws.com/download.onnx/models/opset_8/inception_v2.tar.gz[inception_v2/model.onnx]"
  3108. },
  3109. {
  3110. "type": "onnx",
  3111. "target": "inception_v2_opset_9.onnx",
  3112. "source": "https://s3.amazonaws.com/download.onnx/models/opset_9/inception_v2.tar.gz[inception_v2/model.onnx]"
  3113. },
  3114. {
  3115. "type": "onnx",
  3116. "target": "Kmeans.onnx",
  3117. "source": "https://github.com/lutzroeder/netron/files/2592495/Kmeans.onnx.zip[Kmeans.onnx]",
  3118. "format": "ONNX v3", "producer": "ML.NET 0.7.27009.0",
  3119. "link": "https://github.com/lutzroeder/netron/issues/188"
  3120. },
  3121. {
  3122. "type": "onnx",
  3123. "target": "Kmeans.pbtxt",
  3124. "source": "https://github.com/lutzroeder/netron/files/4209089/Kmeans.pbtxt.zip[Kmeans.pbtxt]",
  3125. "format": "ONNX v3", "producer": "ML.NET 0.7.27009.0",
  3126. "link": "https://github.com/lutzroeder/netron/issues/139"
  3127. },
  3128. {
  3129. "type": "onnx",
  3130. "target": "LabelEncoder.onnx",
  3131. "source": "https://raw.githubusercontent.com/microsoft/onnxruntime/master/onnxruntime/test/testdata/LabelEncoder.onnx",
  3132. "format": "ONNX v3",
  3133. "link": "https://github.com/Microsoft/onnxruntime/tree/master/onnxruntime/test/testdata"
  3134. },
  3135. {
  3136. "type": "onnx",
  3137. "target": "mnist.onnx",
  3138. "source": "https://raw.githubusercontent.com/Microsoft/Windows-Machine-Learning/master/Samples/MNIST/Tutorial/cs/Assets/mnist.onnx",
  3139. "format": "ONNX v3",
  3140. "link": "https://github.com/Microsoft/Windows-Machine-Learning/tree/master/Samples/MNIST/Tutorial/cs/Assets"
  3141. },
  3142. {
  3143. "type": "onnx",
  3144. "target": "mnist_opset_9.onnx",
  3145. "source": "https://onnxzoo.blob.core.windows.net/models/opset_8/mnist/mnist.tar.gz[mnist/model.onnx]"
  3146. },
  3147. {
  3148. "type": "onnx",
  3149. "target": "mlnet_encoder.onnx",
  3150. "source": "https://raw.githubusercontent.com/Microsoft/onnxruntime/master/onnxruntime/test/testdata/mlnet_encoder.onnx",
  3151. "format": "ONNX v3",
  3152. "link": "https://github.com/Microsoft/onnxruntime/tree/master/onnxruntime/test/testdata"
  3153. },
  3154. {
  3155. "type": "onnx",
  3156. "target": "netron_issue_119.onnx",
  3157. "source": "https://github.com/lutzroeder/netron/files/4260629/netron_issue_119.zip[netron_issue_119.onnx]",
  3158. "format": "ONNX v4",
  3159. "link": "https://github.com/lutzroeder/netron/issues/119"
  3160. },
  3161. {
  3162. "type": "onnx",
  3163. "target": "netron_issue168_onnx_if.pbtxt",
  3164. "source": "https://github.com/lutzroeder/netron/files/3239859/netron_issue168_onnx.zip[netron_issue168_onnx_if.pbtxt]",
  3165. "format": "ONNX v3",
  3166. "link": "https://github.com/lutzroeder/netron/issues/168"
  3167. },
  3168. {
  3169. "type": "onnx",
  3170. "target": "netron_issue168_onnx_loop.pbtxt",
  3171. "source": "https://github.com/lutzroeder/netron/files/3239859/netron_issue168_onnx.zip[netron_issue168_onnx_loop.pbtxt]",
  3172. "format": "ONNX v3",
  3173. "link": "https://github.com/lutzroeder/netron/issues/168"
  3174. },
  3175. {
  3176. "type": "onnx",
  3177. "target": "netron_issue168_onnx_scan.pbtxt",
  3178. "source": "https://github.com/lutzroeder/netron/files/3239859/netron_issue168_onnx.zip[netron_issue168_onnx_scan.pbtxt]",
  3179. "format": "ONNX v3",
  3180. "link": "https://github.com/lutzroeder/netron/issues/168"
  3181. },
  3182. {
  3183. "type": "onnx",
  3184. "target": "optional_1.onnx",
  3185. "source": "https://raw.githubusercontent.com/microsoft/onnxruntime/master/onnxruntime/test/testdata/optional_1.onnx",
  3186. "format": "ONNX v3",
  3187. "link": "https://github.com/microsoft/onnxruntime/tree/master/onnxruntime/test/testdata"
  3188. },
  3189. {
  3190. "type": "onnx",
  3191. "target": "resnet50_opset_9.onnx",
  3192. "source": "https://s3.amazonaws.com/download.onnx/models/opset_9/resnet50.tar.gz[resnet50/model.onnx]"
  3193. },
  3194. {
  3195. "type": "onnx",
  3196. "target": "resnet50v2.onnx",
  3197. "source": "https://s3.amazonaws.com/onnx-model-zoo/resnet/resnet50v2/resnet50v2.onnx"
  3198. },
  3199. {
  3200. "type": "onnx",
  3201. "target": "ResNet101_DUC_HDC.onnx",
  3202. "source": "https://s3.amazonaws.com/onnx-model-zoo/duc/ResNet101_DUC_HDC.onnx"
  3203. },
  3204. {
  3205. "type": "onnx",
  3206. "target": "reshape_opset_4.pb",
  3207. "source": "https://github.com/lutzroeder/netron/files/2592375/reshape_opset.zip[reshape_opset_4.pb]",
  3208. "format": "ONNX v3",
  3209. "link": "https://github.com/lutzroeder/netron/pull/97"
  3210. },
  3211. {
  3212. "type": "onnx",
  3213. "target": "reshape_opset_6.pb",
  3214. "source": "https://github.com/lutzroeder/netron/files/2592375/reshape_opset.zip[reshape_opset_6.pb]",
  3215. "format": "ONNX v3",
  3216. "link": "https://github.com/lutzroeder/netron/pull/97"
  3217. },
  3218. {
  3219. "type": "onnx",
  3220. "target": "shufflenet_float16.onnx",
  3221. "source": "https://github.com/lutzroeder/netron/files/2592368/shufflenet_float16.onnx.zip[shufflenet_float16.onnx]",
  3222. "format": "ONNX v3",
  3223. "link": "https://github.com/lutzroeder/netron/issues/186"
  3224. },
  3225. {
  3226. "type": "onnx",
  3227. "target": "shufflenet_opset_9.onnx",
  3228. "source": "https://s3.amazonaws.com/download.onnx/models/opset_9/shufflenet.tar.gz[shufflenet/model.onnx]",
  3229. "link": "https://github.com/onnx/models/tree/master/shufflenet"
  3230. },
  3231. {
  3232. "type": "onnx",
  3233. "target": "squeezenet.onnx",
  3234. "source": "https://raw.githubusercontent.com/onnx/tutorials/master/tutorials/assets/squeezenet.onnx",
  3235. "format": "ONNX v1", "producer": "pytorch 0.2"
  3236. },
  3237. {
  3238. "type": "onnx",
  3239. "target": "squeezenet1.1.onnx",
  3240. "source": "https://s3.amazonaws.com/onnx-model-zoo/squeezenet/squeezenet1.1/squeezenet1.1.onnx",
  3241. "format": "ONNX v3",
  3242. "link": "https://github.com/onnx/models/tree/master/vision/classification/squeezenet"
  3243. },
  3244. {
  3245. "type": "onnx",
  3246. "target": "squeezenet1.1_shape.onnx",
  3247. "source": "https://github.com/lutzroeder/netron/files/3935903/squeezenet1.1_shape.onnx.zip[squeezenet1.1_shape.onnx]",
  3248. "format": "ONNX v3",
  3249. "link": "https://github.com/lutzroeder/netron/issues/188"
  3250. },
  3251. {
  3252. "type": "onnx",
  3253. "target": "squeezenet1.1.pb",
  3254. "source": "https://s3.amazonaws.com/onnx-model-zoo/squeezenet/squeezenet1.1/squeezenet1.1.onnx",
  3255. "format": "ONNX v3",
  3256. "link": "https://github.com/onnx/models/tree/master/models/image_classification/squeezenet"
  3257. },
  3258. {
  3259. "type": "onnx",
  3260. "target": "squeezenet1.1.tgz",
  3261. "source": "https://s3.amazonaws.com/onnx-model-zoo/squeezenet/squeezenet1.1/squeezenet1.1.tar.gz",
  3262. "format": "ONNX v3",
  3263. "link": "https://github.com/onnx/models/tree/master/models/image_classification/squeezenet"
  3264. },
  3265. {
  3266. "type": "onnx",
  3267. "target": "ssd.onnx",
  3268. "source": "https://onnxzoo.blob.core.windows.net/models/opset_10/ssd/ssd.onnx",
  3269. "format": "ONNX v4",
  3270. "link": "https://github.com/onnx/models/tree/master/ssd"
  3271. },
  3272. {
  3273. "type": "onnx",
  3274. "target": "super_resolution.onnx",
  3275. "source": "https://github.com/onnx/models/blob/master/vision/super_resolution/sub_pixel_cnn_2016/model/super_resolution.onnx?raw=true",
  3276. "format": "ONNX v4", "producer": "pytorch 1.1",
  3277. "link": "https://github.com/onnx/models/tree/master/vision/super_resolution"
  3278. },
  3279. {
  3280. "type": "onnx",
  3281. "target": "super_resolution_0.2.onnx",
  3282. "source": "https://gist.github.com/zhreshold/bcda4716699ac97ea44f791c24310193/raw/93672b029103648953c4e5ad3ac3aadf346a4cdc/super_resolution_0.2.onnx",
  3283. "format": "ONNX v1", "producer": "pytorch 0.2"
  3284. },
  3285. {
  3286. "type": "onnx",
  3287. "target": "test_LSTM_tanh_bidirectional.onnx",
  3288. "source": "https://raw.githubusercontent.com/microsoft/onnxruntime/master/onnxruntime/test/testdata/CNTK/test_LSTM.tanh.bidirectional//model.onnx",
  3289. "format": "ONNX v3",
  3290. "link": "https://github.com/microsoft/onnxruntime/tree/master/onnxruntime/test/testdata"
  3291. },
  3292. {
  3293. "type": "onnx",
  3294. "target": "test_RNN_bidirectional_one_layer_relu.onnx",
  3295. "source": "https://raw.githubusercontent.com/microsoft/onnxruntime/master/onnxruntime/test/testdata/CNTK/test_RNN.bidirectional.one_layer.relu//model.onnx",
  3296. "format": "ONNX v3",
  3297. "link": "https://github.com/microsoft/onnxruntime/tree/master/onnxruntime/test/testdata"
  3298. },
  3299. {
  3300. "type": "onnx",
  3301. "target": "test_lstm_with_peepholes.onnx",
  3302. "source": "https://raw.githubusercontent.com/onnx/onnx/master/onnx/backend/test/data/node/test_lstm_with_peepholes/model.onnx",
  3303. "format": "ONNX v3",
  3304. "link": "https://github.com/onnx/onnx/tree/master/onnx/backend/test/data"
  3305. },
  3306. {
  3307. "type": "onnx",
  3308. "target": "tiny_yolov2_opset_8.onnx",
  3309. "source": "https://onnxzoo.blob.core.windows.net/models/opset_8/tiny_yolov2/tiny_yolov2.tar.gz[tiny_yolov2/./Model.onnx]",
  3310. "link": "https://github.com/onnx/models/tree/master/vision/object_detection_segmentation/tiny_yolov2"
  3311. },
  3312. {
  3313. "type": "onnx",
  3314. "target": "YOLOv2_tiny.onnx",
  3315. "source": "https://raw.githubusercontent.com/tkat0/chainer-nnvm-example/master/models/YOLOv2_tiny/YOLOv2_tiny.onnx"
  3316. },
  3317. {
  3318. "type": "onnx",
  3319. "target": "yolov3.onnx",
  3320. "source": "https://onnxzoo.blob.core.windows.net/models/opset_10/yolov3/yolov3.onnx",
  3321. "format": "ONNX v5", "producer": "keras2onnx 1.5.1",
  3322. "link": "https://github.com/onnx/models/tree/master/yolov3"
  3323. },
  3324. {
  3325. "type": "onnx",
  3326. "target": "vgg16.onnx",
  3327. "source": "https://s3.amazonaws.com/onnx-model-zoo/vgg/vgg16/vgg16.onnx",
  3328. "link": "https://github.com/onnx/models/tree/master/models/image_classification/vgg"
  3329. },
  3330. {
  3331. "type": "onnx",
  3332. "target": "vgg16-bn.onnx",
  3333. "source": "https://s3.amazonaws.com/onnx-model-zoo/vgg/vgg16-bn/vgg16-bn.onnx",
  3334. "link": "https://github.com/onnx/models/tree/master/models/image_classification/vgg"
  3335. },
  3336. {
  3337. "type": "onnx",
  3338. "target": "vgg19.onnx",
  3339. "source": "https://s3.amazonaws.com/onnx-model-zoo/vgg/vgg19/vgg19.onnx",
  3340. "link": "https://github.com/onnx/models/tree/master/models/image_classification/vgg"
  3341. },
  3342. {
  3343. "type": "onnx",
  3344. "target": "vgg19-bn.onnx",
  3345. "source": "https://s3.amazonaws.com/onnx-model-zoo/vgg/vgg19-bn/vgg19-bn.onnx",
  3346. "link": "https://github.com/onnx/models/tree/master/models/image_classification/vgg"
  3347. },
  3348. {
  3349. "type": "onnx",
  3350. "target": "vgg19_opset_9.onnx",
  3351. "source": "https://s3.amazonaws.com/download.onnx/models/opset_9/vgg19.tar.gz[vgg19/model.onnx]"
  3352. },
  3353. {
  3354. "type": "onnx",
  3355. "target": "zfnet512_opset_9.onnx",
  3356. "source": "https://s3.amazonaws.com/download.onnx/models/opset_9/zfnet512.tar.gz[zfnet512/model.onnx]",
  3357. "link": "https://github.com/onnx/models/blob/master/zfnet512/README.md"
  3358. },
  3359. {
  3360. "type": "onnx",
  3361. "target": "zip_invalid_archive.zip",
  3362. "source": "https://github.com/lutzroeder/netron/files/3027198/zip_invalid_archive.zip",
  3363. "error": "Invalid ZIP archive in 'zip_invalid_archive.zip'.",
  3364. "link": "https://github.com/lutzroeder/netron/issues/250"
  3365. },
  3366. {
  3367. "type": "onnx",
  3368. "target": "zipmap_int64float.onnx",
  3369. "source": "https://raw.githubusercontent.com/microsoft/onnxruntime/master/onnxruntime/test/testdata/zipmap_int64float.onnx",
  3370. "format": "ONNX v3",
  3371. "link": "https://github.com/microsoft/onnxruntime/tree/master/onnxruntime/test/testdata"
  3372. },
  3373. {
  3374. "type": "openvino",
  3375. "target": "2018_R3_age-gender-recognition-retail-0013.xml,2018_R3_age-gender-recognition-retail-0013.bin",
  3376. "source": "https://download.01.org/openvinotoolkit/2018_R3/open_model_zoo/age-gender-recognition-retail-0013/FP32/age-gender-recognition-retail-0013.xml,https://download.01.org/openvinotoolkit/2018_R3/open_model_zoo/age-gender-recognition-retail-0013/FP32/age-gender-recognition-retail-0013.bin",
  3377. "format": "OpenVINO IR",
  3378. "link": "https://download.01.org/openvinotoolkit"
  3379. },
  3380. {
  3381. "type": "openvino",
  3382. "target": "2018_R3_rm_cnn4a.xml",
  3383. "source": "https://download.01.org/openvinotoolkit/2018_R3/models_contrib/GNA/rm_cnn4a_smbr/rm_cnn4a.xml",
  3384. "format": "OpenVINO IR",
  3385. "link": "https://download.01.org/openvinotoolkit"
  3386. },
  3387. {
  3388. "type": "openvino",
  3389. "target": "2018_R3_rm_lstm4f.xml,2018_R3_rm_lstm4f.bin",
  3390. "source": "https://download.01.org/openvinotoolkit/2018_R3/models_contrib/GNA/rm_lstm4f/rm_lstm4f.xml,https://download.01.org/openvinotoolkit/2018_R3/models_contrib/GNA/rm_lstm4f/rm_lstm4f.bin",
  3391. "format": "OpenVINO IR",
  3392. "link": "https://download.01.org/openvinotoolkit"
  3393. },
  3394. {
  3395. "type": "openvino",
  3396. "target": "2018_R3_wsj_dnn5b.xml",
  3397. "source": "https://download.01.org/openvinotoolkit/2018_R3/models_contrib/GNA/wsj_dnn5b_smbr/wsj_dnn5b.xml",
  3398. "format": "OpenVINO IR",
  3399. "link": "https://download.01.org/openvinotoolkit"
  3400. },
  3401. {
  3402. "type": "openvino",
  3403. "target": "2018_R4_emotions-recognition-retail-0003.bin,2018_R4_emotions-recognition-retail-0003.xml",
  3404. "source": "https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/emotions-recognition-retail-0003/FP32/emotions-recognition-retail-0003.bin,https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/emotions-recognition-retail-0003/FP32/emotions-recognition-retail-0003.xml",
  3405. "format": "OpenVINO IR",
  3406. "link": "https://download.01.org/openvinotoolkit"
  3407. },
  3408. {
  3409. "type": "openvino",
  3410. "target": "2018_R4_face-detection-adas-0001.xml",
  3411. "source": "https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/face-detection-adas-0001/FP32/face-detection-adas-0001.xml",
  3412. "format": "OpenVINO IR",
  3413. "link": "https://download.01.org/openvinotoolkit"
  3414. },
  3415. {
  3416. "type": "openvino",
  3417. "target": "2018_R4_face-detection-retail-0004.xml",
  3418. "source": "https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/face-detection-retail-0004/FP32/face-detection-retail-0004.xml",
  3419. "format": "OpenVINO IR",
  3420. "link": "https://download.01.org/openvinotoolkit"
  3421. },
  3422. {
  3423. "type": "openvino",
  3424. "target": "2018_R4_face-person-detection-retail-0002.xml",
  3425. "source": "https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/face-person-detection-retail-0002/FP32/face-person-detection-retail-0002.xml",
  3426. "format": "OpenVINO IR",
  3427. "link": "https://download.01.org/openvinotoolkit"
  3428. },
  3429. {
  3430. "type": "openvino",
  3431. "target": "2018_R4_face-reidentification-retail-0071.xml",
  3432. "source": "https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/face-reidentification-retail-0071/FP32/face-reidentification-retail-0071.xml",
  3433. "format": "OpenVINO IR",
  3434. "link": "https://download.01.org/openvinotoolkit"
  3435. },
  3436. {
  3437. "type": "openvino",
  3438. "target": "2018_R4_facial-landmarks-35-adas-0001.xml",
  3439. "source": "https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/facial-landmarks-35-adas-0001/FP32/facial-landmarks-35-adas-0001.xml",
  3440. "format": "OpenVINO IR",
  3441. "link": "https://download.01.org/openvinotoolkit"
  3442. },
  3443. {
  3444. "type": "openvino",
  3445. "target": "2018_R4_head-pose-estimation-adas-0001.xml",
  3446. "source": "https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/head-pose-estimation-adas-0001/FP32/head-pose-estimation-adas-0001.xml",
  3447. "format": "OpenVINO IR",
  3448. "link": "https://download.01.org/openvinotoolkit"
  3449. },
  3450. {
  3451. "type": "openvino",
  3452. "target": "2018_R4_human-pose-estimation-0001.xml",
  3453. "source": "https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/human-pose-estimation-0001/FP32/human-pose-estimation-0001.xml",
  3454. "format": "OpenVINO IR",
  3455. "link": "https://download.01.org/openvinotoolkit"
  3456. },
  3457. {
  3458. "type": "openvino",
  3459. "target": "2018_R4_landmarks-regression-retail-0009.xml",
  3460. "source": "https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/landmarks-regression-retail-0009/FP32/landmarks-regression-retail-0009.xml",
  3461. "format": "OpenVINO IR",
  3462. "link": "https://download.01.org/openvinotoolkit"
  3463. },
  3464. {
  3465. "type": "openvino",
  3466. "target": "2018_R4_person-attributes-recognition-crossroad-0031.xml",
  3467. "source": "https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/person-attributes-recognition-crossroad-0031/FP32/person-attributes-recognition-crossroad-0031.xml",
  3468. "format": "OpenVINO IR",
  3469. "link": "https://download.01.org/openvinotoolkit"
  3470. },
  3471. {
  3472. "type": "openvino",
  3473. "target": "2018_R4_pedestrian-detection-adas-0002.xml",
  3474. "source": "https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/pedestrian-detection-adas-0002/FP32/pedestrian-detection-adas-0002.xml",
  3475. "format": "OpenVINO IR",
  3476. "link": "https://download.01.org/openvinotoolkit"
  3477. },
  3478. {
  3479. "type": "openvino",
  3480. "target": "2018_R4_person-detection-retail-0001.xml",
  3481. "source": "https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/person-detection-retail-0001/FP32/person-detection-retail-0001.xml",
  3482. "format": "OpenVINO IR",
  3483. "link": "https://download.01.org/openvinotoolkit"
  3484. },
  3485. {
  3486. "type": "openvino",
  3487. "target": "2018_R4_person-detection-retail-0013.xml",
  3488. "source": "https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/person-detection-retail-0013/FP32/person-detection-retail-0013.xml",
  3489. "format": "OpenVINO IR",
  3490. "link": "https://download.01.org/openvinotoolkit"
  3491. },
  3492. {
  3493. "type": "openvino",
  3494. "target": "2018_R4_person-reidentification-retail-0031.xml",
  3495. "source": "https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/person-reidentification-retail-0031/FP32/person-reidentification-retail-0031.xml",
  3496. "format": "OpenVINO IR",
  3497. "link": "https://download.01.org/openvinotoolkit"
  3498. },
  3499. {
  3500. "type": "openvino",
  3501. "target": "2018_R4_person-reidentification-retail-0076.xml",
  3502. "source": "https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/person-reidentification-retail-0076/FP32/person-reidentification-retail-0076.xml",
  3503. "format": "OpenVINO IR",
  3504. "link": "https://download.01.org/openvinotoolkit"
  3505. },
  3506. {
  3507. "type": "openvino",
  3508. "target": "2018_R4_person-detection-action-recognition-0003.xml",
  3509. "source": "https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/person-detection-action-recognition-0003/FP32/person-detection-action-recognition-0003.xml",
  3510. "format": "OpenVINO IR",
  3511. "link": "https://download.01.org/openvinotoolkit"
  3512. },
  3513. {
  3514. "type": "openvino",
  3515. "target": "2018_R4_person-reidentification-retail-0079.xml",
  3516. "source": "https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/person-reidentification-retail-0079/FP32/person-reidentification-retail-0079.xml",
  3517. "format": "OpenVINO IR",
  3518. "link": "https://download.01.org/openvinotoolkit"
  3519. },
  3520. {
  3521. "type": "openvino",
  3522. "target": "2018_R4_person-vehicle-bike-detection-crossroad-0078.xml",
  3523. "source": "https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/person-vehicle-bike-detection-crossroad-0078/FP32/person-vehicle-bike-detection-crossroad-0078.xml",
  3524. "format": "OpenVINO IR",
  3525. "link": "https://download.01.org/openvinotoolkit"
  3526. },
  3527. {
  3528. "type": "openvino",
  3529. "target": "2018_R4_road-segmentation-adas-0001.xml",
  3530. "source": "https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/road-segmentation-adas-0001/FP32/road-segmentation-adas-0001.xml",
  3531. "format": "OpenVINO IR",
  3532. "link": "https://download.01.org/openvinotoolkit"
  3533. },
  3534. {
  3535. "type": "openvino",
  3536. "target": "2018_R5_age-gender-recognition-retail-0013.xml",
  3537. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/age-gender-recognition-retail-0013/FP32/age-gender-recognition-retail-0013.xml",
  3538. "format": "OpenVINO IR",
  3539. "link": "https://download.01.org/openvinotoolkit"
  3540. },
  3541. {
  3542. "type": "openvino",
  3543. "target": "2018_R5_emotions-recognition-retail-0003.xml,2018_R5_emotions-recognition-retail-0003.bin",
  3544. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/emotions-recognition-retail-0003/FP32/emotions-recognition-retail-0003.xml,https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/emotions-recognition-retail-0003/FP32/emotions-recognition-retail-0003.bin",
  3545. "format": "OpenVINO IR",
  3546. "link": "https://download.01.org/openvinotoolkit"
  3547. },
  3548. {
  3549. "type": "openvino",
  3550. "target": "2018_R5_face-detection-adas-0001.xml",
  3551. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/face-detection-adas-0001/FP32/face-detection-adas-0001.xml",
  3552. "format": "OpenVINO IR",
  3553. "link": "https://download.01.org/openvinotoolkit"
  3554. },
  3555. {
  3556. "type": "openvino",
  3557. "target": "2018_R5_face-detection-retail-0004.xml",
  3558. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/face-detection-retail-0004/FP32/face-detection-retail-0004.xml",
  3559. "format": "OpenVINO IR",
  3560. "link": "https://download.01.org/openvinotoolkit"
  3561. },
  3562. {
  3563. "type": "openvino",
  3564. "target": "2018_R5_face-person-detection-retail-0002.xml",
  3565. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/face-person-detection-retail-0002/FP32/face-person-detection-retail-0002.xml",
  3566. "format": "OpenVINO IR",
  3567. "link": "https://download.01.org/openvinotoolkit"
  3568. },
  3569. {
  3570. "type": "openvino",
  3571. "target": "2018_R5_face-reidentification-retail-0095.xml",
  3572. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/face-reidentification-retail-0095/FP32/face-reidentification-retail-0095.xml",
  3573. "format": "OpenVINO IR",
  3574. "link": "https://download.01.org/openvinotoolkit"
  3575. },
  3576. {
  3577. "type": "openvino",
  3578. "target": "2018_R5_facial-landmarks-35-adas-0001.xml",
  3579. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/facial-landmarks-35-adas-0001/FP32/facial-landmarks-35-adas-0001.xml",
  3580. "format": "OpenVINO IR",
  3581. "link": "https://download.01.org/openvinotoolkit"
  3582. },
  3583. {
  3584. "type": "openvino",
  3585. "target": "2018_R5_head-pose-estimation-adas-0001.xml",
  3586. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/head-pose-estimation-adas-0001/FP32/head-pose-estimation-adas-0001.xml",
  3587. "format": "OpenVINO IR",
  3588. "link": "https://download.01.org/openvinotoolkit"
  3589. },
  3590. {
  3591. "type": "openvino",
  3592. "target": "2018_R5_human-pose-estimation-0001.xml",
  3593. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/human-pose-estimation-0001/FP32/human-pose-estimation-0001.xml",
  3594. "format": "OpenVINO IR",
  3595. "link": "https://download.01.org/openvinotoolkit"
  3596. },
  3597. {
  3598. "type": "openvino",
  3599. "target": "2018_R5_landmarks-regression-retail-0009.xml",
  3600. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/landmarks-regression-retail-0009/FP32/landmarks-regression-retail-0009.xml",
  3601. "format": "OpenVINO IR",
  3602. "link": "https://download.01.org/openvinotoolkit"
  3603. },
  3604. {
  3605. "type": "openvino",
  3606. "target": "2018_R4_landmarks-regression-retail-0009-fp16.xml,2018_R4_landmarks-regression-retail-0009-fp16.bin",
  3607. "source": "https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/landmarks-regression-retail-0009/FP16/landmarks-regression-retail-0009.xml,https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/landmarks-regression-retail-0009/FP16/landmarks-regression-retail-0009.bin",
  3608. "format": "OpenVINO IR",
  3609. "link": "https://download.01.org/openvinotoolkit"
  3610. },
  3611. {
  3612. "type": "openvino",
  3613. "target": "2018_R4_license-plate-recognition-barrier-0001.xml",
  3614. "source": "https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/license-plate-recognition-barrier-0001/FP32/license-plate-recognition-barrier-0001.xml",
  3615. "format": "OpenVINO IR",
  3616. "link": "https://download.01.org/openvinotoolkit"
  3617. },
  3618. {
  3619. "type": "openvino",
  3620. "target": "2018_R4_pedestrian-and-vehicle-detector-adas-0001.xml",
  3621. "source": "https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/pedestrian-and-vehicle-detector-adas-0001/FP32/pedestrian-and-vehicle-detector-adas-0001.xml",
  3622. "format": "OpenVINO IR",
  3623. "link": "https://download.01.org/openvinotoolkit"
  3624. },
  3625. {
  3626. "type": "openvino",
  3627. "target": "2018_R4_semantic-segmentation-adas-0001.xml",
  3628. "source": "https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/semantic-segmentation-adas-0001/FP32/semantic-segmentation-adas-0001.xml",
  3629. "format": "OpenVINO IR",
  3630. "link": "https://download.01.org/openvinotoolkit"
  3631. },
  3632. {
  3633. "type": "openvino",
  3634. "target": "2018_R4_single-image-super-resolution-0034.xml",
  3635. "source": "https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/single-image-super-resolution-0034/FP32/single-image-super-resolution-0034.xml",
  3636. "format": "OpenVINO IR",
  3637. "link": "https://download.01.org/openvinotoolkit"
  3638. },
  3639. {
  3640. "type": "openvino",
  3641. "target": "2018_R4_vehicle-attributes-recognition-barrier-0039.xml",
  3642. "source": "https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/vehicle-attributes-recognition-barrier-0039/FP32/vehicle-attributes-recognition-barrier-0039.xml",
  3643. "format": "OpenVINO IR",
  3644. "link": "https://download.01.org/openvinotoolkit"
  3645. },
  3646. {
  3647. "type": "openvino",
  3648. "target": "2018_R4_vehicle-detection-adas-0002.xml",
  3649. "source": "https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/vehicle-detection-adas-0002/FP32/vehicle-detection-adas-0002.xml",
  3650. "format": "OpenVINO IR",
  3651. "link": "https://download.01.org/openvinotoolkit"
  3652. },
  3653. {
  3654. "type": "openvino",
  3655. "target": "2018_R4_vehicle-license-plate-detection-barrier-0106.xml",
  3656. "source": "https://download.01.org/openvinotoolkit/2018_R4/open_model_zoo/vehicle-license-plate-detection-barrier-0106/FP32/vehicle-license-plate-detection-barrier-0106.xml",
  3657. "format": "OpenVINO IR",
  3658. "link": "https://download.01.org/openvinotoolkit"
  3659. },
  3660. {
  3661. "type": "openvino",
  3662. "target": "2018_R5_license-plate-recognition-barrier-0001.xml",
  3663. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/license-plate-recognition-barrier-0001/FP32/license-plate-recognition-barrier-0001.xml",
  3664. "format": "OpenVINO IR",
  3665. "link": "https://download.01.org/openvinotoolkit"
  3666. },
  3667. {
  3668. "type": "openvino",
  3669. "target": "2018_R5_pedestrian-and-vehicle-detector-adas-0001.xml",
  3670. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/pedestrian-and-vehicle-detector-adas-0001/FP32/pedestrian-and-vehicle-detector-adas-0001.xml",
  3671. "format": "OpenVINO IR",
  3672. "link": "https://download.01.org/openvinotoolkit"
  3673. },
  3674. {
  3675. "type": "openvino",
  3676. "target": "2018_R5_pedestrian-detection-adas-0002.xml",
  3677. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/pedestrian-detection-adas-0002/FP32/pedestrian-detection-adas-0002.xml",
  3678. "format": "OpenVINO IR",
  3679. "link": "https://download.01.org/openvinotoolkit"
  3680. },
  3681. {
  3682. "type": "openvino",
  3683. "target": "2018_R5_person-attributes-recognition-crossroad-0200.xml",
  3684. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/person-attributes-recognition-crossroad-0200/FP32/person-attributes-recognition-crossroad-0200.xml",
  3685. "format": "OpenVINO IR",
  3686. "link": "https://download.01.org/openvinotoolkit"
  3687. },
  3688. {
  3689. "type": "openvino",
  3690. "target": "2018_R5_person-detection-action-recognition-0004.xml",
  3691. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/person-detection-action-recognition-0004/FP32/person-detection-action-recognition-0004.xml",
  3692. "format": "OpenVINO IR",
  3693. "link": "https://download.01.org/openvinotoolkit"
  3694. },
  3695. {
  3696. "type": "openvino",
  3697. "target": "2018_R5_person-detection-retail-0002.xml",
  3698. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/person-detection-retail-0002/FP32/person-detection-retail-0002.xml",
  3699. "format": "OpenVINO IR",
  3700. "link": "https://download.01.org/openvinotoolkit"
  3701. },
  3702. {
  3703. "type": "openvino",
  3704. "target": "2018_R5_person-detection-retail-0013.xml",
  3705. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/person-detection-retail-0013/FP32/person-detection-retail-0013.xml",
  3706. "format": "OpenVINO IR",
  3707. "link": "https://download.01.org/openvinotoolkit"
  3708. },
  3709. {
  3710. "type": "openvino",
  3711. "target": "2018_R5_person-reidentification-retail-0031.xml",
  3712. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/person-reidentification-retail-0031/FP32/person-reidentification-retail-0031.xml",
  3713. "format": "OpenVINO IR",
  3714. "link": "https://download.01.org/openvinotoolkit"
  3715. },
  3716. {
  3717. "type": "openvino",
  3718. "target": "2018_R5_person-reidentification-retail-0076.xml",
  3719. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/person-reidentification-retail-0076/FP32/person-reidentification-retail-0076.xml",
  3720. "format": "OpenVINO IR",
  3721. "link": "https://download.01.org/openvinotoolkit"
  3722. },
  3723. {
  3724. "type": "openvino",
  3725. "target": "2018_R5_person-reidentification-retail-0079.xml",
  3726. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/person-reidentification-retail-0079/FP32/person-reidentification-retail-0079.xml",
  3727. "format": "OpenVINO IR",
  3728. "link": "https://download.01.org/openvinotoolkit"
  3729. },
  3730. {
  3731. "type": "openvino",
  3732. "target": "2018_R5_person-vehicle-bike-detection-crossroad-0078.xml",
  3733. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/person-vehicle-bike-detection-crossroad-0078/FP32/person-vehicle-bike-detection-crossroad-0078.xml",
  3734. "format": "OpenVINO IR",
  3735. "link": "https://download.01.org/openvinotoolkit"
  3736. },
  3737. {
  3738. "type": "openvino",
  3739. "target": "2018_R5_road-segmentation-adas-0001.xml",
  3740. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/road-segmentation-adas-0001/FP32/road-segmentation-adas-0001.xml",
  3741. "format": "OpenVINO IR",
  3742. "link": "https://download.01.org/openvinotoolkit"
  3743. },
  3744. {
  3745. "type": "openvino",
  3746. "target": "2018_R5_semantic-segmentation-adas-0001.xml",
  3747. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/semantic-segmentation-adas-0001/FP32/semantic-segmentation-adas-0001.xml",
  3748. "format": "OpenVINO IR",
  3749. "link": "https://download.01.org/openvinotoolkit"
  3750. },
  3751. {
  3752. "type": "openvino",
  3753. "target": "2018_R5_single-image-super-resolution-0063.xml",
  3754. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/single-image-super-resolution-0063/FP32/single-image-super-resolution-0063.xml",
  3755. "format": "OpenVINO IR",
  3756. "link": "https://download.01.org/openvinotoolkit"
  3757. },
  3758. {
  3759. "type": "openvino",
  3760. "target": "2018_R5_single-image-super-resolution-1011.xml",
  3761. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/single-image-super-resolution-1011/FP32/single-image-super-resolution-1011.xml",
  3762. "format": "OpenVINO IR",
  3763. "link": "https://download.01.org/openvinotoolkit"
  3764. },
  3765. {
  3766. "type": "openvino",
  3767. "target": "2018_R5_single-image-super-resolution-1021.xml",
  3768. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/single-image-super-resolution-1021/FP32/single-image-super-resolution-1021.xml",
  3769. "format": "OpenVINO IR",
  3770. "link": "https://download.01.org/openvinotoolkit"
  3771. },
  3772. {
  3773. "type": "openvino",
  3774. "target": "2018_R5_text-detection-0001.xml",
  3775. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/text-detection-0001/FP32/text-detection-0001.xml",
  3776. "format": "OpenVINO IR",
  3777. "link": "https://download.01.org/openvinotoolkit"
  3778. },
  3779. {
  3780. "type": "openvino",
  3781. "target": "2018_R5_vehicle-attributes-recognition-barrier-0039.xml",
  3782. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/vehicle-attributes-recognition-barrier-0039/FP32/vehicle-attributes-recognition-barrier-0039.xml",
  3783. "format": "OpenVINO IR",
  3784. "link": "https://download.01.org/openvinotoolkit"
  3785. },
  3786. {
  3787. "type": "openvino",
  3788. "target": "2018_R5_vehicle-detection-adas-0002.xml",
  3789. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/vehicle-detection-adas-0002/FP32/vehicle-detection-adas-0002.xml",
  3790. "format": "OpenVINO IR",
  3791. "link": "https://download.01.org/openvinotoolkit"
  3792. },
  3793. {
  3794. "type": "openvino",
  3795. "target": "2018_R5_vehicle-license-plate-detection-barrier-0106.xml",
  3796. "source": "https://download.01.org/openvinotoolkit/2018_R5/open_model_zoo/vehicle-license-plate-detection-barrier-0106/FP32/vehicle-license-plate-detection-barrier-0106.xml",
  3797. "format": "OpenVINO IR",
  3798. "link": "https://download.01.org/openvinotoolkit"
  3799. },
  3800. {
  3801. "type": "openvino",
  3802. "target": "2019_R1_resnet50-binary-0001.bin,2019_R1_resnet50-binary-0001.xml",
  3803. "source": "https://download.01.org/opencv/2019/open_model_zoo/R1/models_bin/resnet50-binary-0001/resnet50-binary-0001.bin,https://download.01.org/opencv/2019/open_model_zoo/R1/models_bin/resnet50-binary-0001/resnet50-binary-0001.xml",
  3804. "format": "OpenVINO IR",
  3805. "link": "https://download.01.org/opencv"
  3806. },
  3807. {
  3808. "type": "openvino",
  3809. "target": "2019_R7_netron_issue372.xml",
  3810. "source": "https://github.com/lutzroeder/netron/files/3846426/ir.xml.zip[ir.xml]",
  3811. "format": "OpenVINO IR",
  3812. "link": "https://github.com/lutzroeder/netron/issues/372"
  3813. },
  3814. {
  3815. "type": "openvino",
  3816. "target": "2019_with_pad_simple.xml",
  3817. "source": "https://github.com/lutzroeder/netron/files/2871673/with_pad_simple.xml.zip[with_pad_simple.xml]",
  3818. "format": "OpenVINO IR",
  3819. "link": "https://download.01.org/openvinotoolkit"
  3820. },
  3821. {
  3822. "type": "openvino",
  3823. "target": "2019_with_nd_conv_simple.xml",
  3824. "source": "https://github.com/lutzroeder/netron/files/2871696/with_nd_conv_simple.xml.zip[with_nd_conv_simple.xml]",
  3825. "format": "OpenVINO IR",
  3826. "link": "https://download.01.org/openvinotoolkit"
  3827. },
  3828. {
  3829. "type": "openvino",
  3830. "target": "2019_with_gather.xml",
  3831. "source": "https://github.com/lutzroeder/netron/files/2871676/with_gather.xml.zip[with_gather.xml]",
  3832. "format": "OpenVINO IR",
  3833. "link": "https://download.01.org/openvinotoolkit"
  3834. },
  3835. {
  3836. "type": "openvino",
  3837. "target": "2019_ti_with_large_body.xml",
  3838. "source": "https://github.com/lutzroeder/netron/files/2871678/ti_with_large_body.xml.zip[ti_with_large_body.xml]",
  3839. "format": "OpenVINO IR",
  3840. "link": "https://download.01.org/openvinotoolkit"
  3841. },
  3842. {
  3843. "type": "paddle",
  3844. "target": "PyramidBox_WiderFace.tar.gz",
  3845. "source": "http://paddlemodels.bj.bcebos.com/PyramidBox_WiderFace.tar.gz",
  3846. "format": "PaddlePaddle",
  3847. "link": "https://github.com/PaddlePaddle/models/tree/develop/PaddleCV/face_detection"
  3848. },
  3849. {
  3850. "type": "paddle",
  3851. "target": "resnet50_int8_model.tar.gz",
  3852. "source": "http://paddle-inference-dist.bj.bcebos.com/int8/resnet50_int8_model.tar.gz",
  3853. "format": "PaddlePaddle",
  3854. "link": "https://github.com/lutzroeder/netron/issues/198"
  3855. },
  3856. {
  3857. "type": "paddle",
  3858. "target": "vgg_ilsvrc_16_fc_reduced.tar.gz",
  3859. "source": "http://paddlemodels.bj.bcebos.com/vgg_ilsvrc_16_fc_reduced.tar.gz",
  3860. "format": "PaddlePaddle",
  3861. "link": "https://github.com/PaddlePaddle/models/tree/develop/PaddleCV/face_detection"
  3862. },
  3863. {
  3864. "type": "paddle",
  3865. "target": "with_dummy_tensor_type.zip",
  3866. "source": "https://github.com/lutzroeder/netron/files/3021210/with_dummy_tensor_type.zip",
  3867. "format": "PaddlePaddle",
  3868. "link": "https://github.com/lutzroeder/netron/issues/246"
  3869. },
  3870. {
  3871. "type": "paddle",
  3872. "target": "without_tensor_type.zip",
  3873. "source": "https://github.com/lutzroeder/netron/files/3021211/without_tensor_type.zip",
  3874. "format": "PaddlePaddle",
  3875. "link": "https://github.com/lutzroeder/netron/issues/246"
  3876. },
  3877. {
  3878. "type": "pytorch",
  3879. "target": "alexnet.pkl.pth",
  3880. "script": "./tools/pytorch sync install zoo",
  3881. "format": "PyTorch v0.1.10",
  3882. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  3883. },
  3884. {
  3885. "type": "pytorch",
  3886. "target": "alexnet.zip.pth",
  3887. "script": "./tools/pytorch sync install zoo",
  3888. "format": "PyTorch v1.4",
  3889. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  3890. },
  3891. {
  3892. "type": "pytorch",
  3893. "target": "alexnet.pt",
  3894. "script": "./tools/pytorch sync install zoo",
  3895. "format": "TorchScript v1.4",
  3896. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  3897. },
  3898. {
  3899. "type": "pytorch",
  3900. "target": "alexnet_traced.pt",
  3901. "script": "./tools/pytorch sync install zoo",
  3902. "format": "TorchScript v1.4",
  3903. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  3904. },
  3905. {
  3906. "type": "pytorch",
  3907. "target": "alexnet-owt-4df8aa71.pth",
  3908. "source": "https://download.pytorch.org/models/alexnet-owt-4df8aa71.pth",
  3909. "format": "PyTorch v0.1.1",
  3910. "link": "https://github.com/pytorch/vision/blob/master/torchvision/models/alexnet.py"
  3911. },
  3912. {
  3913. "type": "pytorch",
  3914. "target": "blitz_neural_networks_tutorial_traced.pt",
  3915. "source": "https://github.com/lutzroeder/netron/files/3748989/blitz_neural_networks_tutorial.zip[blitz_neural_networks_tutorial_traced.pt]",
  3916. "format": "TorchScript v1.3",
  3917. "link": "https://github.com/lutzroeder/netron/issues/281"
  3918. },
  3919. {
  3920. "type": "pytorch",
  3921. "target": "blitz_neural_networks_tutorial.pt",
  3922. "source": "https://github.com/lutzroeder/netron/files/3748989/blitz_neural_networks_tutorial.zip[blitz_neural_networks_tutorial.pt]",
  3923. "format": "TorchScript v1.3",
  3924. "link": "https://github.com/lutzroeder/netron/issues/281"
  3925. },
  3926. {
  3927. "type": "pytorch",
  3928. "target": "blitz_cifar10_tutorial.pt",
  3929. "source": "https://github.com/lutzroeder/netron/files/3748500/blitz_cifar10_tutorial.zip[blitz_cifar10_tutorial.pt]",
  3930. "format": "TorchScript v1.3",
  3931. "link": "https://github.com/lutzroeder/netron/issues/281"
  3932. },
  3933. {
  3934. "type": "pytorch",
  3935. "target": "bn_inception-9f5701afb96c8044.pth",
  3936. "source": "https://yjxiong.blob.core.windows.net/models/bn_inception-9f5701afb96c8044.pth",
  3937. "format": "PyTorch v0.1.1"
  3938. },
  3939. {
  3940. "type": "pytorch",
  3941. "target": "bvlc_googlenet.caffemodel.pth",
  3942. "source": "https://www.dropbox.com/s/2ljm35ztj6hllcu/bvlc_googlenet.caffemodel.pth?dl=1",
  3943. "format": "PyTorch v0.1.10",
  3944. "link": "https://sea-region.github.com/yuminsuh/part_bilinear_reid/issues/2"
  3945. },
  3946. {
  3947. "type": "pytorch",
  3948. "target": "ckpt.t7",
  3949. "source": "https://raw.githubusercontent.com/babajide07/Redundant-Feature-Pruning-Pytorch-Implementation/master/checkpoint/ckpt.t7",
  3950. "format": "PyTorch v0.1.10",
  3951. "link": "https://github.com/babajide07/Redundant-Feature-Pruning-Pytorch-Implementation"
  3952. },
  3953. {
  3954. "type": "pytorch",
  3955. "target": "cruise_cutin_vehicle_model.pt",
  3956. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/cruise_cutin_vehicle_model.pt",
  3957. "format": "TorchScript v1.0",
  3958. "link": "https://github.com/ApolloAuto/apollo"
  3959. },
  3960. {
  3961. "type": "pytorch",
  3962. "target": "cruise_go_vehicle_model.pt",
  3963. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/cruise_go_vehicle_model.pt",
  3964. "format": "TorchScript v1.0",
  3965. "link": "https://github.com/ApolloAuto/apollo"
  3966. },
  3967. {
  3968. "type": "pytorch",
  3969. "target": "densenet161.pkl.pth",
  3970. "script": "./tools/pytorch sync install zoo",
  3971. "format": "PyTorch v0.1.10",
  3972. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  3973. },
  3974. {
  3975. "type": "pytorch",
  3976. "target": "densenet161.zip.pth",
  3977. "script": "./tools/pytorch sync install zoo",
  3978. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  3979. },
  3980. {
  3981. "type": "pytorch",
  3982. "target": "densenet161.pt",
  3983. "script": "./tools/pytorch sync install zoo",
  3984. "render": "skip",
  3985. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  3986. },
  3987. {
  3988. "type": "pytorch",
  3989. "target": "densenet161_traced.pt",
  3990. "render": "skip",
  3991. "script": "./tools/pytorch sync install zoo",
  3992. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  3993. },
  3994. {
  3995. "type": "pytorch",
  3996. "target": "densenet161-8d451a50.pth",
  3997. "format": "PyTorch v0.1.10",
  3998. "source": "https://download.pytorch.org/models/densenet161-8d451a50.pth"
  3999. },
  4000. {
  4001. "type": "pytorch",
  4002. "target": "gcn2_tiny_320x240.pt",
  4003. "source": "https://raw.githubusercontent.com/jiexiong2016/GCNv2_SLAM/master/GCN2/gcn2_tiny_320x240.pt",
  4004. "format": "TorchScript v1.0",
  4005. "link": "https://github.com/jiexiong2016/GCNv2_SLAM"
  4006. },
  4007. {
  4008. "type": "pytorch",
  4009. "target": "inception_v3.pkl.pth",
  4010. "script": "./tools/pytorch sync install zoo",
  4011. "format": "PyTorch v0.1.10",
  4012. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4013. },
  4014. {
  4015. "type": "pytorch",
  4016. "target": "inception_v3.pt",
  4017. "script": "./tools/pytorch sync install zoo",
  4018. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4019. },
  4020. {
  4021. "type": "pytorch",
  4022. "target": "inception_v3.zip.pth",
  4023. "script": "./tools/pytorch sync install zoo",
  4024. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4025. },
  4026. {
  4027. "type": "pytorch",
  4028. "target": "inception_v3_traced.pt",
  4029. "script": "./tools/pytorch sync install zoo",
  4030. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4031. },
  4032. {
  4033. "type": "pytorch",
  4034. "target": "inception_v3_google-1a9a5a14.pth",
  4035. "format": "PyTorch v0.1.10",
  4036. "source": "https://download.pytorch.org/models/inception_v3_google-1a9a5a14.pth"
  4037. },
  4038. {
  4039. "type": "pytorch",
  4040. "target": "junction_mlp_vehicle_model.pt",
  4041. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/junction_mlp_vehicle_model.pt",
  4042. "format": "TorchScript v1.0",
  4043. "link": "https://github.com/ApolloAuto/apollo"
  4044. },
  4045. {
  4046. "type": "pytorch",
  4047. "target": "lane_scanning_vehicle_model.pt",
  4048. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/lane_scanning_vehicle_model.pt",
  4049. "format": "TorchScript v1.0",
  4050. "link": "https://github.com/ApolloAuto/apollo"
  4051. },
  4052. {
  4053. "type": "pytorch",
  4054. "target": "mask_r_cnn.pth",
  4055. "source": "https://raw.githubusercontent.com/facebookresearch/kill-the-bits/master/src/models/compressed/mask_r_cnn.pth",
  4056. "format": "PyTorch v0.1.10",
  4057. "link": "https://github.com/facebookresearch/kill-the-bits/tree/master/src/models/compressed"
  4058. },
  4059. {
  4060. "type": "pytorch",
  4061. "target": "mask_rcnn_r50_fpn_1x_20181010-069fa190.pth",
  4062. "source": "https://s3.ap-northeast-2.amazonaws.com/open-mmlab/mmdetection/models/mask_rcnn_r50_fpn_1x_20181010-069fa190.pth",
  4063. "format": "PyTorch v0.1.10",
  4064. "link": "https://github.com/open-mmlab/mmdetection/blob/master/docs/MODEL_ZOO.md"
  4065. },
  4066. {
  4067. "type": "pytorch",
  4068. "target": "mnist_linear.ckpt",
  4069. "source": "https://github.com/lutzroeder/netron/files/3585288/mnist_linear_torchscript.zip[mnist_linear.ckpt]",
  4070. "format": "PyTorch v0.1.10",
  4071. "link": "https://github.com/lutzroeder/netron/issues/281"
  4072. },
  4073. {
  4074. "type": "pytorch",
  4075. "target": "mnist_linear_torchscript_1.pt",
  4076. "source": "https://github.com/lutzroeder/netron/files/3585288/mnist_linear_torchscript.zip[mnist_linear_torchscript_1.pt]",
  4077. "format": "TorchScript v1.1",
  4078. "link": "https://github.com/lutzroeder/netron/issues/281"
  4079. },
  4080. {
  4081. "type": "pytorch",
  4082. "target": "mnist_linear_torchscript_2.pt",
  4083. "source": "https://github.com/lutzroeder/netron/files/3585288/mnist_linear_torchscript.zip[mnist_linear_torchscript_2.pt]",
  4084. "format": "TorchScript v1.3",
  4085. "link": "https://github.com/lutzroeder/netron/issues/281"
  4086. },
  4087. {
  4088. "type": "pytorch",
  4089. "target": "mobilefacenet_scripted.pt",
  4090. "source": "https://github.com/foamliu/MobileFaceNet/releases/download/v1.0/mobilefacenet_scripted.pt",
  4091. "format": "TorchScript v1.3",
  4092. "link": "https://github.com/foamliu/MobileFaceNet"
  4093. },
  4094. {
  4095. "type": "pytorch",
  4096. "target": "Mobilenet_se_focal_121000.pt",
  4097. "source": "https://download.01.org/openvinotoolkit/open_model_zoo/training_toolbox_pytorch/models/fr/Mobilenet_se_focal_121000.pt",
  4098. "format": "PyTorch v0.1.10",
  4099. "link": "https://github.com/grib0ed0v/face_recognition.pytorch"
  4100. },
  4101. {
  4102. "type": "pytorch",
  4103. "target": "mobilenet_quantization_scripted_quantized.pth",
  4104. "source": "https://github.com/lutzroeder/netron/files/4111581/mobilenet_quantization_scripted_quantized.pth.zip[mobilenet_quantization_scripted_quantized.pth]",
  4105. "format": "TorchScript v1.3",
  4106. "link": "https://github.com/lutzroeder/netron/issues/421"
  4107. },
  4108. {
  4109. "type": "pytorch",
  4110. "target": "mobilenet_quantized_scripted_925.pt",
  4111. "source": "https://raw.githubusercontent.com/pytorch/android-demo-app/master/PyTorchDemoApp/app/src/main/assets/mobilenet_quantized_scripted_925.pt",
  4112. "format": "TorchScript v1.3",
  4113. "link": "https://github.com/pytorch/android-demo-app"
  4114. },
  4115. {
  4116. "type": "pytorch",
  4117. "target": "mobilenet_v2.pkl.pth",
  4118. "script": "./tools/pytorch sync install zoo",
  4119. "format": "PyTorch v0.1.10",
  4120. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4121. },
  4122. {
  4123. "type": "pytorch",
  4124. "target": "mobilenet_v2.pt",
  4125. "script": "./tools/pytorch sync install zoo",
  4126. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4127. },
  4128. {
  4129. "type": "pytorch",
  4130. "target": "mobilenet_v2_traced.pt",
  4131. "script": "./tools/pytorch sync install zoo",
  4132. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4133. },
  4134. {
  4135. "type": "pytorch",
  4136. "target": "model-reddit16-f140225004_2.pt1",
  4137. "source": "https://raw.githubusercontent.com/pytorch/android-demo-app/master/PyTorchDemoApp/app/src/main/assets/model-reddit16-f140225004_2.pt1",
  4138. "format": "TorchScript v1.3",
  4139. "link": "https://github.com/pytorch/android-demo-app"
  4140. },
  4141. {
  4142. "type": "pytorch",
  4143. "target": "model_chall_train_152ft_384x288.pth.tar",
  4144. "source": "https://www.dropbox.com/s/hfz5nkd39uisvbr/model_chall_train_152ft_384x288.pth.tar?dl=1",
  4145. "format": "PyTorch v0.1.10",
  4146. "link": "https://github.com/JimmySuen/integral-human-pose"
  4147. },
  4148. {
  4149. "type": "pytorch",
  4150. "target": "netron_issue_313_v1.pt",
  4151. "source": "https://github.com/lutzroeder/netron/files/3721266/netron_issue_313.zip[netron_issue_313_v1.pt]",
  4152. "format": "TorchScript v1.0",
  4153. "link": "https://github.com/lutzroeder/netron/issues/313"
  4154. },
  4155. {
  4156. "type": "pytorch",
  4157. "target": "netron_issue_313_v2.pt",
  4158. "source": "https://github.com/lutzroeder/netron/files/3721266/netron_issue_313.zip[netron_issue_313_v2.pt]",
  4159. "format": "TorchScript v1.3",
  4160. "link": "https://github.com/lutzroeder/netron/issues/313"
  4161. },
  4162. {
  4163. "type": "pytorch",
  4164. "target": "netron_issue_432_activation.pth",
  4165. "source": "https://github.com/lutzroeder/netron/files/4226686/netron_issue_432_activation.pth.zip[netron_issue_432_activation.pth]",
  4166. "format": "TorchScript v1.3",
  4167. "link": "https://github.com/lutzroeder/netron/issues/432"
  4168. },
  4169. {
  4170. "type": "pytorch",
  4171. "target": "netron_issue_432_bmm.pth",
  4172. "source": "https://github.com/lutzroeder/netron/files/4226688/netron_issue_432_bmm.pth.zip[netron_issue_432_bmm.pth]",
  4173. "format": "TorchScript v1.3",
  4174. "link": "https://github.com/lutzroeder/netron/issues/432"
  4175. },
  4176. {
  4177. "type": "pytorch",
  4178. "target": "netron_issue_432_constant_pad_2d.pth",
  4179. "source": "https://github.com/lutzroeder/netron/files/4226690/netron_issue_432_constant_pad_2d.pth.zip[netron_issue_432_constant_pad_2d.pth]",
  4180. "format": "TorchScript v1.3",
  4181. "link": "https://github.com/lutzroeder/netron/issues/432"
  4182. },
  4183. {
  4184. "type": "pytorch",
  4185. "target": "pedestrian_interaction_position_embedding.pt",
  4186. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/pedestrian_interaction_position_embedding.pt",
  4187. "format": "TorchScript v1.0",
  4188. "link": "https://github.com/ApolloAuto/apollo"
  4189. },
  4190. {
  4191. "type": "pytorch",
  4192. "target": "pedestrian_interaction_prediction_layer.pt",
  4193. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/pedestrian_interaction_prediction_layer.pt",
  4194. "format": "TorchScript v1.0",
  4195. "link": "https://github.com/ApolloAuto/apollo"
  4196. },
  4197. {
  4198. "type": "pytorch",
  4199. "target": "pedestrian_interaction_single_lstm.pt",
  4200. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/pedestrian_interaction_single_lstm.pt",
  4201. "format": "TorchScript v1.0",
  4202. "link": "https://github.com/ApolloAuto/apollo"
  4203. },
  4204. {
  4205. "type": "pytorch",
  4206. "target": "pedestrian_interaction_social_embedding.pt",
  4207. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/pedestrian_interaction_social_embedding.pt",
  4208. "format": "TorchScript v1.1",
  4209. "link": "https://github.com/ApolloAuto/apollo"
  4210. },
  4211. {
  4212. "type": "pytorch",
  4213. "target": "pytorch_invalid_file.pth",
  4214. "source": "https://github.com/lutzroeder/netron/files/3269093/pytorch_invalid_file.zip[pytorch_invalid_file.pth]",
  4215. "error": "Could not find end of line in 'pytorch_invalid_file.pth'.",
  4216. "link": "https://github.com/lutzroeder/netron/issues/133"
  4217. },
  4218. {
  4219. "type": "pytorch",
  4220. "target": "r3d_18.pkl.pth",
  4221. "script": "./tools/pytorch sync install zoo",
  4222. "format": "PyTorch v0.1.10",
  4223. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4224. },
  4225. {
  4226. "type": "pytorch",
  4227. "target": "r3d_18.zip.pth",
  4228. "script": "./tools/pytorch sync install zoo",
  4229. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4230. },
  4231. {
  4232. "type": "pytorch",
  4233. "target": "r3d_18.pt",
  4234. "script": "./tools/pytorch sync install zoo",
  4235. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4236. },
  4237. {
  4238. "type": "pytorch",
  4239. "target": "r3d_18_traced.pt",
  4240. "script": "./tools/pytorch sync install zoo",
  4241. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4242. },
  4243. {
  4244. "type": "pytorch",
  4245. "target": "resnet18.pkl.pth",
  4246. "script": "./tools/pytorch sync install zoo",
  4247. "format": "PyTorch v0.1.10",
  4248. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4249. },
  4250. {
  4251. "type": "pytorch",
  4252. "target": "resnet18.zip.pth",
  4253. "script": "./tools/pytorch sync install zoo",
  4254. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4255. },
  4256. {
  4257. "type": "pytorch",
  4258. "target": "resnet18.pt",
  4259. "script": "./tools/pytorch sync install zoo",
  4260. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4261. },
  4262. {
  4263. "type": "pytorch",
  4264. "target": "resnet18_traced.pt",
  4265. "script": "./tools/pytorch sync install zoo",
  4266. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4267. },
  4268. {
  4269. "type": "pytorch",
  4270. "target": "resnet18-5c106cde.pth",
  4271. "source": "https://download.pytorch.org/models/resnet18-5c106cde.pth",
  4272. "format": "PyTorch v0.1.1",
  4273. "link": "https://github.com/pytorch/vision/blob/master/torchvision/models/resnet.py"
  4274. },
  4275. {
  4276. "type": "pytorch",
  4277. "target": "resnet18_fbgemm_16fa66dd.pth",
  4278. "source": "https://download.pytorch.org/models/quantized/resnet18_fbgemm_16fa66dd.pth",
  4279. "format": "PyTorch v0.1.10",
  4280. "link": "https://github.com/pytorch/vision/blob/master/torchvision/models/quantization/resnet.py"
  4281. },
  4282. {
  4283. "type": "pytorch",
  4284. "target": "resnet18_large_blocks.pth",
  4285. "source": "https://raw.githubusercontent.com/facebookresearch/kill-the-bits/master/src/models/compressed/resnet18_large_blocks.pth",
  4286. "format": "PyTorch v0.1.10",
  4287. "link": "https://github.com/facebookresearch/kill-the-bits/tree/master/src/models/compressed"
  4288. },
  4289. {
  4290. "type": "pytorch",
  4291. "target": "resnet-18-at-export.pth",
  4292. "source": "https://s3.amazonaws.com/modelzoo-networks/resnet-18-at-export.pth",
  4293. "format": "PyTorch v0.1.10",
  4294. "link": "https://github.com/szagoruyko/attention-transfer"
  4295. },
  4296. {
  4297. "type": "pytorch",
  4298. "target": "resnet34-333f7ec4.pth",
  4299. "source": "https://download.pytorch.org/models/resnet34-333f7ec4.pth",
  4300. "format": "PyTorch v0.1.1",
  4301. "link": "https://github.com/pytorch/vision/blob/master/torchvision/models/resnet.py"
  4302. },
  4303. {
  4304. "type": "pytorch",
  4305. "target": "resnet101.pkl.pth",
  4306. "script": "./tools/pytorch sync install zoo",
  4307. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4308. },
  4309. {
  4310. "type": "pytorch",
  4311. "target": "resnet101.zip.pth",
  4312. "script": "./tools/pytorch sync install zoo",
  4313. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4314. },
  4315. {
  4316. "type": "pytorch",
  4317. "target": "resnet101.pt",
  4318. "script": "./tools/pytorch sync install zoo",
  4319. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4320. },
  4321. {
  4322. "type": "pytorch",
  4323. "target": "resnet101_traced.pt",
  4324. "script": "./tools/pytorch sync install zoo",
  4325. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4326. },
  4327. {
  4328. "type": "pytorch",
  4329. "target": "resnet50_tucker.pth",
  4330. "source": "https://raw.githubusercontent.com/larry0123du/Decompose-CNN/master/models/resnet50_tucker.pth",
  4331. "format": "PyTorch v0.1.10",
  4332. "link": "https://github.com/larry0123du/Decompose-CNN"
  4333. },
  4334. {
  4335. "type": "pytorch",
  4336. "target": "resnet50_tucker_state.pth",
  4337. "source": "https://raw.githubusercontent.com/larry0123du/Decompose-CNN/master/models/resnet50_tucker_state.pth",
  4338. "format": "PyTorch v0.1.10",
  4339. "link": "https://github.com/larry0123du/Decompose-CNN"
  4340. },
  4341. {
  4342. "type": "pytorch",
  4343. "target": "resnet101-5d3b4d8f.pth",
  4344. "source": "https://download.pytorch.org/models/resnet101-5d3b4d8f.pth",
  4345. "format": "PyTorch v0.1.1",
  4346. "link": "https://github.com/pytorch/vision/blob/master/torchvision/models/resnet.py"
  4347. },
  4348. {
  4349. "type": "pytorch",
  4350. "target": "semantic_lstm_vehicle_model.pt",
  4351. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/semantic_lstm_vehicle_model.pt",
  4352. "format": "TorchScript v1.1",
  4353. "link": "https://github.com/ApolloAuto/apollo"
  4354. },
  4355. {
  4356. "type": "pytorch",
  4357. "target": "SiamFC_50_model.pth",
  4358. "source": "https://raw.githubusercontent.com/HengLan/SiamFC-PyTorch/master/Train/model/SiamFC_50_model.pth",
  4359. "format": "PyTorch v0.1.10",
  4360. "link": "https://github.com/HengLan/SiamFC-PyTorch"
  4361. },
  4362. {
  4363. "type": "pytorch",
  4364. "target": "shufflenet_v2_x1_0.pkl.pth",
  4365. "script": "./tools/pytorch sync install zoo",
  4366. "format": "PyTorch v0.1.10",
  4367. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4368. },
  4369. {
  4370. "type": "pytorch",
  4371. "target": "shufflenet_v2_x1_0.zip.pth",
  4372. "script": "./tools/pytorch sync install zoo",
  4373. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4374. },
  4375. {
  4376. "type": "pytorch",
  4377. "target": "shufflenet_v2_x1_0.pt",
  4378. "render": "skip",
  4379. "script": "./tools/pytorch sync install zoo",
  4380. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4381. },
  4382. {
  4383. "type": "pytorch",
  4384. "target": "squeezenet1_0-a815701f.pth",
  4385. "source": "https://download.pytorch.org/models/squeezenet1_0-a815701f.pth",
  4386. "format": "PyTorch v0.1.1"
  4387. },
  4388. {
  4389. "type": "pytorch",
  4390. "target": "squeezenet1_1.pkl.pth",
  4391. "script": "./tools/pytorch sync install zoo",
  4392. "format": "PyTorch v0.1.10",
  4393. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4394. },
  4395. {
  4396. "type": "pytorch",
  4397. "target": "squeezenet1_1.zip.pth",
  4398. "script": "./tools/pytorch sync install zoo",
  4399. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4400. },
  4401. {
  4402. "type": "pytorch",
  4403. "target": "squeezenet1_1.pt",
  4404. "script": "./tools/pytorch sync install zoo",
  4405. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4406. },
  4407. {
  4408. "type": "pytorch",
  4409. "target": "squeezenet1_1_traced.pt",
  4410. "script": "./tools/pytorch sync install zoo",
  4411. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4412. },
  4413. {
  4414. "type": "pytorch",
  4415. "target": "squeezenet1_1-f364aa15.pth",
  4416. "source": "https://download.pytorch.org/models/squeezenet1_1-f364aa15.pth",
  4417. "format": "PyTorch v0.1.1"
  4418. },
  4419. {
  4420. "type": "pytorch",
  4421. "target": "superpoint_v1.pth",
  4422. "source": "https://raw.githubusercontent.com/MagicLeapResearch/SuperPointPretrainedNetwork/master/superpoint_v1.pth",
  4423. "format": "PyTorch v0.1.10",
  4424. "link": "https://github.com/MagicLeapResearch/SuperPointPretrainedNetwork"
  4425. },
  4426. {
  4427. "type": "pytorch",
  4428. "target": "superpoint.pt",
  4429. "source": "https://raw.githubusercontent.com/KinglittleQ/SuperPoint_SLAM/master/superpoint.pt",
  4430. "format": "TorchScript v1.0",
  4431. "link": "https://github.com/KinglittleQ/SuperPoint_SLAM"
  4432. },
  4433. {
  4434. "type": "pytorch",
  4435. "target": "traced_online_lane_enc.pt",
  4436. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/traced_online_lane_enc.pt",
  4437. "format": "TorchScript v1.0",
  4438. "link": "https://github.com/ApolloAuto/apollo"
  4439. },
  4440. {
  4441. "type": "pytorch",
  4442. "target": "traced_online_obs_enc.pt",
  4443. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/traced_online_obs_enc.pt",
  4444. "format": "TorchScript v1.0",
  4445. "link": "https://github.com/ApolloAuto/apollo"
  4446. },
  4447. {
  4448. "type": "pytorch",
  4449. "target": "traced_online_pred_layer.pt",
  4450. "source": "https://raw.githubusercontent.com/ApolloAuto/apollo/master/modules/prediction/data/traced_online_pred_layer.pt",
  4451. "format": "TorchScript v1.0",
  4452. "link": "https://github.com/ApolloAuto/apollo"
  4453. },
  4454. {
  4455. "type": "pytorch",
  4456. "target": "tutorial_bidirectional_recurrent_neural_network.pth",
  4457. "source": "https://github.com/lutzroeder/netron/files/2587823/tutorial_models.zip[tutorial_bidirectional_recurrent_neural_network.pth]",
  4458. "format": "PyTorch v0.1.10",
  4459. "link": "https://github.com/lutzroeder/netron/issues/133"
  4460. },
  4461. {
  4462. "type": "pytorch",
  4463. "target": "tutorial_convolutional_neural_network.pth",
  4464. "source": "https://github.com/lutzroeder/netron/files/2587823/tutorial_models.zip[tutorial_convolutional_neural_network.pth]",
  4465. "format": "PyTorch v0.1.10",
  4466. "link": "https://github.com/lutzroeder/netron/issues/133"
  4467. },
  4468. {
  4469. "type": "pytorch",
  4470. "target": "tutorial_deep_residual_network.pth",
  4471. "source": "https://github.com/lutzroeder/netron/files/2587823/tutorial_models.zip[tutorial_deep_residual_network.pth]",
  4472. "format": "PyTorch v0.1.10",
  4473. "link": "https://github.com/lutzroeder/netron/issues/133"
  4474. },
  4475. {
  4476. "type": "pytorch",
  4477. "target": "tutorial_logistic_regression.pth",
  4478. "source": "https://github.com/lutzroeder/netron/files/2587823/tutorial_models.zip[tutorial_logistic_regression.pth]",
  4479. "format": "PyTorch v0.1.10",
  4480. "link": "https://github.com/lutzroeder/netron/issues/133"
  4481. },
  4482. {
  4483. "type": "pytorch",
  4484. "target": "tutorial_mnist.pth",
  4485. "source": "https://github.com/lutzroeder/netron/files/2587823/tutorial_models.zip[tutorial_mnist.pth]",
  4486. "format": "PyTorch v0.1.10",
  4487. "link": "https://github.com/lutzroeder/netron/issues/133"
  4488. },
  4489. {
  4490. "type": "pytorch",
  4491. "target": "tutorial_recurrent_neural_network.pth",
  4492. "source": "https://github.com/lutzroeder/netron/files/2587823/tutorial_models.zip[tutorial_recurrent_neural_network.pth]",
  4493. "format": "PyTorch v0.1.10",
  4494. "link": "https://github.com/lutzroeder/netron/issues/133"
  4495. },
  4496. {
  4497. "type": "pytorch",
  4498. "target": "tutorial_variational_autoencoder.pth.tar",
  4499. "source": "https://github.com/lutzroeder/netron/files/2587823/tutorial_models.zip[tutorial_variational_autoencoder.pth]",
  4500. "format": "PyTorch v0.1.10",
  4501. "link": "https://github.com/lutzroeder/netron/issues/133"
  4502. },
  4503. {
  4504. "type": "pytorch",
  4505. "target": "vgg-cifar10.pth.tar",
  4506. "source": "http://www.cs.unc.edu/~cyfu/cifar10/model_best.pth.tar",
  4507. "format": "PyTorch v0.1.10",
  4508. "link": "https://github.com/chengyangfu/pytorch-vgg-cifar10"
  4509. },
  4510. {
  4511. "type": "pytorch",
  4512. "target": "vgg11-bbd30ac9.pth",
  4513. "source": "https://download.pytorch.org/models/vgg11-bbd30ac9.pth",
  4514. "format": "PyTorch v0.1.10"
  4515. },
  4516. {
  4517. "type": "pytorch",
  4518. "target": "vgg11_bn.pkl.pth",
  4519. "script": "./tools/pytorch sync install zoo",
  4520. "format": "PyTorch v0.1.10",
  4521. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4522. },
  4523. {
  4524. "type": "pytorch",
  4525. "target": "vgg11_bn.zip.pth",
  4526. "script": "./tools/pytorch sync install zoo",
  4527. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4528. },
  4529. {
  4530. "type": "pytorch",
  4531. "target": "vgg16.pkl.pth",
  4532. "script": "./tools/pytorch sync install zoo",
  4533. "format": "PyTorch v0.1.10",
  4534. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4535. },
  4536. {
  4537. "type": "pytorch",
  4538. "target": "vgg16.zip.pth",
  4539. "script": "./tools/pytorch sync install zoo",
  4540. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4541. },
  4542. {
  4543. "type": "pytorch",
  4544. "target": "vgg16.pt",
  4545. "script": "./tools/pytorch sync install zoo",
  4546. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4547. },
  4548. {
  4549. "type": "pytorch",
  4550. "target": "vgg16_traced.pt",
  4551. "script": "./tools/pytorch sync install zoo",
  4552. "link": "https://pytorch.org/docs/stable/torchvision/models.html"
  4553. },
  4554. {
  4555. "type": "sklearn",
  4556. "target": "binarizer.pkl",
  4557. "source": "https://github.com/lutzroeder/netron/files/2587902/binarizer.zip[binarizer.pkl]",
  4558. "format": "scikit-learn 0.19.1",
  4559. "link": "https://github.com/lutzroeder/netron/issues/182"
  4560. },
  4561. {
  4562. "type": "sklearn",
  4563. "target": "binarizer.joblib",
  4564. "source": "https://github.com/lutzroeder/netron/files/2587902/binarizer.zip[binarizer.joblib]",
  4565. "format": "scikit-learn 0.19.1",
  4566. "link": "https://github.com/lutzroeder/netron/issues/182"
  4567. },
  4568. {
  4569. "type": "sklearn",
  4570. "target": "best_boston.pkl",
  4571. "source": "https://github.com/lutzroeder/netron/files/3335715/xgboost_best_boston.zip[best_boston.pkl]",
  4572. "format": "scikit-learn 0.20.2",
  4573. "link": "https://github.com/lutzroeder/netron/issues/182"
  4574. },
  4575. {
  4576. "type": "sklearn",
  4577. "target": "curvrank.localization.dorsal.weights.pkl",
  4578. "source": "https://lev.cs.rpi.edu/public/models/curvrank.localization.dorsal.weights.pkl",
  4579. "format": "scikit-learn"
  4580. },
  4581. {
  4582. "type": "sklearn",
  4583. "target": "LDA_model.pkl",
  4584. "source": "https://raw.githubusercontent.com/rainer85ah/DCS/master/Output/LDA_model.pkl",
  4585. "format": "scikit-learn",
  4586. "link": "https://github.com/rainer85ah/DCS"
  4587. },
  4588. {
  4589. "type": "sklearn",
  4590. "target": "phoenix_ml_classifier.pkl",
  4591. "source": "https://raw.githubusercontent.com/imeraj/Phoenix_Playground/master/1.4/phoenix_ml/lib/phoenix_ml/model/classifier.pkl",
  4592. "format": "scikit-learn 0.19.1",
  4593. "link": "https://github.com/imeraj/Phoenix_Playground/tree/master/1.4/phoenix_ml/lib/phoenix_ml/model"
  4594. },
  4595. {
  4596. "type": "sklearn",
  4597. "target": "forest_iris_ExtraTreesClassifier.pkl",
  4598. "source": "https://github.com/lutzroeder/netron/files/2592356/forest_iris_models.zip[forest_iris_ExtraTreesClassifier.pkl]",
  4599. "format": "scikit-learn 0.19.2",
  4600. "link": "https://github.com/lutzroeder/netron/issues/182"
  4601. },
  4602. {
  4603. "type": "sklearn",
  4604. "target": "forest_iris_RandomForestClassifier.pkl",
  4605. "source": "https://github.com/lutzroeder/netron/files/2592356/forest_iris_models.zip[forest_iris_RandomForestClassifier.pkl]",
  4606. "format": "scikit-learn 0.19.2",
  4607. "link": "https://github.com/lutzroeder/netron/issues/182"
  4608. },
  4609. {
  4610. "type": "sklearn",
  4611. "target": "forest_iris_AdaBoostClassifier.pkl",
  4612. "source": "https://github.com/lutzroeder/netron/files/2592356/forest_iris_models.zip[forest_iris_AdaBoostClassifier.pkl]",
  4613. "format": "scikit-learn 0.19.2",
  4614. "link": "https://github.com/lutzroeder/netron/issues/182"
  4615. },
  4616. {
  4617. "type": "sklearn",
  4618. "target": "forest_iris_DecisionTreeClassifier.pkl",
  4619. "source": "https://github.com/lutzroeder/netron/files/2592356/forest_iris_models.zip[forest_iris_DecisionTreeClassifier.pkl]",
  4620. "format": "scikit-learn 0.19.2",
  4621. "link": "https://github.com/lutzroeder/netron/issues/182"
  4622. },
  4623. {
  4624. "type": "sklearn",
  4625. "target": "net2.pkl",
  4626. "source": "https://raw.githubusercontent.com/Aabglov/LasaganeTest/master/results/net2.pkl",
  4627. "format": "scikit-learn",
  4628. "link": "https://github.com/Aabglov/LasaganeTest"
  4629. },
  4630. {
  4631. "type": "sklearn",
  4632. "target": "pima.xgboost.joblib.pkl",
  4633. "source": "https://github.com/lutzroeder/netron/files/2656501/pima.xgboost.joblib.pkl.zip[pima.xgboost.joblib.pkl]",
  4634. "format": "scikit-learn",
  4635. "link": "https://github.com/lutzroeder/netron/issues/182"
  4636. },
  4637. {
  4638. "type": "sklearn",
  4639. "target": "R-50.pkl",
  4640. "source": "https://dl.fbaipublicfiles.com/detectron/ImageNetPretrained/MSRA/R-50.pkl",
  4641. "format": "scikit-learn",
  4642. "link": "https://github.com/facebookresearch/Detectron"
  4643. },
  4644. {
  4645. "type": "sklearn",
  4646. "target": "robinhood-portfolio_data_user.pkl.pkl",
  4647. "source": "https://raw.githubusercontent.com/omdv/robinhood-portfolio/4622dc61e0556a85ce52c4de178d01a9838acbc5/data/user.pkl",
  4648. "error": "Root object has no type in 'robinhood-portfolio_data_user.pkl.pkl'.",
  4649. "link": "https://github.com/omdv/robinhood-portfolio/tree/4622dc61e0556a85ce52c4de178d01a9838acbc5"
  4650. },
  4651. {
  4652. "type": "sklearn",
  4653. "target": "svc.joblib.pkl",
  4654. "source": "https://github.com/lutzroeder/netron/files/2592359/svc.zip[svc.joblib.pkl]",
  4655. "format": "scikit-learn 0.19.1",
  4656. "link": "https://github.com/lutzroeder/netron/issues/182"
  4657. },
  4658. {
  4659. "type": "sklearn",
  4660. "target": "svc.pkl",
  4661. "source": "https://github.com/lutzroeder/netron/files/2592359/svc.zip[svc.pkl]",
  4662. "format": "scikit-learn 0.19.1",
  4663. "link": "https://github.com/lutzroeder/netron/issues/182"
  4664. },
  4665. {
  4666. "type": "sklearn",
  4667. "target": "wiki-aa-mlp.pkl",
  4668. "source": "https://github.com/lutzroeder/netron/files/2674319/wiki-aa-mlp.pkl.zip[wiki-aa-mlp.pkl]",
  4669. "format": "scikit-learn 0.19.0",
  4670. "link": "https://github.com/lutzroeder/netron/issues/182"
  4671. },
  4672. {
  4673. "type": "tf",
  4674. "target": "bert_uncased_L-12_H-768_A-12.meta",
  4675. "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]",
  4676. "format": "TensorFlow MetaGraph", "producer": "TensorFlow v1.11.0-rc1",
  4677. "render": "skip",
  4678. "link": "https://github.com/google-research/bert#pre-trained-models"
  4679. },
  4680. {
  4681. "type": "tf",
  4682. "target": "bert_cased_L-24_H-1024_A-16.meta",
  4683. "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]",
  4684. "format": "TensorFlow MetaGraph",
  4685. "render": "skip",
  4686. "link": "https://github.com/google-research/bert#pre-trained-models"
  4687. },
  4688. {
  4689. "type": "tf",
  4690. "target": "char-rnn-tensorflow.pb",
  4691. "source": "https://github.com/lutzroeder/netron/files/2592462/char-rnn-tensorflow.pb.zip[char-rnn-tensorflow.pb]",
  4692. "format": "TensorFlow Graph",
  4693. "render": "skip",
  4694. "link": "https://github.com/lutzroeder/netron/issues/187"
  4695. },
  4696. {
  4697. "type": "tf",
  4698. "target": "chessbot.pb",
  4699. "source": "https://raw.githubusercontent.com/srom/chessbot/master/model/chessbot.pb",
  4700. "format": "TensorFlow Graph",
  4701. "link": "https://github.com/srom/chessbot"
  4702. },
  4703. {
  4704. "type": "tf",
  4705. "target": "chessbot_estimator.pb",
  4706. "source": "https://raw.githubusercontent.com/srom/chessbot/master/model/estimator.pb",
  4707. "format": "TensorFlow Graph",
  4708. "link": "https://github.com/srom/chessbot"
  4709. },
  4710. {
  4711. "type": "tf",
  4712. "target": "chessbot_classifier.pb",
  4713. "source": "https://raw.githubusercontent.com/srom/chessbot/master/model/classifier.pb",
  4714. "format": "TensorFlow Graph",
  4715. "link": "https://github.com/srom/chessbot"
  4716. },
  4717. {
  4718. "type": "tf",
  4719. "target": "classify_image_graph_def.pb",
  4720. "source": "https://raw.githubusercontent.com/taey16/tf/master/imagenet/classify_image_graph_def.pb",
  4721. "format": "TensorFlow Graph",
  4722. "link": "https://github.com/taey16/tf"
  4723. },
  4724. {
  4725. "type": "tf",
  4726. "target": "conv-layers.pb.zip",
  4727. "source": "https://github.com/lutzroeder/netron/files/2592468/conv-layers.pb.zip",
  4728. "format": "TensorFlow Graph",
  4729. "link": "https://github.com/lutzroeder/netron/issues/187"
  4730. },
  4731. {
  4732. "type": "tf",
  4733. "target": "densenet.pb",
  4734. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/model_zoo/upload_20180427/densenet_2018_04_27.tgz[densenet/densenet.pb]",
  4735. "format": "TensorFlow Graph",
  4736. "link": "https://github.com/tensorflow/tensorflow/blob/master/tensorflow/lite/g3doc/guide/hosted_models.md"
  4737. },
  4738. {
  4739. "type": "tf",
  4740. "target": "exDeepFM-criteo.meta",
  4741. "source": "https://raw.githubusercontent.com/Leavingseason/xDeepFM/master/exdeepfm/checkpoint/epoch_0.meta",
  4742. "format": "TensorFlow MetaGraph",
  4743. "render": "skip",
  4744. "link": "https://github.com/Leavingseason/xDeepFM"
  4745. },
  4746. {
  4747. "type": "tf",
  4748. "target": "faster_rcnn_inception_resnet_v2_atrous_oid_2018_01_28_saved_model.pb",
  4749. "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/saved_model/saved_model.pb]",
  4750. "format": "TensorFlow Saved Model v1",
  4751. "render": "skip",
  4752. "link": "https://github.com/GoogleCloudPlatform/tensorflow-object-detection-example"
  4753. },
  4754. {
  4755. "type": "tf",
  4756. "target": "faster_rcnn_inception_resnet_v2_atrous_oid_2018_01_28_frozen_inference.pb",
  4757. "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/frozen_inference_graph.pb]",
  4758. "format": "TensorFlow Graph",
  4759. "render": "skip",
  4760. "link": "https://github.com/GoogleCloudPlatform/tensorflow-object-detection-example"
  4761. },
  4762. {
  4763. "type": "tf",
  4764. "target": "faster_rcnn_inception_resnet_v2_atrous_oid_2018_01_28.ckpt.meta",
  4765. "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]",
  4766. "format": "TensorFlow MetaGraph",
  4767. "render": "skip",
  4768. "link": "https://github.com/GoogleCloudPlatform/tensorflow-object-detection-example"
  4769. },
  4770. {
  4771. "type": "tf",
  4772. "target": "faster_rcnn_resnet50_lowproposals_coco_2017_11_08_frozen_inference.pb",
  4773. "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/frozen_inference_graph.pb]",
  4774. "render": "skip",
  4775. "format": "TensorFlow Graph"
  4776. },
  4777. {
  4778. "type": "tf",
  4779. "target": "faster_rcnn_resnet50_lowproposals_coco_2017_11_08.ckpt.meta",
  4780. "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]",
  4781. "render": "skip",
  4782. "format": "TensorFlow MetaGraph"
  4783. },
  4784. {
  4785. "type": "tf",
  4786. "target": "faster_rcnn_resnet50_lowproposals_coco_2017_11_08_saved_model.pb",
  4787. "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/saved_model/saved_model.pb]",
  4788. "render": "skip",
  4789. "format": "TensorFlow Saved Model v1"
  4790. },
  4791. {
  4792. "type": "tf",
  4793. "target": "graphdef_saved_model.pb",
  4794. "source": "https://github.com/lutzroeder/netron/files/2528688/saved_model.zip[saved_model.pb]",
  4795. "format": "TensorFlow Graph",
  4796. "link": "https://github.com/lutzroeder/netron/issues/171"
  4797. },
  4798. {
  4799. "type": "tf",
  4800. "target": "half_plus_two_saved_model.pb",
  4801. "source": "https://raw.githubusercontent.com/tensorflow/tensorflow/master/tensorflow/cc/saved_model/testdata/half_plus_two/00000123/saved_model.pb",
  4802. "format": "TensorFlow Saved Model v1",
  4803. "link": "https://github.com/tensorflow/tensorflow/tree/master/tensorflow/cc/saved_model/testdata"
  4804. },
  4805. {
  4806. "type": "tf",
  4807. "target": "half_plus_two_main_op_saved_model.pb",
  4808. "source": "https://raw.githubusercontent.com/tensorflow/tensorflow/master/tensorflow/cc/saved_model/testdata/half_plus_two_main_op/00000123/saved_model.pb",
  4809. "format": "TensorFlow Saved Model v1",
  4810. "link": "https://github.com/tensorflow/tensorflow/tree/master/tensorflow/cc/saved_model/testdata"
  4811. },
  4812. {
  4813. "type": "tf",
  4814. "target": "half_plus_two_pbtxt_saved_model.pbtxt",
  4815. "source": "https://raw.githubusercontent.com/tensorflow/tensorflow/master/tensorflow/cc/saved_model/testdata/half_plus_two_pbtxt/00000123/saved_model.pbtxt",
  4816. "format": "TensorFlow Saved Model v1",
  4817. "link": "https://github.com/tensorflow/tensorflow/tree/master/tensorflow/cc/saved_model/testdata"
  4818. },
  4819. {
  4820. "type": "tf",
  4821. "target": "inception_v1_2016_08_28_frozen.pb",
  4822. "source": "https://storage.googleapis.com/download.tensorflow.org/models/inception_resnet_v2_2016_08_30_frozen.pb.tar.gz[inception_resnet_v2_2016_08_30_frozen.pb]",
  4823. "format": "TensorFlow Graph",
  4824. "link": "https://github.com/onnx/tensorflow-onnx/blob/master/tests/run_pretrained_models.yaml"
  4825. },
  4826. {
  4827. "type": "tf",
  4828. "target": "inception_v1_2016_08_28_frozen.pb",
  4829. "source": "https://storage.googleapis.com/download.tensorflow.org/models/inception_v1_2016_08_28_frozen.pb.tar.gz[inception_v1_2016_08_28_frozen.pb]",
  4830. "format": "TensorFlow Graph",
  4831. "link": "https://github.com/onnx/tensorflow-onnx/blob/master/tests/run_pretrained_models.yaml"
  4832. },
  4833. {
  4834. "type": "tf",
  4835. "target": "inception_v2_2016_08_28_frozen.pb",
  4836. "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]",
  4837. "format": "TensorFlow Graph",
  4838. "link": "https://github.com/onnx/tensorflow-onnx/blob/master/tests/run_pretrained_models.yaml"
  4839. },
  4840. {
  4841. "type": "tf",
  4842. "target": "inception_v3.pb",
  4843. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/model_zoo/upload_20180427/inception_v3_2018_04_27.tgz[./inception_v3.pb]"
  4844. },
  4845. {
  4846. "type": "tf",
  4847. "target": "inception_v3_2016_08_28_frozen.pb",
  4848. "source": "https://storage.googleapis.com/download.tensorflow.org/models/inception_v3_2016_08_28_frozen.pb.tar.gz[inception_v3_2016_08_28_frozen.pb]",
  4849. "format": "TensorFlow Graph",
  4850. "link": "https://github.com/onnx/tensorflow-onnx/blob/master/tests/run_pretrained_models.yaml"
  4851. },
  4852. {
  4853. "type": "tf",
  4854. "target": "inception_v4.pb",
  4855. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/model_zoo/upload_20180427/inception_v4_2018_04_27.tgz[./inception_v4.pb]"
  4856. },
  4857. {
  4858. "type": "tf",
  4859. "target": "inception5h.pb",
  4860. "source": "https://storage.googleapis.com/download.tensorflow.org/models/inception5h.zip[tensorflow_inception_graph.pb]"
  4861. },
  4862. {
  4863. "type": "tf",
  4864. "target": "inception_resnet_v2.pb",
  4865. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/model_zoo/upload_20180427/inception_resnet_v2_2018_04_27.tgz[./inception_resnet_v2.pb]"
  4866. },
  4867. {
  4868. "type": "tf",
  4869. "target": "mask_rcnn_resnet50_atrous_coco_2018_01_28_saved_model.pb",
  4870. "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/saved_model/saved_model.pb]",
  4871. "format": "TensorFlow Saved Model v1",
  4872. "render": "skip"
  4873. },
  4874. {
  4875. "type": "tf",
  4876. "target": "mask_rcnn_resnet50_atrous_coco_2018_01_28_frozen_inference.pb",
  4877. "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/frozen_inference_graph.pb]",
  4878. "format": "TensorFlow Graph",
  4879. "render": "skip"
  4880. },
  4881. {
  4882. "type": "tf",
  4883. "target": "mask_rcnn_resnet50_atrous_coco_2018_01_28.ckpt.meta",
  4884. "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]",
  4885. "format": "TensorFlow MetaGraph",
  4886. "render": "skip"
  4887. },
  4888. {
  4889. "type": "tf",
  4890. "target": "mobilenet_v1_1.0_224_frozen.pb",
  4891. "source": "http://download.tensorflow.org/models/mobilenet_v1_2018_08_02/mobilenet_v1_1.0_224.tgz[./mobilenet_v1_1.0_224_frozen.pb]",
  4892. "format": "TensorFlow Graph"
  4893. },
  4894. {
  4895. "type": "tf",
  4896. "target": "mobilenet_v1_1.0_224_eval.pbtxt",
  4897. "source": "http://download.tensorflow.org/models/mobilenet_v1_2018_08_02/mobilenet_v1_1.0_224.tgz[./mobilenet_v1_1.0_224_eval.pbtxt]",
  4898. "format": "TensorFlow Graph"
  4899. },
  4900. {
  4901. "type": "tf",
  4902. "target": "mobilenet_v1_1.0_224_quant_eval.pbtxt",
  4903. "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]",
  4904. "format": "TensorFlow Graph",
  4905. "link": "https://github.com/tensorflow/models/blob/master/research/slim/nets/mobilenet_v1.md"
  4906. },
  4907. {
  4908. "type": "tf",
  4909. "target": "mobilenet_v1_1.0_224_quant_frozen.pb",
  4910. "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]",
  4911. "format": "TensorFlow Graph",
  4912. "link": "https://github.com/tensorflow/models/blob/master/research/slim/nets/mobilenet_v1.md"
  4913. },
  4914. {
  4915. "type": "tf",
  4916. "target": "mobilenet_v1_1.0_224_quant.ckpt.meta",
  4917. "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]",
  4918. "format": "TensorFlow MetaGraph",
  4919. "render": "skip",
  4920. "link": "https://github.com/tensorflow/models/blob/master/research/slim/nets/mobilenet_v1.md"
  4921. },
  4922. {
  4923. "type": "tf",
  4924. "target": "mobilenet_v2_1.4_224_frozen.pb",
  4925. "source": "https://storage.googleapis.com/mobilenet_v2/checkpoints/mobilenet_v2_1.4_224.tgz[./mobilenet_v2_1.4_224_frozen.pb]",
  4926. "format": "TensorFlow Graph",
  4927. "link": "https://www.tensorflow.org/lite/models"
  4928. },
  4929. {
  4930. "type": "tf",
  4931. "target": "mobilenet_v2_1.4_224.ckpt.meta",
  4932. "source": "https://storage.googleapis.com/mobilenet_v2/checkpoints/mobilenet_v2_1.4_224.tgz[./mobilenet_v2_1.4_224.ckpt.meta]",
  4933. "format": "TensorFlow MetaGraph",
  4934. "render": "skip",
  4935. "link": "https://www.tensorflow.org/lite/models"
  4936. },
  4937. {
  4938. "type": "tf",
  4939. "target": "mobilenet_v2_1.4_224_eval.pbtxt",
  4940. "source": "https://storage.googleapis.com/mobilenet_v2/checkpoints/mobilenet_v2_1.4_224.tgz[./mobilenet_v2_1.4_224_eval.pbtxt]",
  4941. "format": "TensorFlow Graph",
  4942. "link": "https://www.tensorflow.org/lite/models"
  4943. },
  4944. {
  4945. "type": "tf",
  4946. "target": "mnasnet_0.5_224.pb",
  4947. "source": "http://download.tensorflow.org/models/tflite/mnasnet_0.5_224_09_07_2018.tgz[mnasnet_0.5_224/mnasnet_0.5_224.pb]",
  4948. "format": "TensorFlow Graph",
  4949. "link": "https://www.tensorflow.org/lite/models"
  4950. },
  4951. {
  4952. "type": "tf",
  4953. "target": "mnasnet_1.3_224.pb",
  4954. "source": "http://download.tensorflow.org/models/tflite/mnasnet_1.3_224_09_07_2018.tgz[mnasnet_1.3_224/mnasnet_1.3_224.pb]",
  4955. "format": "TensorFlow Graph",
  4956. "link": "https://www.tensorflow.org/lite/models"
  4957. },
  4958. {
  4959. "type": "tf",
  4960. "target": "nasnet_large.pb",
  4961. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/model_zoo/upload_20180427/nasnet_large_2018_04_27.tgz[./nasnet_large.pb]",
  4962. "format": "TensorFlow Graph",
  4963. "link": "https://www.tensorflow.org/lite/models"
  4964. },
  4965. {
  4966. "type": "tf",
  4967. "target": "nasnet_mobile.pb",
  4968. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/model_zoo/upload_20180427/nasnet_mobile_2018_04_27.tgz[./nasnet_mobile.pb]",
  4969. "format": "TensorFlow Graph",
  4970. "link": "https://www.tensorflow.org/lite/models"
  4971. },
  4972. {
  4973. "type": "tf",
  4974. "target": "netron_issue_110.pb",
  4975. "source": "https://github.com/lutzroeder/netron/files/2592457/netron_issue_110.pb.zip[netron_issue_110.pb]",
  4976. "format": "TensorFlow Graph",
  4977. "link": "https://github.com/lutzroeder/netron/issues/110"
  4978. },
  4979. {
  4980. "type": "tf",
  4981. "target": "netron_issue_224.pbtxt",
  4982. "source": "https://github.com/lutzroeder/netron/files/2823959/netron_issue_224.zip[netron_issue_224.pbtxt]",
  4983. "format": "TensorFlow Graph",
  4984. "link": "https://github.com/lutzroeder/netron/issues/224"
  4985. },
  4986. {
  4987. "type": "tf",
  4988. "target": "netron_issue_291.pbtxt",
  4989. "source": "https://github.com/lutzroeder/netron/files/3336368/netron_issue_291.zip[netron_issue_291.pbtxt]",
  4990. "format": "TensorFlow Graph",
  4991. "link": "https://github.com/lutzroeder/netron/issues/291"
  4992. },
  4993. {
  4994. "type": "tf",
  4995. "target": "netron_issue_320.pb",
  4996. "source": "https://github.com/lutzroeder/netron/files/3499707/netron_issue_320.zip[netron_issue_320.pb]",
  4997. "format": "TensorFlow Graph",
  4998. "link": "https://github.com/lutzroeder/netron/issues/320"
  4999. },
  5000. {
  5001. "type": "tf",
  5002. "target": "netron_issue_320.pbtxt",
  5003. "source": "https://github.com/lutzroeder/netron/files/3499707/netron_issue_320.zip[netron_issue_320.pbtxt]",
  5004. "format": "TensorFlow Graph",
  5005. "link": "https://github.com/lutzroeder/netron/issues/320"
  5006. },
  5007. {
  5008. "type": "tf",
  5009. "target": "netron_issue_323.pbtxt",
  5010. "source": "https://github.com/lutzroeder/netron/files/3539403/graph.zip[graph.pbtxt]",
  5011. "render": "skip",
  5012. "format": "TensorFlow Graph",
  5013. "link": "https://github.com/lutzroeder/netron/issues/323"
  5014. },
  5015. {
  5016. "type": "tf",
  5017. "target": "netron_issue_342.zip",
  5018. "source": "https://github.com/lutzroeder/netron/files/3918584/netron_issue_342.zip",
  5019. "format": "TensorFlow Saved Model v1",
  5020. "link": "https://github.com/lutzroeder/netron/issues/342"
  5021. },
  5022. {
  5023. "type": "tf",
  5024. "target": "netron_issue_405.zip",
  5025. "source": "https://github.com/lutzroeder/netron/files/4017943/netron_issue_405.zip",
  5026. "format": "TensorFlow Tensor Bundle v2",
  5027. "link": "https://github.com/lutzroeder/netron/issues/405"
  5028. },
  5029. {
  5030. "type": "tf",
  5031. "target": "pose_estimation_for_mobile.pb",
  5032. "source": "https://raw.githubusercontent.com/edvardHua/PoseEstimationForMobile/master/release/cpm_model/model.pb",
  5033. "format": "TensorFlow Graph",
  5034. "link": "https://github.com/edvardHua/PoseEstimationForMobile"
  5035. },
  5036. {
  5037. "type": "tf",
  5038. "target": "readable_graph.meta",
  5039. "source": "https://github.com/lutzroeder/netron/files/2592463/readable_graph.meta.zip[readable_graph.meta]",
  5040. "format": "TensorFlow MetaGraph",
  5041. "link": "https://github.com/lutzroeder/netron/issues/187"
  5042. },
  5043. {
  5044. "type": "tf",
  5045. "target": "resnet_v1_50.pb",
  5046. "source": "https://deepdetect.com/models/tf/resnet_v1_50/resnet_v1_50.pb",
  5047. "format": "TensorFlow Graph",
  5048. "link": "https://deepdetect.com/models/tf"
  5049. },
  5050. {
  5051. "type": "tf",
  5052. "target": "resnet_v1_50.ckpt",
  5053. "source": "https://raw.githubusercontent.com/serre-lab/deeplabcut_mgh/master/deeplabcut/pose_estimation_tensorflow/models/pretrained/resnet_v1_50.ckpt",
  5054. "format": "TensorFlow Tensor Bundle v1",
  5055. "link": "https://github.com/lutzroeder/netron/issues/405"
  5056. },
  5057. {
  5058. "type": "tf",
  5059. "target": "resnet_v1_101.pb",
  5060. "source": "https://deepdetect.com/models/tf/resnet_v1_101/resnet_v1_101.pb",
  5061. "format": "TensorFlow Graph",
  5062. "link": "https://deepdetect.com/models/tf"
  5063. },
  5064. {
  5065. "type": "tf",
  5066. "target": "resnet_v1_152.pb",
  5067. "source": "https://deepdetect.com/models/tf/resnet_v1_152/resnet_v1_152.pb",
  5068. "format": "TensorFlow Graph",
  5069. "link": "https://deepdetect.com/models/tf"
  5070. },
  5071. {
  5072. "type": "tf",
  5073. "target": "resnet_v2_fp16_savedmodel_NHWC_saved_model.pb",
  5074. "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]",
  5075. "format": "TensorFlow Saved Model v1",
  5076. "link": "https://github.com/onnx/tensorflow-onnx/blob/master/tests/run_pretrained_models.yaml"
  5077. },
  5078. {
  5079. "type": "tf",
  5080. "target": "resnet18_model_baseline.pbtxt",
  5081. "source": "https://github.com/lutzroeder/netron/files/2913372/resnet18_model_baseline.pbtxt.zip[resnet18_model_baseline.pbtxt]",
  5082. "render": "skip",
  5083. "format": "TensorFlow Graph",
  5084. "link": "https://github.com/lutzroeder/netron/issues/235"
  5085. },
  5086. {
  5087. "type": "tf",
  5088. "target": "speech_commands_v0.pb",
  5089. "source": "http://storage.googleapis.com/download.tensorflow.org/models/speech_commands_v0.01.zip[conv_actions_frozen.pb]",
  5090. "format": "TensorFlow Graph"
  5091. },
  5092. {
  5093. "type": "tf",
  5094. "target": "squeezenet.pb",
  5095. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/model_zoo/upload_20180427/squeezenet_2018_04_27.tgz[./squeezenet.pb]"
  5096. },
  5097. {
  5098. "type": "tf",
  5099. "target": "ssd_mobilenet_v1_android_export.pb",
  5100. "source": "https://storage.googleapis.com/download.tensorflow.org/models/object_detection/ssd_mobilenet_v1_android_export.zip[ssd_mobilenet_v1_android_export.pb]",
  5101. "format": "TensorFlow Graph",
  5102. "render": "skip",
  5103. "link": "https://www.tensorflow.org/lite/models"
  5104. },
  5105. {
  5106. "type": "tf",
  5107. "target": "ssd_mobilenet_v1_coco_11_06_2017_graph.pbtxt",
  5108. "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]",
  5109. "format": "TensorFlow Graph",
  5110. "render": "skip",
  5111. "link": "https://github.com/GoogleCloudPlatform/tensorflow-object-detection-example"
  5112. },
  5113. {
  5114. "type": "tf",
  5115. "target": "ssd_mobilenet_v1_coco_11_06_2017_frozen_inference.pb",
  5116. "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]",
  5117. "format": "TensorFlow Graph",
  5118. "link": "https://github.com/GoogleCloudPlatform/tensorflow-object-detection-example"
  5119. },
  5120. {
  5121. "type": "tf",
  5122. "target": "ssd_mobilenet_v1_coco_11_06_2017.ckpt.meta",
  5123. "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]",
  5124. "format": "TensorFlow MetaGraph",
  5125. "render": "skip",
  5126. "link": "https://github.com/GoogleCloudPlatform/tensorflow-object-detection-example"
  5127. },
  5128. {
  5129. "type": "tf",
  5130. "target": "tensorflow_issue_9169_saved_model.pbtxt",
  5131. "source": "https://github.com/tensorflow/tensorflow/files/917065/sample.zip[sample/load/saved_model.pbtxt]",
  5132. "format": "TensorFlow Saved Model v1",
  5133. "link": "https://github.com/tensorflow/tensorflow/issues/9169"
  5134. },
  5135. {
  5136. "type": "tf",
  5137. "target": "vgg_16.pb",
  5138. "source": "https://deepdetect.com/models/tf/vgg_16/vgg_16.pb",
  5139. "format": "TensorFlow Graph",
  5140. "link": "https://deepdetect.com/models/tf"
  5141. },
  5142. {
  5143. "type": "tf",
  5144. "target": "vgg_19.pb",
  5145. "source": "https://deepdetect.com/models/tf/vgg_19/vgg_19.pb",
  5146. "format": "TensorFlow Graph",
  5147. "link": "https://deepdetect.com/models/tf"
  5148. },
  5149. {
  5150. "type": "tfjs",
  5151. "target": "air-time-model/air-time-model.json",
  5152. "source": "https://github.com/lutzroeder/netron/files/3170424/air-time-model.json.zip[air-time-model.json]",
  5153. "format": "TensorFlow.js layers-model", "producer": "TensorFlow.js tfjs-layers v1.0.4",
  5154. "link": "https://github.com/lutzroeder/netron/issues/270"
  5155. },
  5156. {
  5157. "type": "tfjs",
  5158. "target": "mnist_transfer_cnn_v1/model.json,mnist_transfer_cnn_v1/group1-shard1of1,mnist_transfer_cnn_v1/group2-shard1of1,mnist_transfer_cnn_v1/group3-shard1of1,mnist_transfer_cnn_v1/group4-shard1of1",
  5159. "source": "https://github.com/lutzroeder/netron/files/3361048/mnist_transfer_cnn_v1.zip[model.json,group1-shard1of1,group2-shard1of1,group3-shard1of1,group4-shard1of1]",
  5160. "format": "TensorFlow.js Keras v2.1.4",
  5161. "link": "https://github.com/tensorflow/tfjs-examples"
  5162. },
  5163. {
  5164. "type": "tfjs",
  5165. "target": "mobilenet_v1_0.25_224/model.json",
  5166. "source": "https://storage.googleapis.com/tfjs-models/tfjs/mobilenet_v1_0.25_224/model.json",
  5167. "format": "TensorFlow.js Keras v2.1.4",
  5168. "link": "https://github.com/tensorflow/tfjs-examples"
  5169. },
  5170. {
  5171. "type": "tfjs",
  5172. "target": "posenet_mobilenet_float_075/model-stride16.json,posenet_mobilenet_float_075/group1-shard1of2.bin,posenet_mobilenet_float_075/group1-shard2of2.bin",
  5173. "source": "https://github.com/lutzroeder/netron/files/3357629/posenet_mobilenet_float_075.zip[model-stride16.json,group1-shard1of2.bin,group1-shard2of2.bin]",
  5174. "format": "TensorFlow.js graph-model",
  5175. "link": "https://github.com/intel/webml-polyfill/issues/880"
  5176. },
  5177. {
  5178. "type": "tfjs",
  5179. "target": "sentiment_cnn_v1/model.json",
  5180. "source": "https://github.com/lutzroeder/netron/files/3361046/sentiment_cnn_v1.zip[model.json]",
  5181. "format": "TensorFlow.js Keras v2.1.4",
  5182. "link": "https://github.com/tensorflow/tfjs-examples"
  5183. },
  5184. {
  5185. "type": "tfjs",
  5186. "target": "translation_en_fr_v1/model.json",
  5187. "source": "https://storage.googleapis.com/tfjs-models/tfjs/translation_en_fr_v1/model.json",
  5188. "format": "TensorFlow.js Keras v2.1.4",
  5189. "link": "https://github.com/tensorflow/tfjs-examples"
  5190. },
  5191. {
  5192. "type": "tflite",
  5193. "target": "deeplab_mobilenetv2_513.tflite",
  5194. "source": "https://raw.githubusercontent.com/pinzhenx/webml-demo/master/examples/deeplab/model/deeplab_mobilenetv2_513.tflite",
  5195. "format": "TensorFlow Lite v3",
  5196. "link": "https://github.com/pinzhenx/webml-demo"
  5197. },
  5198. {
  5199. "type": "tflite",
  5200. "target": "deeplab_mobilenetv2_513_dilated.tflite",
  5201. "source": "https://raw.githubusercontent.com/pinzhenx/webml-demo/master/examples/deeplab/model/deeplab_mobilenetv2_513_dilated.tflite",
  5202. "format": "TensorFlow Lite v3",
  5203. "link": "https://github.com/pinzhenx/webml-demo"
  5204. },
  5205. {
  5206. "type": "tflite",
  5207. "target": "densenet.tflite",
  5208. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/model_zoo/upload_20180427/densenet_2018_04_27.tgz[densenet/densenet.tflite]",
  5209. "format": "TensorFlow Lite v3"
  5210. },
  5211. {
  5212. "type": "tflite",
  5213. "target": "hair_segmentation.tflite",
  5214. "source": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/models/hair_segmentation.tflite",
  5215. "format": "TensorFlow Lite v3",
  5216. "link": "https://github.com/google/mediapipe"
  5217. },
  5218. {
  5219. "type": "tflite",
  5220. "target": "inception_resnet_v2.tflite",
  5221. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/model_zoo/upload_20180427/inception_resnet_v2_2018_04_27.tgz[./inception_resnet_v2.tflite]",
  5222. "format": "TensorFlow Lite v3"
  5223. },
  5224. {
  5225. "type": "tflite",
  5226. "target": "inception_v3.tflite",
  5227. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/model_zoo/upload_20180427/inception_v3_2018_04_27.tgz[./inception_v3.tflite]"
  5228. },
  5229. {
  5230. "type": "tflite",
  5231. "target": "inception_v3_quant.tflite",
  5232. "source": "http://download.tensorflow.org/models/tflite_11_05_08/inception_v3_quant.tgz[inception_v3_quant.tflite]",
  5233. "format": "TensorFlow Lite v3",
  5234. "link": "https://www.tensorflow.org/lite/models"
  5235. },
  5236. {
  5237. "type": "tflite",
  5238. "target": "inception_v4.tflite",
  5239. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/model_zoo/upload_20180427/inception_v4_2018_04_27.tgz[./inception_v4.tflite]",
  5240. "format": "TensorFlow Lite v3"
  5241. },
  5242. {
  5243. "type": "tflite",
  5244. "target": "inception_v4_299_quant.tflite",
  5245. "source": "http://download.tensorflow.org/models/inception_v4_299_quant_20181026.tgz[inception_v4_299_quant.tflite]",
  5246. "format": "TensorFlow Lite v3",
  5247. "link": "https://www.tensorflow.org/lite/models"
  5248. },
  5249. {
  5250. "type": "tflite",
  5251. "target": "inceptionv3_slim_2016.tflite",
  5252. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/inception_v3_slim_2016_android_2017_11_10.zip[inceptionv3_slim_2016.tflite]",
  5253. "format": "TensorFlow Lite v3"
  5254. },
  5255. {
  5256. "type": "tflite",
  5257. "target": "mobilenet_v1_1.0_224.tflite",
  5258. "source": "http://download.tensorflow.org/models/mobilenet_v1_2018_08_02/mobilenet_v1_1.0_224.tgz[./mobilenet_v1_1.0_224.tflite]",
  5259. "format": "TensorFlow Lite v3",
  5260. "link": "https://www.tensorflow.org/lite/models"
  5261. },
  5262. {
  5263. "type": "tflite",
  5264. "target": "mobilenet_v1_1.0_224.lite",
  5265. "source": "http://download.tensorflow.org/models/mobilenet_v1_2018_08_02/mobilenet_v1_1.0_224.tgz[./mobilenet_v1_1.0_224.tflite]",
  5266. "format": "TensorFlow Lite v3",
  5267. "link": "https://www.tensorflow.org/lite/models"
  5268. },
  5269. {
  5270. "type": "tflite",
  5271. "target": "mobilenet_v1_1.0_224_quant.tflite",
  5272. "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]",
  5273. "format": "TensorFlow Lite v3",
  5274. "link": "https://www.tensorflow.org/lite/models"
  5275. },
  5276. {
  5277. "type": "tflite",
  5278. "target": "mobilenet_v2_0.4_224.tflite",
  5279. "source": "https://storage.googleapis.com/mobilenet_v2/checkpoints/mobilenet_v2_1.0_224.tgz[./mobilenet_v2_1.0_224.tflite]",
  5280. "format": "TensorFlow Lite v3"
  5281. },
  5282. {
  5283. "type": "tflite",
  5284. "target": "mobilenet_v2_1.4_224.tflite",
  5285. "source": "https://storage.googleapis.com/mobilenet_v2/checkpoints/mobilenet_v2_1.4_224.tgz[./mobilenet_v2_1.4_224.tflite]",
  5286. "format": "TensorFlow Lite v3"
  5287. },
  5288. {
  5289. "type": "tflite",
  5290. "target": "mnasnet_0.5_224.tflite",
  5291. "source": "http://download.tensorflow.org/models/tflite/mnasnet_0.5_224_09_07_2018.tgz[mnasnet_0.5_224/mnasnet_0.5_224.tflite]",
  5292. "format": "TensorFlow Lite v3",
  5293. "link": "https://www.tensorflow.org/lite/models"
  5294. },
  5295. {
  5296. "type": "tflite",
  5297. "target": "mnasnet_1.3_224.tflite",
  5298. "source": "http://download.tensorflow.org/models/tflite/mnasnet_1.3_224_09_07_2018.tgz[mnasnet_1.3_224/mnasnet_1.3_224.tflite]",
  5299. "format": "TensorFlow Lite v3",
  5300. "link": "https://www.tensorflow.org/lite/models"
  5301. },
  5302. {
  5303. "type": "tflite",
  5304. "target": "nasnet_mobile.tflite",
  5305. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/model_zoo/upload_20180427/nasnet_mobile_2018_04_27.tgz[./nasnet_mobile.tflite]",
  5306. "format": "TensorFlow Lite v3",
  5307. "link": "https://www.tensorflow.org/lite/models"
  5308. },
  5309. {
  5310. "type": "tflite",
  5311. "target": "nasnet_large.tflite",
  5312. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/model_zoo/upload_20180427/nasnet_large_2018_04_27.tgz[./nasnet_large.tflite]",
  5313. "format": "TensorFlow Lite v3",
  5314. "link": "https://www.tensorflow.org/lite/models"
  5315. },
  5316. {
  5317. "type": "tflite",
  5318. "target": "netron_issue_256.tflite",
  5319. "source": "https://github.com/lutzroeder/netron/files/3101992/test.zip[test.tflite]",
  5320. "format": "TensorFlow Lite v3",
  5321. "link": "https://github.com/lutzroeder/netron/issues/256"
  5322. },
  5323. {
  5324. "type": "tflite",
  5325. "target": "netron_issue_386.tflite",
  5326. "source": "https://github.com/lutzroeder/netron/files/3963415/netron_issue_386.zip[netron_issue_386.tflite]",
  5327. "format": "TensorFlow Lite v3",
  5328. "link": "https://github.com/lutzroeder/netron/issues/386"
  5329. },
  5330. {
  5331. "type": "tflite",
  5332. "target": "netron_issue_416.tflite",
  5333. "source": "https://github.com/lutzroeder/netron/files/4089319/netron_issue_416.zip[netron_issue_416.tflite]",
  5334. "format": "TensorFlow Lite v3",
  5335. "link": "https://github.com/lutzroeder/netron/issues/416"
  5336. },
  5337. {
  5338. "type": "tflite",
  5339. "target": "pose_estimation_for_mobile.tflite",
  5340. "source": "https://raw.githubusercontent.com/edvardHua/PoseEstimationForMobile/master/release/cpm_model/model.tflite",
  5341. "format": "TensorFlow Lite v3",
  5342. "link": "https://github.com/edvardHua/PoseEstimationForMobile"
  5343. },
  5344. {
  5345. "type": "tflite",
  5346. "target": "resnet_v2_50.tflite",
  5347. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/resnet_v2_50_2018_03_27.zip[resnet_v2_50.tflite]",
  5348. "format": "TensorFlow Lite v3",
  5349. "link": "https://github.com/tensorflow/tensorflow/blob/master/tensorflow/lite/g3doc/models.md"
  5350. },
  5351. {
  5352. "type": "tflite",
  5353. "target": "resnet_v2_101.tflite",
  5354. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/resnet_v2_101_2018_03_27.zip[resnet_v2_101.tflite]",
  5355. "format": "TensorFlow Lite v3",
  5356. "link": "https://www.tensorflow.org/lite/models"
  5357. },
  5358. {
  5359. "type": "tflite",
  5360. "target": "smartreply.tflite",
  5361. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/smartreply_1.0_2017_11_01.zip[smartreply.tflite]",
  5362. "format": "TensorFlow Lite v3"
  5363. },
  5364. {
  5365. "type": "tflite",
  5366. "target": "smartreply_1.0_2017_11_01.zip",
  5367. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/smartreply_1.0_2017_11_01.zip",
  5368. "format": "TensorFlow Lite v3"
  5369. },
  5370. {
  5371. "type": "tflite",
  5372. "target": "squeezenet.tflite",
  5373. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/model_zoo/upload_20180427/squeezenet_2018_04_27.tgz[./squeezenet.tflite]",
  5374. "format": "TensorFlow Lite v3"
  5375. },
  5376. {
  5377. "type": "tflite",
  5378. "target": "speech_hotword_model_rank1_2017_11_14.tflite",
  5379. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/speech_hotword_model_rank1_2017_11_14.tflite",
  5380. "format": "TensorFlow Lite v3"
  5381. },
  5382. {
  5383. "type": "tflite",
  5384. "target": "speech_hotword_model_rank2_2017_11_14.tflite",
  5385. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/speech_hotword_model_rank2_2017_11_14.tflite",
  5386. "format": "TensorFlow Lite v3"
  5387. },
  5388. {
  5389. "type": "tflite",
  5390. "target": "speech_speakerid_model_2017_11_14.tflite",
  5391. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/speech_speakerid_model_2017_11_14.tflite",
  5392. "format": "TensorFlow Lite v3"
  5393. },
  5394. {
  5395. "type": "tflite",
  5396. "target": "speech_tts_model_2017_11_14.tflite",
  5397. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/speech_tts_model_2017_11_14.tflite",
  5398. "format": "TensorFlow Lite v3"
  5399. },
  5400. {
  5401. "type": "tflite",
  5402. "target": "text_classification.tflite",
  5403. "source": "https://storage.googleapis.com/download.tensorflow.org/models/tflite/text_classification/text_classification.tflite",
  5404. "format": "TensorFlow Lite v3",
  5405. "link": "https://github.com/tensorflow/tensorflow/blob/master/tensorflow/lite/g3doc/models/text_classification/overview.md"
  5406. },
  5407. {
  5408. "type": "tflite",
  5409. "target": "two_subgraphs.bin",
  5410. "source": "https://raw.githubusercontent.com/tensorflow/tensorflow/master/tensorflow/lite/testdata/two_subgraphs.bin",
  5411. "format": "TensorFlow Lite v3",
  5412. "link": "https://github.com/tensorflow/tensorflow"
  5413. },
  5414. {
  5415. "type": "tflite",
  5416. "target": "xorGate.lite",
  5417. "source": "https://raw.githubusercontent.com/kosslab-kr/Tizen-NN-Runtime/master/Xor/xorGate.lite",
  5418. "format": "TensorFlow Lite v3",
  5419. "link": "https://github.com/kosslab-kr/Tizen-NN-Runtime"
  5420. },
  5421. {
  5422. "type": "torch",
  5423. "target": "2ch_notredame.t7",
  5424. "source": "https://s3.amazonaws.com/modelzoo-networks/cvpr2015matching_networks.tar.gz[2ch/2ch_notredame.t7]",
  5425. "format": "Torch v7",
  5426. "link": "https://github.com/szagoruyko/cvpr15deepcompare"
  5427. },
  5428. {
  5429. "type": "torch",
  5430. "target": "2ch2stream_liberty.t7",
  5431. "source": "https://s3.amazonaws.com/modelzoo-networks/cvpr2015matching_networks.tar.gz[2ch2stream/2ch2stream_liberty.t7]",
  5432. "format": "Torch v7",
  5433. "link": "https://github.com/szagoruyko/cvpr15deepcompare"
  5434. },
  5435. {
  5436. "type": "torch",
  5437. "target": "2chdeep_yosemite.t7",
  5438. "source": "https://s3.amazonaws.com/modelzoo-networks/cvpr2015matching_networks.tar.gz[2chdeep/2chdeep_yosemite.t7]",
  5439. "format": "Torch v7",
  5440. "link": "https://github.com/szagoruyko/cvpr15deepcompare"
  5441. },
  5442. {
  5443. "type": "torch",
  5444. "target": "apple2orange.t7",
  5445. "source": "https://people.eecs.berkeley.edu/~taesung_park/CycleGAN/models/apple2orange.t7",
  5446. "format": "Torch v7",
  5447. "link": "https://github.com/junyanz/CycleGAN"
  5448. },
  5449. {
  5450. "type": "torch",
  5451. "target": "bedrooms_4_net_G.t7",
  5452. "source": "https://github.com/soumith/lfs/raw/master/dcgan.torch/bedrooms_4_net_G.t7",
  5453. "format": "Torch v7",
  5454. "link": "https://github.com/soumith/dcgan.torch"
  5455. },
  5456. {
  5457. "type": "torch",
  5458. "target": "celebA_25_net_G.t7",
  5459. "source": "https://github.com/soumith/lfs/raw/master/dcgan.torch/celebA_25_net_G.t7",
  5460. "format": "Torch v7",
  5461. "link": "https://github.com/soumith/dcgan.torch"
  5462. },
  5463. {
  5464. "type": "torch",
  5465. "target": "composition_vii.t7",
  5466. "source": "https://cs.stanford.edu/people/jcjohns/fast-neural-style/models/eccv16/composition_vii.t7",
  5467. "format": "Torch v7",
  5468. "link": "https://github.com/jcjohnson/fast-neural-style"
  5469. },
  5470. {
  5471. "type": "torch",
  5472. "target": "cunet_art_14l_scale2.0x_model.t7",
  5473. "source": "https://raw.githubusercontent.com/nagadomi/waifu2x/master/models/cunet/art/noise0_model.t7",
  5474. "format": "Torch v7",
  5475. "link": "https://github.com/nagadomi/waifu2x"
  5476. },
  5477. {
  5478. "type": "torch",
  5479. "target": "facades_photo2label.t7",
  5480. "source": "https://people.eecs.berkeley.edu/~taesung_park/CycleGAN/models/facades_photo2label.t7",
  5481. "format": "Torch v7",
  5482. "link": "https://github.com/junyanz/CycleGAN"
  5483. },
  5484. {
  5485. "type": "torch",
  5486. "target": "Helen_8x.t7",
  5487. "source": "https://raw.githubusercontent.com/tyshiwo/FSRNet/master/models/Helen_8x.t7",
  5488. "format": "Torch v7",
  5489. "link": "https://github.com/tyshiwo/FSRNet"
  5490. },
  5491. {
  5492. "type": "torch",
  5493. "target": "inception.t7",
  5494. "source": "https://raw.githubusercontent.com/cpra/fer-cnn-sota/master/models/inception.t7",
  5495. "format": "Torch v7",
  5496. "link": "https://github.com/cpra/fer-cnn-sota"
  5497. },
  5498. {
  5499. "type": "torch",
  5500. "target": "model-ende_epoch7_5.55_release.t7",
  5501. "source": "https://s3.amazonaws.com/opennmt-models/wmt-ende_l2-h1024-bpe32k_release.tar.gz[model-ende_epoch7_5.55_release.t7]",
  5502. "format": "Torch v7",
  5503. "link": "https://github.com/OpenNMT/opennmt.github.io/issues/22"
  5504. },
  5505. {
  5506. "type": "torch",
  5507. "target": "net_kitti2015_fast_-a_train_all.t7",
  5508. "source": "https://github.com/lutzroeder/netron/files/3165404/net_kitti2015_fast_-a_train_all.t7.zip[net_kitti2015_fast_-a_train_all.t7]",
  5509. "format": "Torch v7",
  5510. "link": "https://github.com/lutzroeder/netron/issues/269"
  5511. },
  5512. {
  5513. "type": "torch",
  5514. "target": "openface.nn4.small2.v1.t7",
  5515. "source": "https://raw.githubusercontent.com/pyannote/pyannote-data/master/openface.nn4.small2.v1.t7",
  5516. "format": "Torch v7",
  5517. "link": "https://github.com/pyannote/pyannote-data"
  5518. },
  5519. {
  5520. "type": "torch",
  5521. "target": "resnet.t7",
  5522. "source": "https://raw.githubusercontent.com/cpra/fer-cnn-sota/master/models/resnet.t7",
  5523. "format": "Torch v7",
  5524. "link": "https://github.com/cpra/fer-cnn-sota"
  5525. },
  5526. {
  5527. "type": "torch",
  5528. "target": "resnet-18.t7",
  5529. "source": "https://d2j0dndfm35trm.cloudfront.net/resnet-18.t7",
  5530. "format": "Torch v7",
  5531. "link": "https://github.com/facebook/fb.resnet.torch"
  5532. },
  5533. {
  5534. "type": "torch",
  5535. "target": "resnet-50.t7",
  5536. "source": "https://d2j0dndfm35trm.cloudfront.net/resnet-50.t7",
  5537. "format": "Torch v7",
  5538. "link": "https://github.com/facebook/fb.resnet.torch"
  5539. },
  5540. {
  5541. "type": "torch",
  5542. "target": "resnext_101_64x4d.t7",
  5543. "source": "https://dl.fbaipublicfiles.com/resnext/imagenet_models/resnext_101_64x4d.t7",
  5544. "format": "Torch v7",
  5545. "link": "https://github.com/facebookresearch/ResNeXt"
  5546. },
  5547. {
  5548. "type": "torch",
  5549. "target": "resnet_photo_14l_scale2.0x_model.t7",
  5550. "source": "https://raw.githubusercontent.com/nagadomi/waifu2x/master/models/resnet_14l/photo/scale2.0x_model.t7",
  5551. "format": "Torch v7",
  5552. "link": "https://github.com/nagadomi/waifu2x"
  5553. },
  5554. {
  5555. "type": "torch",
  5556. "target": "rnnTracker_r300_l1_n1_m1_d4.t7",
  5557. "source": "https://raw.githubusercontent.com/aghagol/minimal_rnntracking_deploy/master/bin/rnnTracker_r300_l1_n1_m1_d4.t7",
  5558. "format": "Torch v7",
  5559. "link": "https://github.com/aghagol"
  5560. },
  5561. {
  5562. "type": "torch",
  5563. "target": "siam_liberty.t7",
  5564. "source": "https://s3.amazonaws.com/modelzoo-networks/cvpr2015matching_networks.tar.gz[siam/siam_liberty.t7]",
  5565. "format": "Torch v7",
  5566. "link": "https://github.com/szagoruyko/cvpr15deepcompare"
  5567. },
  5568. {
  5569. "type": "torch",
  5570. "target": "siam2stream_notredame.t7",
  5571. "source": "https://s3.amazonaws.com/modelzoo-networks/cvpr2015matching_networks.tar.gz[siam2stream/siam2stream_notredame.t7]",
  5572. "format": "Torch v7",
  5573. "link": "https://github.com/szagoruyko/cvpr15deepcompare"
  5574. },
  5575. {
  5576. "type": "torch",
  5577. "target": "soundnet5_final.t7",
  5578. "source": "http://data.csail.mit.edu/soundnet/soundnet_models_public.zip[soundnet_models_public/soundnet5_final.t7]",
  5579. "format": "Torch v7",
  5580. "link": "https://github.com/afperezm/acoustic-images-distillation"
  5581. },
  5582. {
  5583. "type": "torch",
  5584. "target": "upconv_7l_photo_scale2.0x_model.t7",
  5585. "source": "https://raw.githubusercontent.com/nagadomi/waifu2x/master/models/upconv_7l/photo/scale2.0x_model.t7",
  5586. "format": "Torch v7",
  5587. "link": "https://github.com/nagadomi/waifu2x"
  5588. },
  5589. {
  5590. "type": "torch",
  5591. "target": "uni_image_np_50.t7",
  5592. "source": "https://polybox.ethz.ch/index.php/s/0SEdZqkn433dbEh/download",
  5593. "format": "Torch v7",
  5594. "link": "https://github.com/simonwsw/deep-soli"
  5595. },
  5596. {
  5597. "type": "torch",
  5598. "target": "vgg.t7",
  5599. "source": "https://raw.githubusercontent.com/cpra/fer-cnn-sota/master/models/vgg.t7",
  5600. "format": "Torch v7",
  5601. "link": "https://github.com/cpra/fer-cnn-sota"
  5602. },
  5603. {
  5604. "type": "torch",
  5605. "target": "vgg16.t7",
  5606. "source": "https://cs.stanford.edu/people/jcjohns/fast-neural-style/models/vgg16.t7",
  5607. "format": "Torch v7",
  5608. "link": "https://github.com/jcjohnson/fast-neural-style"
  5609. }
  5610. ]