tensorflow学习
chuyanghong
这个作者很懒,什么都没留下…
展开
-
python开始学习
1.Python的源程序是以.py的格式;2.环境可在Linux中自带python,在命令中输入python就可以出现python的命令行,第一个python程序,如下:vim 1.py/* #!/usr/bin/python 这句话很重要,不加无法执行*/#!/usr/bin/python print 'hello world!' ...原创 2018-06-18 22:02:32 · 312 阅读 · 0 评论 -
tensorflow 中mnist的下载和读取
#!/usr/bin/Python # -*- coding: utf-8 -*- # Copyright 2015 Google Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in co...转载 2018-10-23 14:13:09 · 1641 阅读 · 0 评论 -
tensorflow 中的python错误:没有模块命名为pylab
1.tensorflow 中的python错误:没有模块命名为pylab import pylab 报错没有pylab这个模块,解决办法: 需要安装numpy,scipy和matplotlib来获取pylab。在ubuntu中,您可以使用此命令安装它们: Python版本是python 2.7使用如下命令: sudo apt-get install python-numpy python-...原创 2018-10-23 15:05:48 · 1325 阅读 · 0 评论