All Projects → tarvaina → Tensorflow Tutorial

tarvaina / Tensorflow Tutorial

Basics of Tensorflow

Projects that are alternatives of or similar to Tensorflow Tutorial

Headline analysis
Analyzing news headlines for fun and profit
Stars: ✭ 9 (-10%)
Mutual labels:  jupyter-notebook
Awesome Ai Books
Some awesome AI related books and pdfs for learning and downloading, also apply some playground models for learning
Stars: ✭ 855 (+8450%)
Mutual labels:  jupyter-notebook
Meetupcityfinder
Stars: ✭ 10 (+0%)
Mutual labels:  jupyter-notebook
Scipyecosystem
An Introduction to the SciPy Ecosystem presentation
Stars: ✭ 9 (-10%)
Mutual labels:  jupyter-notebook
Notes Lsju Machine Learning
机器学习笔记
Stars: ✭ 852 (+8420%)
Mutual labels:  jupyter-notebook
Group meetings
Notes and ideas for MARL group meetings
Stars: ✭ 10 (+0%)
Mutual labels:  jupyter-notebook
Notebooks
Misc. Jupyter notebooks for testing and exploring various things.
Stars: ✭ 9 (-10%)
Mutual labels:  jupyter-notebook
Deeplearningcameraapp
Deep Learning Capstone Project. Live camera app that can interpret number strings in real-world images.
Stars: ✭ 10 (+0%)
Mutual labels:  jupyter-notebook
Algorithmic Trading Python
The repository for freeCodeCamp's YouTube course, Algorithmic Trading in Python
Stars: ✭ 846 (+8360%)
Mutual labels:  jupyter-notebook
Cds Ta Meetup
Competitive Data Science @ Tel Aviv Meetup
Stars: ✭ 10 (+0%)
Mutual labels:  jupyter-notebook
Sphere Challenge
SPHERE Challenge: Activity Recognition with Multimodal Sensor Data
Stars: ✭ 9 (-10%)
Mutual labels:  jupyter-notebook
2015 Julia Hands On
Julia Hands-on at ERAD-NE 2015
Stars: ✭ 9 (-10%)
Mutual labels:  jupyter-notebook
Resnet
Tensorflow ResNet implementation on cifar10
Stars: ✭ 10 (+0%)
Mutual labels:  jupyter-notebook
Machinelearningtutorial
Short Machine Learning Tutorial
Stars: ✭ 9 (-10%)
Mutual labels:  jupyter-notebook
Variational Autoencoders Summerschool 2016
Exercises for the semi-supervised summer school https://semisupervised-learning.compute.dtu.dk.
Stars: ✭ 10 (+0%)
Mutual labels:  jupyter-notebook
Novel Twitter Anomalies Pydatalondon2016
Detect novel anomalies on Twitter
Stars: ✭ 9 (-10%)
Mutual labels:  jupyter-notebook
Keras Tutorial
3-hour tutorial on building deep learning models with Keras.
Stars: ✭ 10 (+0%)
Mutual labels:  jupyter-notebook
Changepoint Detection
Online Change-point Detection Algorithm for Multi-Variate Data: Applications on Human/Robot Demonstrations.
Stars: ✭ 10 (+0%)
Mutual labels:  jupyter-notebook
Movielens Recommender
Course project for Programing Machine Learnings Applications class
Stars: ✭ 10 (+0%)
Mutual labels:  jupyter-notebook
Ml
Varios mini-projectos de ML
Stars: ✭ 10 (+0%)
Mutual labels:  jupyter-notebook

This is a short tutorial on Tensorflow I gave for Reaktor in March 2016. Currently there are probably more complete and more up-to-date tutorials available on the net.

Installation instructions

If you don't have Docker installed already:

Then run the following commands:

# Clone this repository
git clone [email protected]:tarvaina/tensorflow-tutorial.git
cd tensorflow-tutorial

# Download the TensorFlow docker image
docker pull b.gcr.io/tensorflow/tensorflow

# Create container "jupyter" running Jupyter Notebook at port 8888
docker run \
    --name jupyter \
    -d \
    -v "$(pwd)/notebooks:/root/notebooks" \
    -v "$(pwd)/logs:/root/logs" \
    -p 8888:8888 \
    b.gcr.io/tensorflow/tensorflow \
    /run_jupyter.sh /root/notebooks

# Create container "tensorboard" running TensorBoard at port 6006
docker run \
   --name tensorboard \
   -d \
   -v "$(pwd)/logs:/root/logs" \
   -p 6006:6006 \
   b.gcr.io/tensorflow/tensorflow \
   tensorboard --logdir /root/logs

Now you can open browser windows for Jupyter Notebook and TensorBoard:

If everything went fine, you should see something like this:

Jupyter window TensorBoard window

Congratulations, you have installed the tutorial environment!

You can now open the notebook "01 Test installation" in Jupyter and follow its instructions to check that TensorFlow is indeed working.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].