Model format of MPSCNN on iOS (Metal Performance Shaders)

1 · Shuichi Tsutsumi · April 16, 2017, 1:20 a.m.
In iOS 10, API to implement and run Convolutional Neural Network (CNN) on iOS devices have been added to the MetalPerformanceShaders (MPS) framework. We can now take advantage of GPU on iOS devices to run fast CNN computation. In other word, we can use outcome of cutting edge deep learning technologies on your device even while offline.Apple provides samples for the MPSCNN (MPSCNNHelloWorld / MetalImageRecognition), and I integrated it into my sample code collection repo:shu223/iOS-10-SamplerRea...