- 博客(5)
- 收藏
- 关注
原创 深度学习案例(三):Mnist数据集分类简单案例
MNIST数据集的官网是Yann LeCun’s website。下载数据包后放入工程目录下即可。代码如下import tensorflow as tffrom tensorflow.examples.tutorials.mnist import input_data# 载入数据集mnist = input_data.read_data_sets("MNIST_data", one_hot...
2018-05-23 16:47:49 764
原创 深度学习案例(二):非线性回归案例
import tensorflow as tfimport numpy as npimport matplotlib.pyplot as plt#使用numpy生成200个随机点x_data=np.linspace(-0.8,0.8,200)[:,np.newaxis]#200行1列矩阵noise=np.random.normal(0,0.01,x_data.shape)#200行1列矩...
2018-05-21 13:20:29 5384
原创 python学习笔记
(一)键盘输入调用input内置函数:content=input('what do you want to write?') #打印what do you want to write,之后将输入值赋予content。input函数只是返回字符串,如果需要数字(如进行算数运算),就必须调用数值转换函数content=input('what do you want to write?\n'...
2018-05-18 11:03:19 185
原创 深度学习笔记
(一)numpy.random.rand使用详解 Random values in a given shape.(指定类型的)Create an array of the given shape and populate it with random samples from a uniform distribution over [0, 1).(创建一个给定类型的数组,将其填充在一个...
2018-05-18 11:02:44 294
原创 深度学习案例(一):优化器训练-构造线性模型
#使用numpy构造100个随机点x_data=np.random.rand(100)y_data=x_data*0.5+0.6#构造一个线性模型b=tf.Variable(0.)k=tf.Variable(0.)y=x_data*b+k#二次代价函数loss=tf.reduce_mean(tf.square(y_data-y))#定义一个梯度下降法来进行训练的优化器optim...
2018-05-18 10:49:00 335
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人