├── .gitignore ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # OS X 2 | .DS_Store 3 | .AppleDouble 4 | .LSOverride 5 | Icon 6 | ._* 7 | .Spotlight-V100 8 | .Trashes 9 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2017 Vadym Markov 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CoreML Model Zoo 2 | 3 | Welcome to the Model Zoo! This is a central GitHub repository for sharing 4 | [Core ML](https://developer.apple.com/documentation/coreml) models. 5 | 6 | ## Image Classification 7 | 8 | - Age classification: [Reference](http://www.openu.ac.il/home/hassner/projects/cnn_agegender/), 9 | [CoreML model](https://drive.google.com/file/d/0B1ghKa_MYL6mT1J3T1BEeWx4TWc/view?usp=sharing) 10 | - Emotion Recognition: [Reference](http://www.openu.ac.il/home/hassner/projects/cnn_emotions/), 11 | [CoreML model](https://drive.google.com/file/d/0B1ghKa_MYL6mTlYtRGdXNFlpWDQ/view?usp=sharing) 12 | - Gender classification: [Reference](http://www.openu.ac.il/home/hassner/projects/cnn_agegender/), 13 | [CoreML model](https://drive.google.com/file/d/0B1ghKa_MYL6mYkNsZHlyc2ZuaFk/view?usp=sharing) 14 | - Flower classification: [Reference](http://jimgoo.com/flower-power/), 15 | [CoreMl model](https://drive.google.com/file/d/0B1ghKa_MYL6meDBHT2NaZGxkNzQ/view?usp=sharing) 16 | - Flickr Style: [Reference](https://gist.github.com/sergeyk/034c6ac3865563b69e60), 17 | [CoreML model](https://drive.google.com/file/d/0B1ghKa_MYL6maFFWR3drLUFNQ1E/view?usp=sharing) 18 | - Visual sentiment prediction: [Reference](https://github.com/imatge-upc/sentiment-2017-imavis), 19 | [CoreML model](https://drive.google.com/open?id=0B1ghKa_MYL6meTZRT3U5b0o5amc) 20 | - Nicolas Cage or Not: [Reference](http://declarationofindependencethief.com/), 21 | [CoreML model](https://s3.amazonaws.com/despiteallmyrage/MegaNic50.mlmodel) 22 | 23 | ## Natural Language Processing 24 | - Gender classification: [Reference](http://nlpforhackers.io/introduction-machine-learning/), 25 | [CoreML model](https://github.com/cocoa-ai/NamesCoreMLDemo/raw/master/Names/Resources/NamesDT.mlmodel) 26 | - Sentiment polarity analysis: [Reference](https://github.com/cocoa-ai/SentimentCoreMLDemo), 27 | [CoreML model](https://github.com/cocoa-ai/SentimentCoreMLDemo/raw/master/SentimentPolarity/Resources/SentimentPolarity.mlmodel) 28 | --------------------------------------------------------------------------------