Hi---Has anyone implemented in Mathematica 11 a published well performing CNN (Convolutional Neaural Network) like VGG, Inception/GoogleNet or ResNet and is willing to share it?
Hi Fred,
We presented a tutorial at CVPR in June. Go to the tutorial page and follow the link to the presentation notebooks to get inception3. I have already used successfully inception3's features; you just need to Drop the last layers to access them.
Drop
While it isn't a direct implementation, tf.slim is building a nice repository of published networks. It may be a great starting point to re-implement them in WL, since slim is designed for readability.
https://github.com/tensorflow/models/tree/master/slim/nets
Hi Matthias,
thanks for sharing the inception3 implementation:)