自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 收藏
  • 关注

原创 Mnist源码实现

# -*- coding:utf-8 -*-import osimport tensorflow as tffrom tensorflow.examples.tutorials.mnist import input_dataos.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'INPUT_NODE = 784 # 输入层的节点数。对于MNIST数据集,这个...

2018-03-18 15:00:21 676 1

原创 Python学习总结

1、错误:weights = weights + alpha * error * dataMatrix[randIndex])TypeError: 'numpy.float64' object cannot be interpreted as an index改为点乘就可以了weights = weights + dot(dot(alpha, error), dataMatrix[randInd...

2018-03-10 22:46:11 196

原创 pycharm使用经验总结

1、更改Terminal的访问路径和2、fr = open(r"testSet.txt")IOError: [Errno 2] No such file or directory: 'testSet.txt'改为:fr=open(r"testSet.txt", "w")3、 python ImportError: No module named解决方法:sys.path.append(r"D:\G...

2018-03-09 16:47:35 544

原创 命令行进入Python3,安装TensorFlow

进入Python3的方法:1、cd D:\Program Files (x86)\Python3.6\Scripts2、D:\Program Files (x86)\Python3.6\Scripts>pip install tensorflow

2018-03-09 10:59:27 2564

原创 anaconda jupyter note 安装包的问题

切换D盘,查看安装环境,激活py36环境,最后安装包(base) C:\Users\weixingquan>D:(base) D:\>conda info --envs D:\>activate ipykernel_py36(ipykernel_py36) D:\>pip install absl进入Python3的方法:1、cd D:\Program Files (x86...

2018-03-08 20:02:53 549

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除