
Python
pikapikah
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
TensorFlow学习笔记-权值和偏置值
权值和偏置值x = tf.placeholder(tf.float32,[None,784]) # 输入一个矩阵 ?*784W = tf.Variable(tf.zeros([784,10])) # 是一个784*10的矩阵b = tf.Variable(tf.zeros([10])) # 是一个1*10的矩阵c = tf.matmul(x,W)z = c + bprediction...原创 2019-04-27 10:38:52 · 3098 阅读 · 0 评论 -
Python学习路上遇见的各种错
编码错误:AttributeError: ‘float’ object has no attribute ‘decode’来源:jieba.lcut(x)修改:jieba.lcut(str(x))原创 2019-04-30 16:15:44 · 341 阅读 · 0 评论