2018.11.06笔记

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/API1_7/article/details/83795300

Tensorflow Tutorial:

  • Tensorflow is a programming framework used in deep learning
  • The two main object classes in tensorflow are Tensors and Operators.
  • When you code in tensorflow you have to take the following steps:
    • Create a graph containing Tensors (Variables, Placeholders …) and Operations (tf.matmul, tf.add, …)
    • Create a session
    • Initialize the session
    • Run the session to execute the graph
  • You can execute the graph multiple times as you’ve seen in model()
  • The backpropagation and optimization is automatically done when running the session on the “optimizer” object.

猜你喜欢

转载自blog.csdn.net/API1_7/article/details/83795300
今日推荐