├── .gitignore ├── LICENSE ├── README.md ├── SimpleClassificationApp ├── SimpleClassificationApp.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── SimpleClassificationApp │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── ImageClassifier.mlmodel │ ├── Info.plist │ ├── UIImage+CVPixelBuffer.swift │ └── ViewController.swift └── TrainingPlayground.playground │ ├── Contents.swift │ └── contents.xcplayground └── images ├── IMG_0436.PNG ├── mobile-machinelearning-process.png ├── playground-createml-export-001.png ├── playground-createml-train-001.png ├── playground-createml-train-002.png ├── playground-createml-train-003.png ├── playground-createml-validation-001.png ├── playground-createml-validation-002.png ├── project-coreml-001.png ├── project-createml-001.png ├── project-createml-002.png ├── project-createml-003.png ├── project-createml-004.png ├── project-createml-005.png ├── project-createml-006.png ├── project-createml-007.png ├── test-dataset.png └── train-dataset.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/README.md -------------------------------------------------------------------------------- /SimpleClassificationApp/SimpleClassificationApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/SimpleClassificationApp/SimpleClassificationApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SimpleClassificationApp/SimpleClassificationApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/SimpleClassificationApp/SimpleClassificationApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SimpleClassificationApp/SimpleClassificationApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/SimpleClassificationApp/SimpleClassificationApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SimpleClassificationApp/SimpleClassificationApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/SimpleClassificationApp/SimpleClassificationApp/AppDelegate.swift -------------------------------------------------------------------------------- /SimpleClassificationApp/SimpleClassificationApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/SimpleClassificationApp/SimpleClassificationApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SimpleClassificationApp/SimpleClassificationApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/SimpleClassificationApp/SimpleClassificationApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SimpleClassificationApp/SimpleClassificationApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/SimpleClassificationApp/SimpleClassificationApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SimpleClassificationApp/SimpleClassificationApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/SimpleClassificationApp/SimpleClassificationApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SimpleClassificationApp/SimpleClassificationApp/ImageClassifier.mlmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/SimpleClassificationApp/SimpleClassificationApp/ImageClassifier.mlmodel -------------------------------------------------------------------------------- /SimpleClassificationApp/SimpleClassificationApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/SimpleClassificationApp/SimpleClassificationApp/Info.plist -------------------------------------------------------------------------------- /SimpleClassificationApp/SimpleClassificationApp/UIImage+CVPixelBuffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/SimpleClassificationApp/SimpleClassificationApp/UIImage+CVPixelBuffer.swift -------------------------------------------------------------------------------- /SimpleClassificationApp/SimpleClassificationApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/SimpleClassificationApp/SimpleClassificationApp/ViewController.swift -------------------------------------------------------------------------------- /SimpleClassificationApp/TrainingPlayground.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/SimpleClassificationApp/TrainingPlayground.playground/Contents.swift -------------------------------------------------------------------------------- /SimpleClassificationApp/TrainingPlayground.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/SimpleClassificationApp/TrainingPlayground.playground/contents.xcplayground -------------------------------------------------------------------------------- /images/IMG_0436.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/images/IMG_0436.PNG -------------------------------------------------------------------------------- /images/mobile-machinelearning-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/images/mobile-machinelearning-process.png -------------------------------------------------------------------------------- /images/playground-createml-export-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/images/playground-createml-export-001.png -------------------------------------------------------------------------------- /images/playground-createml-train-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/images/playground-createml-train-001.png -------------------------------------------------------------------------------- /images/playground-createml-train-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/images/playground-createml-train-002.png -------------------------------------------------------------------------------- /images/playground-createml-train-003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/images/playground-createml-train-003.png -------------------------------------------------------------------------------- /images/playground-createml-validation-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/images/playground-createml-validation-001.png -------------------------------------------------------------------------------- /images/playground-createml-validation-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/images/playground-createml-validation-002.png -------------------------------------------------------------------------------- /images/project-coreml-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/images/project-coreml-001.png -------------------------------------------------------------------------------- /images/project-createml-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/images/project-createml-001.png -------------------------------------------------------------------------------- /images/project-createml-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/images/project-createml-002.png -------------------------------------------------------------------------------- /images/project-createml-003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/images/project-createml-003.png -------------------------------------------------------------------------------- /images/project-createml-004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/images/project-createml-004.png -------------------------------------------------------------------------------- /images/project-createml-005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/images/project-createml-005.png -------------------------------------------------------------------------------- /images/project-createml-006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/images/project-createml-006.png -------------------------------------------------------------------------------- /images/project-createml-007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/images/project-createml-007.png -------------------------------------------------------------------------------- /images/test-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/images/test-dataset.png -------------------------------------------------------------------------------- /images/train-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tucan9389/SimpleClassification-CreateML-CoreML/HEAD/images/train-dataset.png --------------------------------------------------------------------------------