Skip to content

Latest commit

 

History

History
 
 

08_Convolutional_Neural_Networks

Ch 8: Convolutional Neural Networks

  1. Introduction
  • We introduce convolutional neural networks (CNN), and how we can use them in TensorFlow.
  1. Implementing a Simple CNN.
  • Here, we show how to create a CNN architecture that performs well on the MNIST digit recognition task.
  1. Implementing an Advanced CNN.
  • In this example, we show how to replicate an architecture for the CIFAR-10 image recognition task.
  1. Retraining an Existing Architecture.
  1. Using Stylenet/NeuralStyle.
  • In this recipe, we show a basic implementation of using Stylenet or Neuralstyle.
  1. Implementing Deep Dream.
  • This script shows a line-by-line explanation of TensorFlow's deepdream tutorial. Taken from Deepdream on TensorFlow. Note that the code here is converted to Python 3.