Skip to content

Instantly share code, notes, and snippets.

@xsqian
xsqian / tf-save-data.py
Created March 15, 2018 06:26
Saving Graphs for TensorBoard
import tensorflow as tf
x = tf.constant(5, name='x')
y = tf.constant(8, name='y')
z = tf.Variable(2*x+3*y, name='z')
model = tf.global_variables_initializer()
with tf.Session() as sess:
write = tf.summary.FileWriter("./tf_logs", sess.graph)
sess.run(model)
print('z = ', sess.run(z)
@xsqian
xsqian / docker.text
Created March 15, 2018 04:28
docker image for the CarND
-- to pull the latest version of docker image from registry:
docker pull udacity/carnd-term1-starter-kit
-- to run the docker image (for Windows PowerShell):
docker run -it --rm -p 8888:8888 -v ${pwd}:/src udacity/carnd-term1-starter-kit test.ipynb
--or (for bash or Docker Quickstart Terminal)
docker run -it --rm -p 8888:8888 -v `pwd`:/src udacity/carnd-term1-starter-kit test.ipynb
-- to set terminal window title
echo -n -e "\033]0;Docker and Kubernetes\007"