the word “Governor” • Orchestrator for Docker containers • Supports multi-cloud environments • Inspired and informed by Google’s experiences and internal systems • Open source, written in Go Manage applications, not machines Kubernetes
• Manages Kubernetes Uptime • Manages Updates • Cloud Logging • Use Google Cloud VPN to have cluster IPs coexist with your private network IPs Google Container Engine
Purpose Machine Learning Library • Python (Core in C++) • Models can run on many devices (even Android!) • Use models in production using Tensorflow Serve • Distributed version that uses gRPC
tf.placeholder(tf.float32, [None, 784]) W = tf.Variable(tf.zeros([784, 10])) b = tf.Variable(tf.zeros([10])) y = tf.nn.softmax(tf.matmul(x, W) + b) # define a training step y_ = tf.placeholder(tf.float32, [None, 10]) xent = -tf.reduce_sum(y_*tf.log(y)) step = tf.train.GradientDescentOptimizer(0.01).minimize (xent) Example