上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: 1、为什么是ML策略 例如:识别cat分类器的识别率是90%,怎么进一步提高识别率呢? 想法: (1)收集更多数据 (2)收集更多的多样性训练样本 (3)使用梯度下降训练更长时间 (4)尝试Adam代替梯度下降 (5)尝试更大的网络 (6)尝试更小的网络 (7)尝试dropout (8)尝试L2正则 阅读全文
posted @ 2017-09-09 00:44 crazybird123 阅读(519) 评论(0) 推荐(0) 编辑
摘要: <class 'numpy.ndarray'> (5,) [1 2 3 4 5] <class 'numpy.ndarray'> (6,) [1 2 3 4 5 6] <class 'numpy.ndarray'> (2, 5) [[ 1 2 3 4 5] [ 6 7 8 9 10]] (2, 5) 阅读全文
posted @ 2017-09-04 00:34 crazybird123 阅读(309) 评论(0) 推荐(0) 编辑
摘要: MNIST数据集:包含数字0-9的灰度图, 图片size为28x28。训练样本:55000,测试样本:10000,验证集:5000 阅读全文
posted @ 2017-08-27 16:43 crazybird123 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 1、什么是tensorflow tensorflow是一个开源软件库,使用data flow graphs进行数值计算,最初由Google大脑团队开发,用于机器学习和深度卷积网络的研究,同样适用于其他广泛的领域。 2、访问tensorflow官网:在Windows的host文件(位置在C:\Wind 阅读全文
posted @ 2017-08-10 00:33 crazybird123 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 1、官网下载python2和python3版本 2、安装python3,勾上Add Python3.5 to PATH,自定义选择安装目录,安装,验证:WIN+R >cmd,输入python看看是否安装python3 3、安装python2,自定义安装目录,显示不能将路径添加到环境变量,一路next 阅读全文
posted @ 2017-07-30 20:13 crazybird123 阅读(2539) 评论(0) 推荐(0) 编辑
摘要: 1、安装64位的python3.5 选择windowsx86-64 executable installer安装 2、安装tensorflow cmd->进入到安装python的Scripts文件夹,里面有pip3.exe pip3 install --upgrade https://storage 阅读全文
posted @ 2017-07-08 19:37 crazybird123 阅读(294) 评论(0) 推荐(0) 编辑
摘要: import strings='abc'#去除空格s = ' asd f f s 'print(s.strip())print(s.lstrip())print(s.rstrip())print(s) #字符串连接s1 = 'abc's2 = 'dfe'print(s1+ "\n" + "kkk" 阅读全文
posted @ 2017-06-26 00:28 crazybird123 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 1、创建数组 import numpy as np>>> arrayTest=np.array([[1,2,3], [4,5,6]]) >>> print(arrayTest) [[1 2 3] [4 5 6]] >>> print('dim: ', arrayTest.ndim)dim: 2 >> 阅读全文
posted @ 2017-06-06 00:48 crazybird123 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 1、什么是机器学习 Tom Michell Mitchell 1997年定义:对于某个给定的任务T,在合理的性能度量方案P的前提下,某计算机程序可以自主学习任务T的经验E,随着合适、优质、大量的经验E,该程序对于任务T的性能逐步提高。 即我们设计这个计算机程序不断的执行,会不断的学习经验E,从而更好 阅读全文
posted @ 2017-05-21 22:19 crazybird123 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 面向全连接网络:Full Connected Forward Network 基础神经元(neural、cell、unit) 神经元是构成神经网络的基础单元 一个独立的神经元的组成 {n,wi,b,h} 输入:n维向量X 线性加权:z=w0*b + w1*x1 + w2*x2 + ... +wn*x 阅读全文
posted @ 2017-05-20 00:18 crazybird123 阅读(392) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 下一页