├── .gitignore ├── EmojiIntelligence.playground ├── Contents.swift ├── Resources │ ├── correct.wav │ ├── stroke.png │ ├── stroke@2x.png │ ├── stroke@3x.png │ └── wrong.wav ├── Sources │ ├── Helper │ │ ├── Extension.swift │ │ ├── ImageProcessor.swift │ │ └── enum.swift │ ├── Math │ │ └── ActivationFunction.swift │ ├── Model │ │ └── NNEmoji.swift │ ├── Neural Network │ │ ├── Layer.swift │ │ └── NeuralNetwork.swift │ ├── View │ │ └── DrawView.swift │ └── ViewController │ │ └── NeuralNetworkViewController.swift └── contents.xcplayground ├── LICENSE ├── README.md └── representation.sketch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BilalReffas/EmojiIntelligence/HEAD/.gitignore -------------------------------------------------------------------------------- /EmojiIntelligence.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BilalReffas/EmojiIntelligence/HEAD/EmojiIntelligence.playground/Contents.swift -------------------------------------------------------------------------------- /EmojiIntelligence.playground/Resources/correct.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BilalReffas/EmojiIntelligence/HEAD/EmojiIntelligence.playground/Resources/correct.wav -------------------------------------------------------------------------------- /EmojiIntelligence.playground/Resources/stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BilalReffas/EmojiIntelligence/HEAD/EmojiIntelligence.playground/Resources/stroke.png -------------------------------------------------------------------------------- /EmojiIntelligence.playground/Resources/stroke@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BilalReffas/EmojiIntelligence/HEAD/EmojiIntelligence.playground/Resources/stroke@2x.png -------------------------------------------------------------------------------- /EmojiIntelligence.playground/Resources/stroke@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BilalReffas/EmojiIntelligence/HEAD/EmojiIntelligence.playground/Resources/stroke@3x.png -------------------------------------------------------------------------------- /EmojiIntelligence.playground/Resources/wrong.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BilalReffas/EmojiIntelligence/HEAD/EmojiIntelligence.playground/Resources/wrong.wav -------------------------------------------------------------------------------- /EmojiIntelligence.playground/Sources/Helper/Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BilalReffas/EmojiIntelligence/HEAD/EmojiIntelligence.playground/Sources/Helper/Extension.swift -------------------------------------------------------------------------------- /EmojiIntelligence.playground/Sources/Helper/ImageProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BilalReffas/EmojiIntelligence/HEAD/EmojiIntelligence.playground/Sources/Helper/ImageProcessor.swift -------------------------------------------------------------------------------- /EmojiIntelligence.playground/Sources/Helper/enum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BilalReffas/EmojiIntelligence/HEAD/EmojiIntelligence.playground/Sources/Helper/enum.swift -------------------------------------------------------------------------------- /EmojiIntelligence.playground/Sources/Math/ActivationFunction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BilalReffas/EmojiIntelligence/HEAD/EmojiIntelligence.playground/Sources/Math/ActivationFunction.swift -------------------------------------------------------------------------------- /EmojiIntelligence.playground/Sources/Model/NNEmoji.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BilalReffas/EmojiIntelligence/HEAD/EmojiIntelligence.playground/Sources/Model/NNEmoji.swift -------------------------------------------------------------------------------- /EmojiIntelligence.playground/Sources/Neural Network/Layer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BilalReffas/EmojiIntelligence/HEAD/EmojiIntelligence.playground/Sources/Neural Network/Layer.swift -------------------------------------------------------------------------------- /EmojiIntelligence.playground/Sources/Neural Network/NeuralNetwork.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BilalReffas/EmojiIntelligence/HEAD/EmojiIntelligence.playground/Sources/Neural Network/NeuralNetwork.swift -------------------------------------------------------------------------------- /EmojiIntelligence.playground/Sources/View/DrawView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BilalReffas/EmojiIntelligence/HEAD/EmojiIntelligence.playground/Sources/View/DrawView.swift -------------------------------------------------------------------------------- /EmojiIntelligence.playground/Sources/ViewController/NeuralNetworkViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BilalReffas/EmojiIntelligence/HEAD/EmojiIntelligence.playground/Sources/ViewController/NeuralNetworkViewController.swift -------------------------------------------------------------------------------- /EmojiIntelligence.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BilalReffas/EmojiIntelligence/HEAD/EmojiIntelligence.playground/contents.xcplayground -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BilalReffas/EmojiIntelligence/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BilalReffas/EmojiIntelligence/HEAD/README.md -------------------------------------------------------------------------------- /representation.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BilalReffas/EmojiIntelligence/HEAD/representation.sketch --------------------------------------------------------------------------------