Skip to content

Instantly share code, notes, and snippets.

@b38tn1k
b38tn1k / connmanctl.md
Created May 24, 2017 23:16 — forked from kylemanna/connmanctl.md
Connmanctl Cheat Sheet
@b38tn1k
b38tn1k / tensorflowTutorialOne.py
Last active December 18, 2015 01:06
Google tensorflow tutorial 1 in a file with comments and stuff
import input_data
import tensorflow as tf
# http://www.tensorflow.org/tutorials/mnist/beginners/index.html
print '\033[93m' + 'Tutorial1 from:\nhttp://www.tensorflow.org/tutorials/mnist/beginners/index.html' + '\033[0m'
print 'MNIST INPUT DATA'
mnist = input_data.read_data_sets("MNIST_data/", one_hot=True)
'PLACE HOLDERS'
# Make a placeholder / value to input on run