08 2014 档案

摘要:Download AnacondaAnaconda is a completely free Python distribution (including for commercial use and redistribution). It includes over 195 of the most... 阅读全文
posted @ 2014-08-07 11:46 油焖大黄瓜 阅读(269) 评论(0) 推荐(0)
摘要:首先链接一篇大牛的Theano文档翻译:http://www.cnblogs.com/xueliangliu/archive/2013/04/03/2997437.html 里面有mnist.pkl.gz 手动下载地址(因为代码里也有自动下载方法) 那么我不是做图像处理的,所以对图像的存储格式没有什 阅读全文
posted @ 2014-08-02 10:26 油焖大黄瓜 阅读(4408) 评论(0) 推荐(0)
摘要:参考:https://groups.google.com/forum/#!topic/theano-users/teA-07wOFpE这个问题出现的原因是,我在读文件的时候,应该Train_X读成matrix(rows * dimensions),Train_Y读成vector(因为只有label一... 阅读全文
posted @ 2014-08-01 22:40 油焖大黄瓜 阅读(9829) 评论(0) 推荐(0)
摘要:参考https://groups.google.com/forum/#!topic/theano-users/tY3fNAPYd9k这个问题是由于outs的数量没有设置对。里面写到“except that you should specify "n_out=6", because there are... 阅读全文
posted @ 2014-08-01 22:25 油焖大黄瓜 阅读(937) 评论(0) 推荐(0)
摘要:天朝网络锁国,百度找了半个小时找不出来原因,只能谷歌谷歌第一条就是,顿时感觉幸福感来的太突然原因是输入的矩阵均是字符串(从文件里读的)那么就需要批量转数组,一行一行的转。下面是我的代码:rownum = 0f = open(train_Y_path)for line in f.readlines()... 阅读全文
posted @ 2014-08-01 15:28 油焖大黄瓜 阅读(5712) 评论(0) 推荐(0)