TensorFlow – Consise Examples for Beginners
1–10 of 32 posts
Re: TensorFlow – Consise Examples for Beginners
#2Re: TensorFlow – Consise Examples for Beginners
#3It's always left as a useless exercise for the reader to divine how to generate such a dataset from his/her own data.
Examples should be way more general. The starting point shouldn't be:
from tensorflow.examples.tutorials.mnist import input_data
mnist = input_data.read_data_sets("/tmp/data/", one_hot=True)
, it should start with "here is a directory of images and their classes" and end with a CNN model.EDIT: Should anyone have any insight as to where I might get such a tutorial (or have the desire to write one), I know a herd of ML pre-initiates that would be grateful.
Re: TensorFlow – Consise Examples for Beginners
#4Re: TensorFlow – Consise Examples for Beginners
#5Re: TensorFlow – Consise Examples for Beginners
#6Re: TensorFlow – Consise Examples for Beginners
#7Re: TensorFlow – Consise Examples for Beginners
#8Re: TensorFlow – Consise Examples for Beginners
#9[1] https://medium.com/@sentimentron/faceoff-theano-vs-tensorflo...
[2] https://github.com/tflearn/tflearn/blob/master/examples/nlp/...
Re: TensorFlow – Consise Examples for Beginners
#10I find it so aggravating that nearly every last ML framework documents their CNN libraries in terms of canned MNIST datasets imported from the library in a preprocessed form. It's always left as a useless exercise for the reader to divine how to generate such a dataset from his/her own data. Examples should be way more general. The starting point shouldn't be: from tensorflow.examples.tutorials.mnist import input_dat…
That and the fact that way too many ML examples/tutorials take a very academic/theoretical stance where they are making the model purely for the sake or it, and the tutorial basically ends with a statement like "Our loss is 0.0034!" which I am sure is great if you are a data scientist, but for people just getting started (e.g. me) it is not helpful since I want to know how I can do real-world stuff with ML, not just intellectual-masturbation/maths-for-the-sake-of-maths etc.
I would love to see some more "real world" examples that go from "data files in a directory" to not only a CNN, but also an actual "..and here is how we actually use our model in a real-life web application to do something useful: "