TensorFlow框架 入门笔记

背景

基础

  • 介绍 略
  • TensorFlow安装 link
  • TensorFlow 主要概念

    • 使用图(graph)来表示计算任务(执行流程).
    • 在被称之为会话(session)的上下文(context)中执行图.
    • 使用tensor表示数据结构, 如下是特殊的tensor

      • tf.Variable
      • tf.constant
      • tf.placeholder
      • tf.SparseTensor
    • 使用 feed 和 fetch 可以为任意的操作(arbitrary operation) 赋值或者从其中获取数据.
原文地址:https://www.cnblogs.com/twodog/p/12135412.html