Week 1 - testing your virtual environment

Run the following cells to make sure you can import all the libraries. If you get an error on any of the cells, something went wrong with your installation. Follow the steps to remove your VM, and try the installation again. Once everything is working, save this notebooks and submit your changes through Github.


In [4]:
print "hello world"


hello world

In [5]:
import keras
print "keras successfully imported"
import theano
print "theano successfully imported"
import tensorflow
print "tensorflow successfully imported"
import sklearn
print "sklearn successfully imported"
import seaborn
print "seaborn successfully imported"


keras successfully imported
theano successfully imported
tensorflow successfully imported
sklearn successfully imported
seaborn successfully imported

In [6]:
print "uni:", "rl2852"


uni: rl2852