heidloff.net - Building is my Passion
Post
Cancel

Getting started with Tensorflow on IBM Bluemix

In order to learn Deep Learning I’ve taken an Udacity course that I can highly recommend. One reason I took that course was because I also liked the Udacity machine learning courses. Another reason was because I wanted to learn Tensorflow which to me looks like the most popular deep learning library right now.

Below is the YouTube playlist of the course. The assignments can be run locally via Docker.

Another good starting point to learn Tensorflow is the video “Tensorflow and deep learning – without a PhD by Martin Görner“.

In order to run Tensorflow on IBM Bluemix you can use Docker. Alternatively you can use Tensorflow in notebooks on IBM Data Science Experience. Check out the hello world sample how to install Tensorflow.

1
2
3
4
5
6
7
8
9
10
11
#!pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.9.0-cp27-none-linux_x86_64.whl
import tensorflow as tf

# Create TensorFlow object called hello_constant
hello_constant = tf.constant('Hello World!')

with tf.Session() as sess:
    # Run the tf.constant operation in the session
    output = sess.run(hello_constant)
    print(output)
 
Featured Blog Posts
Disclaimer
The postings on this site are my own and don’t necessarily represent IBM’s positions, strategies or opinions.
Trending Tags