Neural

Playing around with neural networks

Installation

I use Python Anaconda, then installed Tensor flow. Note that you need the newest Anaconda – I used 3-4.3.1 – and that Tensorflow only works in Python 3.5, not 3.6. I therefor downgraded Python using the command conda install python=3.5.2. (I also tried using the command conda create -n tensorflow python=3.5 (source) when creating the tensorflow thingy but that did not work so well).

Tutorials etc

See this list for some more packages enabling to do neural networking.

Some tutorials for Tensorflow can be found at:
www.tensorflow.org/tutorials/.
A tutorial on image segmentation:
http://warmspringwinds.github.io/tensorflow/tf-slim/2016/10/30/image-classification-and-segmentation-using-tensorflow-and-tf-slim/.
And a tutorial about more fancy neural networks:
http://blog.christianperone.com/2015/08/convolutional-neural-networks-and-feature-extraction-with-python/,
which also points to the following one, which sounds like what I’m looking for:
http://cs231n.github.io/convolutional-networks/,
or for the full overview:
http://cs231n.github.io/.