GDD2018大会PPT资料TensorFlow 简介.pdfVIP

  • 4
  • 0
  • 约1.75万字
  • 约 45页
  • 2019-03-11 发布于山东
  • 举报
TensorFlow: A Framework for Scalable Machine Learning You probably Outline want to know... What is TensorFlow? Why did we create TensorFlow? How does Tensorflow Work? Example: Linear Regression Example: Convolutional Neural Network Distributed TensorFlow Fast, flexible, and scalable open-source machine learning library One system for research and production Runs on CPU, GPU, TPU, and Mobile Apache 2.0 license TensorFlow Handles Complexity Modeling complexity Distributed Heterogenous System System Under the Hood A multidimensional array. A graph of operations. The TensorFlow Graph Computation is defined as a graph Graph is defined in high-level language (Python) Graph is compiled and optimized Graph is executed (in parts or fully) on available low level devices (CPU, GPU, TPU) Nodes represent computations and state Data (tensors) flow along edges Build a graph; then run it. a b ... c = tf.add(a, b) add c ... session = tf.Session() value_of_c = session.run(c, {a=1, b=2}) Any Computation is a TensorFlow Graph biases weights Add Relu MatMul Xent examples labels Any Computation is a TensorFlow Graph

您可能关注的文档

文档评论(0)

1亿VIP精品文档

相关文档