
TensorFlow
豆-Metcalf
已弃用优快云,欢迎关注我的GitHub https://github.com/Meatlf,不断更新关于图像算法,深度学习,算法优化等学习笔记和代码,欢迎粉一下.
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
TensorFlow常用函数集锦(更新中)
tf.float32 tf.placeholder tf.Variabletf.zeros用例:>>>test = tf.zeros([3]) >>>sess = tf.Session() >>>print(sess.run(test)) [0 0 0]说明:这里构造的不是列向量,而是行向量!原创 2017-07-04 14:44:31 · 378 阅读 · 0 评论 -
TensorFlow官方教程学习记录(更新中,更新日期:2017-07-19)
0.入门(Getting Started)1.TensorFlow入门(Getting Started With TensorFlow)笔记:TensorFlow入门程序-线性回归 日期: 201707042.机器学习初学者使用MNIST数据集(MNIST For ML Beginners)笔记:TensorFlow教程之-机器学习初学者使用MNIST数据集(MNIST For ML Begin原创 2017-07-04 10:40:43 · 595 阅读 · 0 评论 -
TensorFlow官方教程学习笔记之1-TensorFlow入门教程(Getting Started With TensorFlow)
1.图基础(Graph basics)节点(Nodes):图中”add” 边(Edges):对应三条线 2.TensorFlow中的计算图(Computation Graphs in TensorFlow)所有TensorFlow工程由如下两个部分组成: 1)定义计算图(Define the computation graph) 2)运行图(Run the graph(with data))原创 2017-07-16 22:07:49 · 604 阅读 · 0 评论 -
TensorFlow官方教程学习笔记之2-用于机器学习初学者学习的MNIST数据集(MNIST For ML Beginners)
1.数据集MNIST是机器视觉入门级的数据集2.算法1)核心 回归(Regression)算法: 2)代价函数 交叉熵(cross-entropy): 3)优化 梯度下降法3.代码# Copyright 2015 The TensorFlow Authors. All Rights Reserved. # # Licensed under the Apache License, Versi原创 2017-07-04 18:59:39 · 635 阅读 · 0 评论 -
TensorFlow官方教程学习笔记之3-用于机器学习专家学习的MNIST数据集(MNIST For ML Beginners)
```python from __future__ import absolute_importfrom __future__ import divisionfrom __future__ import print_function# Importsimport numpy as npimport tensorflow as tfnode1 = tf.constant(3.0, dtype=tf.f原创 2017-07-17 22:21:31 · 784 阅读 · 0 评论 -
Python基础、函数及其相关函数库(Numpy、TensorFlow)常用函数集锦(更新中,更新日期:2017-08-03)
更新记录: 2017-07-09 2017-07-12 2017-07-13Python函数参考资料: 1.Python基础教程 2.Python学习与分享平台 3.Python 3.6.2rc2 documentationlen>>>n=len([1,2,3,4,5,6]);n 6>>>n=len([(1,2),(3,4),(5,6)]);n 3>>>n=len(1,2,3,4,5,6) T原创 2017-06-09 14:23:38 · 1008 阅读 · 0 评论