Tensorflow: "Deep MNIST for Experts" too complex for second tutorial.

Created on 14 Jan 2016  ·  3Comments  ·  Source: tensorflow/tensorflow

The end of the first tutorial, "MNIST for ML Beginners", has this paragraph:

What matters is that we learned from this model. Still, if you're feeling a bit down about these results, check out the next tutorial where we do a lot better, and learn how to build more sophisticated models using TensorFlow!

But the next tutorial is "Deep MNIST for Experts", and it does not explain things nearly as well as the first tutorial. For example, the second tutorial starts differing at the Build a Multilayer Convolutional Network section, but the very first paragraph under Weight Initialization does not explain the concepts it is using:

To create this model, we're going to need to create a lot of weights and biases. One should generally initialize weights with a small amount of noise for symmetry breaking, and to prevent 0 gradients. Since we're using ReLU neurons, it is also good practice to initialize them with a slightly positive initial bias to avoid "dead neurons." Instead of doing this repeatedly while we build the model, let's create two handy functions to do it for us.

What are "ReLU neurons"? Why are we using them? What _is_ a convolutional network even?

I would say, either

  1. This tutorial should be expanded to clarify/explain things better for beginners, or
  2. This tutorial should be moved to later in the list of tutorials, and
  3. The first tutorial, "MNIST for Beginners," should not say the next tutorial but instead say a later tutorial on MNIST for Experts.

Thanks!

Most helpful comment

Not only this tutorial is complicated, all these tutorials are complicated.
For example, what I want to do is:

  1. load a cvs of image file names, and the classification labels associated with each of them
  2. load a folder of images
  3. Have the neuron network up and running !!! no matter how bad the accuracy !!!
  4. Improve the accuracy

But Tensorflow gives me already at the beginning a 4-file MNIST tutorial, with complicated graphs and complicated mechanisms for loading files into the network

All 3 comments

Seconded. I think an explanation of conv nets would be helpful in the context of MNIST digits.

The TensorFlow tutorials cannot replace a deep learning or machine learning textbook or course. We may add pointers to additional resources as those become available.

Not only this tutorial is complicated, all these tutorials are complicated.
For example, what I want to do is:

  1. load a cvs of image file names, and the classification labels associated with each of them
  2. load a folder of images
  3. Have the neuron network up and running !!! no matter how bad the accuracy !!!
  4. Improve the accuracy

But Tensorflow gives me already at the beginning a 4-file MNIST tutorial, with complicated graphs and complicated mechanisms for loading files into the network

Was this page helpful?
0 / 5 - 0 ratings

Related issues

MrSaad picture MrSaad  ·  3Comments

ppwwyyxx picture ppwwyyxx  ·  3Comments

myme5261314 picture myme5261314  ·  3Comments

untom picture untom  ·  3Comments

waleedka picture waleedka  ·  3Comments