Tensorflow
JustMo_
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
tensorflow实践-LeNet-5模型处理mnist手写数字识别
LeNet-5模型处理mnist手写数字识别 模型结构定义 tf_conv_sample.py # -*- coding: utf-8 -*- """ Created on Tue Oct 15 16:23:00 2019 @author: JustMo """ ''' 实现简单卷积网络LeNet-5模型 lenet-5总共有7层(conv,pool,conv,pool,dense,dense...原创 2019-11-22 19:33:58 · 900 阅读 · 0 评论 -
tensorflow-模型持久化(ckpt)
(以下 tensorflow 简写为 tf) 模型持久化-保存 通过将 tf 训练的模型保存到文件中,方便模型在预测时选择模型进行预测。 保存方式 tf 中通过使用 tf.train.Saver 类,调用其 save 方法将模型进行保存 实现方式如下: # -*- coding: utf-8 -*- """ Created on Mon Oct 14 14:22:02 2019 @author:...原创 2019-10-14 18:09:02 · 1498 阅读 · 0 评论 -
tensorflow实践-mnist数字识别(1)
tensorflow 入门 mnist手写数字识别-系列1原创 2019-09-19 15:22:24 · 178 阅读 · 0 评论 -
tensorflow实践-mnist数字识别(2)
tensorflow实践-mnist数字识别 系列2原创 2019-10-09 16:23:33 · 153 阅读 · 0 评论
分享