Open LianGee opened 8 years ago
tile_raster_images在我github源码中有,可以下载放在相同目录。mnist.pkl.gz路径是我改过了,你需要放在正确的目录中,这里与官方源码不同
2016年9月10日星期六,LianGee notifications@github.com 写道:
首先感谢您关于代码的解释,以及RBM相关的文章,受益匪浅。 我正在使用和理解RBM 遇到几个新手问题
- from utils import tile_raster_images from logistic_sgd import load_data 这个两个引入有问题,pip安装的utils包下不包含tile_raster_images , logistic_sgd无法使用pip安装。
- 路径错误test_RBM中参数dataset='./data/mnist.pkl.gz' 这里我是自己直接将数据结构下载到../data/中, 路径修改为../data/mnist.pkl.gz
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/zhaoyu611/DeepLearningTutorialForChinese/issues/8, or mute the thread https://github.com/notifications/unsubscribe-auth/ATdzDRUeggWBscEuJ4Iash8z_AzyLn5jks5qoqkwgaJpZM4J5tvJ .
首先感谢您关于代码的解释,以及RBM相关的文章,受益匪浅。 我正在使用和理解RBM 遇到几个新手问题跟大家分享一下:
from utils import tile_raster_images
from logistic_sgd import load_data
这个两个引入有问题,pip安装的utils包下不包含tile_raster_images
,logistic_sgd
无法使用pip安装。我是直接在deeplearning.net
上下载的这两个.py
文件test_RBM
中参数dataset='./data/mnist.pkl.gz'
这里我是自己直接将数据结构下载到../data/中,路径修改为../data/mnist.pkl.gz
另外我想用这份代码跑其他数据集(不是图像数据,是信号数据),需要注意哪些地方?