├── .gitattributes ├── README.md ├── SqueezeNet_v1.0.mlmodel ├── SqueezeNet_v1.1.mlmodel └── VGG19.mlmodel /.gitattributes: -------------------------------------------------------------------------------- 1 | *.mlmodel filter=lfs diff=lfs merge=lfs -text 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CoreMLZoo 2 | A few deep learning models converted from various formats to CoreMLs format. 3 | 4 | Models currently available: 5 | 6 | * [SqueezeNet](https://github.com/DeepScale/SqueezeNet) 7 | 8 | * [VGG19](http://www.robots.ox.ac.uk/~vgg/research/very_deep/) 9 | 10 | Please feel free to create a pull request with additional models. 11 | 12 | ## Other Links 13 | 14 | [CoreML Docs](https://developer.apple.com/machine-learning/) (This includes other pretrained models, including VGG16 and Inception v3). 15 | 16 | [CoreMLTools](http://pythonhosted.org/coremltools/index.html) 17 | 18 | [Caffe](http://caffe.berkeleyvision.org) 19 | 20 | [Keras](https://keras.io) 21 | -------------------------------------------------------------------------------- /SqueezeNet_v1.0.mlmodel: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:927328ccc281bb62491143b689246785662de353a7ca50926e08178a57854a13 3 | size 5000007 4 | -------------------------------------------------------------------------------- /SqueezeNet_v1.1.mlmodel: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e88fb02b971b80c4c2a0d81fb29303198b6ed36251b4e8f7cd49fa12922ffce3 3 | size 4948277 4 | -------------------------------------------------------------------------------- /VGG19.mlmodel: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:06558d189357485077acd7e77d6e76157820855f1717dfb526e8e122cdd3dd44 3 | size 574673377 4 | --------------------------------------------------------------------------------