上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 35 下一页

2017年9月30日

TensorFlow基础笔记(4) Tensor Transformation

摘要: 抽取 tf.slice(input_, begin, size, name=None):按照指定的下标范围抽取连续区域的子集 tf.gather(params, indices, validate_indices=None, name=None):按照指定的下标集合从axis=0中抽取子集,适合抽取 阅读全文

posted @ 2017-09-30 16:52 Maddock 阅读(461) 评论(0) 推荐(0) 编辑

TensorFlow基础笔记(0) 参考资源学习文档

摘要: 1 官方文档 https://www.tensorflow.org/api_docs/ 2 极客学院中文文档 http://www.tensorfly.cn/tfdoc/api_docs/python/array_ops.html 3 TensorFlow基础笔记(2) minist分类学习 阅读全文

posted @ 2017-09-30 16:02 Maddock 阅读(133) 评论(0) 推荐(0) 编辑

TensorFlow基础笔记(3) cifar10 分类学习

摘要: TensorFlow基础笔记(3) cifar10 分类学习 CIFAR-10 is a common benchmark in machine learning for image recognition. http://www.cs.toronto.edu/~kriz/cifar.html Co 阅读全文

posted @ 2017-09-30 14:33 Maddock 阅读(262) 评论(0) 推荐(0) 编辑

2017年9月29日

贝叶斯深度学习

摘要: http://www.cnblogs.com/jesse123/p/6907064.html 阅读全文

posted @ 2017-09-29 15:26 Maddock 阅读(402) 评论(0) 推荐(0) 编辑

怎么及时掌握/把握深度学习的发展动向和状态?(知乎)

摘要: https://www.zhihu.com/question/65646397 机器学习 知乎专栏 https://www.zhihu.com/topic/19559450/hot 阅读全文

posted @ 2017-09-29 15:13 Maddock 阅读(290) 评论(0) 推荐(0) 编辑

TensorFlow基础笔记(1) 数据读取与保存

摘要: https://zhuanlan.zhihu.com/p/27238630 WholeFileReader http://blog.csdn.net/wayne2019/article/details/77884478 read_file gfile.FastGFile 阅读全文

posted @ 2017-09-29 10:03 Maddock 阅读(3770) 评论(0) 推荐(0) 编辑

Python中内置数据类型list,tuple,dict,set的区别和用法

摘要: Python中内置数据类型list,tuple,dict,set的区别和用法 Python中内置数据类型list,tuple,dict,set的区别和用法 Python语言简洁明了,可以用较少的代码实现同样的功能。这其中Python的四个内置数据类型功不可没,他们即是list, tuple, dic 阅读全文

posted @ 2017-09-29 09:05 Maddock 阅读(408) 评论(0) 推荐(0) 编辑

2017年9月26日

tf.nn.conv2d实现卷积的过程

摘要: #coding=utf-8 import tensorflow as tf #case 2 input = tf.Variable(tf.round(10 * tf.random_normal([1,3,3,2]))) filter = tf.Variable(tf.round(5 * tf.random_normal([1,1,2,1]))) op2 = tf.nn.conv2d(inp... 阅读全文

posted @ 2017-09-26 18:26 Maddock 阅读(2455) 评论(0) 推荐(0) 编辑

2017年9月25日

Python 矩阵与矩阵以及矩阵与向量的乘法

摘要: import numpy as np numpy模块的array相乘时,有两种方式:一是矩阵形式,二是挨个相乘。 需要用矩阵形式相乘时,则要用np.dot()函数。 #矩阵与矩阵相乘a = np.array([[1,2,3],[4,5,6],[7,8,9]])c = a.copy()print(a 阅读全文

posted @ 2017-09-25 16:28 Maddock 阅读(8726) 评论(0) 推荐(0) 编辑

Matlab 实现神经网络实例

摘要: % Matlab实现简单BP神经网络 % http://blog.csdn.net/zjccoder/article/details/40713147 for i=1:20 %样本个数 xx(i)=2*pi*(i-1)/20; d(i)=0.5*(1+cos(xx(i))); end n=length(xx);%样本个... 阅读全文

posted @ 2017-09-25 13:24 Maddock 阅读(3586) 评论(1) 推荐(1) 编辑

上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 35 下一页

导航