// // // //

2020年2月24日

摘要: tensorflow 的使用逻辑: 用 Tensor 表示数据; 用 Variable 维护状态; 用 Graph 图表示计算任务,图中的节点称为 op(operation); 用 Session 会话执行 Graph; 用 feed 和 fetch 为操作输入和输出数据; Session tens 阅读全文
posted @ 2020-02-24 14:43 努力的孔子 阅读(898) 评论(0) 推荐(0) 编辑
 
摘要: Variable 的主要作用是维护特定节点的状态,如深度学习模型参数 创建_基础操作 创建 Variable 有两种方式 tf.Variable 创建唯一变量 class VariableV1(Variable): def __init__(self, initial_value=None, # - 阅读全文
posted @ 2020-02-24 14:42 努力的孔子 阅读(2285) 评论(0) 推荐(0) 编辑
 
摘要: tensor 即张量,是 tf 的核心数据结构,它可以是一个标量、向量、矩阵、多维数组 基本属性 Tensor 有 3 个基本属性 d2 = tf.constant([1., 2.]) print(d2) # Tensor("Const:0", shape=(2,), dtype=float32) 阅读全文
posted @ 2020-02-24 14:41 努力的孔子 阅读(682) 评论(0) 推荐(0) 编辑
 
摘要: 安装过程略... 异常记录 异常一 输入import tensorflow as tf 后出现一连串警告: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future vers 阅读全文
posted @ 2020-02-24 14:40 努力的孔子 阅读(133) 评论(0) 推荐(0) 编辑
 
摘要: 基本方法 省略... 异常记录 异常一:python 在写入 csv 时会自动空一行 解决方案:加上 newline=‘’ 环境 python3.6 writer = csv.writer(open('customer.csv', 'w', newline='')) 阅读全文
posted @ 2020-02-24 12:31 努力的孔子 阅读(265) 评论(0) 推荐(0) 编辑