├── .gitignore ├── LICENSE ├── README.md ├── datasets ├── dog-cat-data.zip ├── test-movie-reviews.zip └── train-movie-reviews.zip ├── dog-cat-classifier-demo.gif ├── dog-cat-classifier-demo.mp4 ├── image-classifier.playground ├── Contents.swift └── contents.xcplayground ├── images ├── chest-xray-pneumonia-classifier.png ├── dog-cat-classifier.png ├── flower-classifier.png ├── fruit-classifier.png └── movie-review-sentiment-classifier.png ├── models ├── ChestXrayPneumoniaClassifier.mlmodel ├── DogCatClassifier.mlmodel ├── FlowerClassifier.mlmodel ├── FruitClassifier.mlmodel └── movie-review-sentiment.mlmodel └── movie-review-sentiment-classifier.playground ├── Contents.swift ├── contents.xcplayground ├── playground.xcworkspace ├── contents.xcworkspacedata └── xcuserdata │ └── krishna.xcuserdatad │ └── UserInterfaceState.xcuserstate └── timeline.xctimeline /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishkumar/createml-playgrounds/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishkumar/createml-playgrounds/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishkumar/createml-playgrounds/HEAD/README.md -------------------------------------------------------------------------------- /datasets/dog-cat-data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishkumar/createml-playgrounds/HEAD/datasets/dog-cat-data.zip -------------------------------------------------------------------------------- /datasets/test-movie-reviews.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishkumar/createml-playgrounds/HEAD/datasets/test-movie-reviews.zip -------------------------------------------------------------------------------- /datasets/train-movie-reviews.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishkumar/createml-playgrounds/HEAD/datasets/train-movie-reviews.zip -------------------------------------------------------------------------------- /dog-cat-classifier-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishkumar/createml-playgrounds/HEAD/dog-cat-classifier-demo.gif -------------------------------------------------------------------------------- /dog-cat-classifier-demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishkumar/createml-playgrounds/HEAD/dog-cat-classifier-demo.mp4 -------------------------------------------------------------------------------- /image-classifier.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishkumar/createml-playgrounds/HEAD/image-classifier.playground/Contents.swift -------------------------------------------------------------------------------- /image-classifier.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishkumar/createml-playgrounds/HEAD/image-classifier.playground/contents.xcplayground -------------------------------------------------------------------------------- /images/chest-xray-pneumonia-classifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishkumar/createml-playgrounds/HEAD/images/chest-xray-pneumonia-classifier.png -------------------------------------------------------------------------------- /images/dog-cat-classifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishkumar/createml-playgrounds/HEAD/images/dog-cat-classifier.png -------------------------------------------------------------------------------- /images/flower-classifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishkumar/createml-playgrounds/HEAD/images/flower-classifier.png -------------------------------------------------------------------------------- /images/fruit-classifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishkumar/createml-playgrounds/HEAD/images/fruit-classifier.png -------------------------------------------------------------------------------- /images/movie-review-sentiment-classifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishkumar/createml-playgrounds/HEAD/images/movie-review-sentiment-classifier.png -------------------------------------------------------------------------------- /models/ChestXrayPneumoniaClassifier.mlmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishkumar/createml-playgrounds/HEAD/models/ChestXrayPneumoniaClassifier.mlmodel -------------------------------------------------------------------------------- /models/DogCatClassifier.mlmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishkumar/createml-playgrounds/HEAD/models/DogCatClassifier.mlmodel -------------------------------------------------------------------------------- /models/FlowerClassifier.mlmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishkumar/createml-playgrounds/HEAD/models/FlowerClassifier.mlmodel -------------------------------------------------------------------------------- /models/FruitClassifier.mlmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishkumar/createml-playgrounds/HEAD/models/FruitClassifier.mlmodel -------------------------------------------------------------------------------- /models/movie-review-sentiment.mlmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishkumar/createml-playgrounds/HEAD/models/movie-review-sentiment.mlmodel -------------------------------------------------------------------------------- /movie-review-sentiment-classifier.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishkumar/createml-playgrounds/HEAD/movie-review-sentiment-classifier.playground/Contents.swift -------------------------------------------------------------------------------- /movie-review-sentiment-classifier.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishkumar/createml-playgrounds/HEAD/movie-review-sentiment-classifier.playground/contents.xcplayground -------------------------------------------------------------------------------- /movie-review-sentiment-classifier.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishkumar/createml-playgrounds/HEAD/movie-review-sentiment-classifier.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /movie-review-sentiment-classifier.playground/playground.xcworkspace/xcuserdata/krishna.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishkumar/createml-playgrounds/HEAD/movie-review-sentiment-classifier.playground/playground.xcworkspace/xcuserdata/krishna.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /movie-review-sentiment-classifier.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishkumar/createml-playgrounds/HEAD/movie-review-sentiment-classifier.playground/timeline.xctimeline --------------------------------------------------------------------------------