热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

tensorflow经典卷积神经网络的实现

代码网址https:github.comlittletomatodonkeytensorflow_practiceAlexNet代码网址https:

代码网址

  • https://github.com/littletomatodonkey/tensorflow_practice/

AlexNet

代码网址

  • https://github.com/littletomatodonkey/tensorflow_practice/blob/master/alexnet_benchmark.py

跑分结果图

这里写图片描述

VGGNet

代码网址

  • https://github.com/littletomatodonkey/tensorflow_practice/blob/master/vggnet_benchmark.py

跑分结果图

这里写图片描述

GoogleInceptionNet

ResNet

遇到的问题

类型无效或者为NoneType

  • TypeError: Fetch argument None has invalid type
  • gradient中的因变量必须与所有的自变量均有关系,才能进行梯度的求解,否则会报这个错误
  • 出现原因:之前搭建网络时,写错了一个变量,导致少了一层cnn,但是变量仍然被考虑进去了,最后的优化结果却与该变量无关,在求gradient(sess.run())时,出现了该问题
  • 参考的链接:http://blog.csdn.net/u012436149/article/details/53905797

推荐阅读
author-avatar
银杰声群当_993
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有