https://github.com/jusce17/mldemo101
Using Core ML to Build a Simple Image Recognition App
https://github.com/jusce17/mldemo101
core-ml machine-learning swift-4
Last synced: 4 months ago
JSON representation
Using Core ML to Build a Simple Image Recognition App
- Host: GitHub
- URL: https://github.com/jusce17/mldemo101
- Owner: jusce17
- License: mit
- Created: 2019-06-16T18:18:12.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-11-17T07:01:42.000Z (over 5 years ago)
- Last Synced: 2025-03-13T13:13:58.543Z (about 1 year ago)
- Topics: core-ml, machine-learning, swift-4
- Language: Swift
- Size: 394 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Demo 101
## Build a Simple Image Recognition IOS App
# Core ML Models
Core ML supports a variety of machine learning models, including neural networks, tree ensembles, support vector machines, and generalized linear models. Core ML requires the Core ML model format (models with a .mlmodel file extension). [learn more](https://developer.apple.com/machine-learning/core-ml/)
For this Demo I used the SqueezeNet model dowloaded from [here](https://developer.apple.com/machine-learning/models/)
Please find the orignal source code of model [here](https://github.com/DeepScale/SqueezeNet)
the app was fully made in swift

# Swift Programming Language
| | **Architecture** | **Master** | **Package** |
|---|:---:|:---:|:---:|
| **macOS** | x86_64 |[](https://ci.swift.org/job/oss-swift-incremental-RA-osx)|[](https://ci.swift.org/job/oss-swift-package-osx)|
| **Ubuntu 14.04** | x86_64 | [](https://ci.swift.org/job/oss-swift-incremental-RA-linux-ubuntu-14_04)|[](https://ci.swift.org/job/oss-swift-package-linux-ubuntu-14_04)|
| **Ubuntu 16.04** | x86_64 | [](https://ci.swift.org/job/oss-swift-incremental-RA-linux-ubuntu-16_04)|[](https://ci.swift.org/job/oss-swift-package-linux-ubuntu-16_04)|
| **Ubuntu 18.04** | x86_64 | [](https://ci.swift.org/job/oss-swift-incremental-RA-linux-ubuntu-18_04)|[](https://ci.swift.org/job/oss-swift-package-linux-ubuntu-18_04)|
**Swift Community-Hosted CI Platforms**
| **OS** | **Architecture** | **Build** |
|---|:---:|:---:|
|**[Debian 9.1 (Raspberry Pi)](https://github.com/apple/swift-community-hosted-continuous-integration/blob/master/nodes/armv7_debian_stretch.json)** | ARMv7 | [](https://ci-external.swift.org/job/oss-swift-RA-linux-debian-9_1)|
|**[Fedora 27](https://github.com/apple/swift-community-hosted-continuous-integration/blob/master/nodes/x86_64_fedora_27.json)** | x86_64 |[](https://ci-external.swift.org/job/oss-swift-RA-linux-fedora-27)|
|**[Ubuntu 16.04](https://github.com/apple/swift-community-hosted-continuous-integration/blob/master/nodes/x86_64_ubuntu_16_04.json)** | x86_64 |[](https://ci-external.swift.org/job/oss-swift-RA-linux-ubuntu-16.04)|
|**[Ubuntu 16.04 ](https://github.com/apple/swift-community-hosted-continuous-integration/blob/master/nodes/ppc64le_ubuntu_16_04.json)** | PPC64LE |[](https://ci-external.swift.org/job/oss-swift-4.1-RA-linux-ubuntu-16.04-ppc64le)|
|**[Ubuntu 16.04 ](https://github.com/apple/swift-community-hosted-continuous-integration/blob/master/nodes/aarch64_ubuntu_16.04.json)** | AArch64 |[](https://ci-external.swift.org/job/oss-swift-RA-linux-ubuntu-16.04-aarch64)|
|**[Android](https://github.com/apple/swift-community-hosted-continuous-integration/blob/master/nodes/x86_64_ubuntu_16_04_LTS_android.json)** | ARMv7 |[](https://ci-external.swift.org/job/oss-swift-RA-linux-ubuntu-16.04-android)|
|**[Android](https://github.com/apple/swift-community-hosted-continuous-integration/blob/master/nodes/x86_64_ubuntu_16_04_LTS_android.json)** | AArch64 |[](https://ci-external.swift.org/job/oss-swift-RA-linux-ubuntu-16.04-android-arm64)|
|**[Ubuntu 16.04 (TensorFlow)](https://github.com/apple/swift-community-hosted-continuous-integration/blob/master/nodes/x86_64_ubuntu_16_04_tensorflow.json)** | x86_64 |[](https://ci-external.swift.org/job/oss-swift-RA-linux-ubuntu-16.04-tensorflow)|
|**[macOS 10.13 (TensorFlow)](https://github.com/apple/swift-community-hosted-continuous-integration/blob/master/nodes/x86_64_macos_high_sierra_tensorflow.json)** | x86_64 |[](https://ci-external.swift.org/job/oss-swift-RA-macOS-tensorflow)|
|**[Ubuntu 16.04 (TensorFlow with GPU)](https://github.com/apple/swift-community-hosted-continuous-integration/blob/master/nodes/x86_64_ubuntu_16_04_tensorflow_gpu.json)** | x86_64 |[](https://ci-external.swift.org/job/oss-swift-RA-linux-ubuntu-16.04-tensorflow-gpu)|
|**[Debian 9.5](https://github.com/apple/swift-community-hosted-continuous-integration/blob/master/nodes/x86_64_debian_9.5.json)** | x86_64 | [](https://ci-external.swift.org/job/oss-swift-RA-linux-debian-9_5)|
|**[Windows 2019](https://github.com/apple/swift-community-hosted-continuous-integration/blob/master/nodes/x86_64_windows_2019.json)** | x86_64 | [](https://ci-external.swift.org/job/oss-swift-windows-x86_64)|
## Some screenshots from the App



