deep learning
文章平均质量分 66
李泽辰
这个作者很懒,什么都没留下…
展开
-
tensorflow实战之LeNet-5实现mnist手写字体识别
import tensorflow as tfimport numpy as npfrom tensorflow.examples.tutorials.mnist import input_data#用mnist数据训练#input代表输入数据#train代表是否是训练过程#regulation代表是否加入正则化def inference(input,train,regula...原创 2018-05-18 18:23:20 · 1101 阅读 · 0 评论 -
优达深度学习教程免费分享
关注微信公众号”阿甘琐记“,后台回复”优达深度学习“,即可免费领取优达深度学习课程。下面有公众号二维码。优达深度学习之计算机视觉课程,官网报名价格6899,现在免费分享,关注微信公众号”阿甘琐记“,后台回复”优达深度学习“,即可免费领取优达深度学习课程。课程目录如下:关注微信公众号”阿甘琐记“,后台回复”优达深度学习“,即可免费领取优达深度学习课程。...原创 2019-04-07 14:32:51 · 415 阅读 · 0 评论 -
推荐一份机器学习项目实战课程
总共六个机器学习的项目实战视频,内容非常精彩,文末有获取方式。课程总览:全部课程:好了,现在来说大家最关注的,也就是获取方式。关注微信公众号”阿甘琐记“,后台回复”机器学习实战视频“,即可免费领取课程。另外,公众号里还有大量的其他资源,欢迎订阅哦!!!...原创 2019-04-05 16:27:30 · 1138 阅读 · 1 评论 -
推荐一份完整的机器学习课程
课程总览:python部分算法部分:深度学习部分:数据挖掘部分:kaggle实战部分:关注公众号“阿甘琐记”,后台回复“机器学习课程”,即可免费获取。...原创 2019-04-05 16:19:16 · 735 阅读 · 0 评论 -
Tensorflow实战之分布式-同步模式
# -*- coding: utf-8 -*-import timeimport tensorflow as tffrom tensorflow.examples.tutorials.mnist import input_dataimport mnist_inference# 配置神经网络的参数。BATCH_SIZE = 100LEARNING_RATE_BASE = 0.01...原创 2018-05-30 15:44:40 · 1102 阅读 · 0 评论 -
Tensorflow实战之分布式-异步模式
# -*- coding: utf-8 -*-import timeimport tensorflow as tffrom tensorflow.examples.tutorials.mnist import input_dataimport mnist_inference# 配置神经网络的参数。BATCH_SIZE = 100LEARNING_RATE_BASE = 0.01...原创 2018-05-30 15:42:07 · 1625 阅读 · 0 评论 -
Tensorflow实战之多GPU并行程序的实现
import tensorflow as tffrom tensorflow.examples.tutorials.mnist import input_dataimport mnist_inferenceimport numpy as np#模型保存路径model_save_path = 'C:\\Users\\Administrator\\Desktop\\LZC\\model_sa...原创 2018-05-29 15:56:34 · 5128 阅读 · 1 评论 -
tensorflow 实现batch_normal
def batch_norm_layer(x, train_phase, scope_bn):##x is input-tensor, train_phase is tf.Variable(True/False) with tf.variable_scope(scope_bn): beta = tf.Variable(tf.constant(0.0, shape=[...原创 2018-06-03 18:55:21 · 889 阅读 · 0 评论 -
tensorflow实战之 图像处理函数
#读取一张图片with tf.gfile.GFile('photos/1.jpg','rb') as f: image = f.read() with tf.Session() as sess: #解码 image_data = tf.image.decode_jpeg(image) print('原图') plt.imshow(image_da...原创 2018-05-19 17:13:27 · 460 阅读 · 0 评论 -
tensorflow实战之TFRecord数据的写入与读取
import tensorflow as tffrom tensorflow.examples.tutorials.mnist import input_dataimport matplotlib.pyplot as plt#生成整数型属性def int64List(values): return tf.train.Feature(int64_list=tf.train.Int64L...原创 2018-05-19 15:50:35 · 1202 阅读 · 0 评论 -
优达数据分析课程免费分享
关注微信公众号”阿甘琐记“,后台回复”优达数据分析“,即可免费领取优达数据分析学习课程。下面有公众号二维码。优达深度学习之数据分析课程,官网报名价格6899,现在免费分享,关注微信公众号”阿甘琐记“,后台回复”优达数据分析“,即可免费领取优达深度学习课程。课程目录如下:关注微信公众号”阿甘琐记“,后台回复”优达数据分析“,即可免费领取优达数据分析学习课程。...原创 2019-04-07 14:46:35 · 2528 阅读 · 1 评论