Created
December 3, 2016 15:46
-
-
Save pedroduartecosta/daa61afaa0615a6ac5949544c377c36a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tensorflow for poets: | |
https://codelabs.developers.google.com/codelabs/tensorflow-for-poets/ | |
Virtual Box -> Network -> port forward -> 6006 - 6006 and 8888 - 8888 | |
docker run -it -p 6006:6006 -p 8888:8888 -v $HOME/tf_files:/tf_files gcr.io/tensorflow/tensorflow:latest-devel | |
python /tensorflow/tensorflow/models/image/imagenet/classify_image.py | |
curl -O http://grfx.cstv.com/photos/schools/psu/sports/m-soccer/auto_player/11356458.jpeg | |
python /tensorflow/tensorflow/models/image/imagenet/classify_image.py --image_file 11356458.jpeg | |
launch Tensor Board | |
docker exec -i -t <cont id> tensorboard --logdir /tmp/retrain_logs | |
launch Jupyter | |
docker exec -i -t <cont id> /run_jupyter.sh | |
More info about the Inception Model and Transfer Learning | |
---------- | |
https://www.tensorflow.org/versions/r0.12/tutorials/image_recognition/index.html | |
TensorFlow Tutorial #07 - Inception Model | |
https://github.com/Hvass-Labs/TensorFlow-Tutorials/blob/master/07_Inception_Model.ipynb | |
TensorFlow Tutorial #08 - Transfer Learning | |
https://github.com/Hvass-Labs/TensorFlow-Tutorials/blob/master/08_Transfer_Learning.ipynb | |
---------- | |
Machine Learning Recipes with Josh Gordon [beginner] | |
https://www.youtube.com/watch?v=Gj0iyo265bc&list=PLOU2XLYxmsIIuiBfYad6rFYQU_jL2ryal | |
Magnus Erik Hvass Pedersen TensorFlow Tutorials [intermediate] | |
https://github.com/Hvass-Labs/TensorFlow-Tutorials | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment