Dockerfile to use TensorFlow in Jupiter Notebooks.
This dockerfile is based in Try .NET's dockerfile, more precisely in Scott Hanselman's Dashboard for NightScout
It adds the Tensorflow library install:
# Install TF libraries
RUN wget https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-linux-x86_64-1.14.0.tar.gz
RUN tar -C /usr/local -xzf libtensorflow-cpu-linux-x86_64-1.14.0.tar.gz
RUN rm libtensorflow-cpu-linux-x86_64-1.14.0.tar.gz
RUN ldconfig
And with that, in the notebooks, you can install the Scisharp Tensorflow bindings:
#r "nuget: TensorFlow.NET, 0.14.0"
And start playing!!!
Here's the link to test with it with Binder: