TensorFlow入门–张量的定义与基本运算
第1关:生成张量 - Variable 、constant 与placeholder 方法
本关任务:利用TensorFlow中的变量 (Variable类) 编写一个能计算表达式1+…+…+n的值的小程序 (n的值由TensorFlow中的常量constant类给出) 。
# -*- coding: utf-8 -*-
import tensorflow as tf
# 参数 a 是 Variable, 参数 b 是 constant, 记 value 为 b 的值
# 计算从1+..+value的值
共有 0 条评论