我在 RBM 的 pyLearn2(机器学习库)示例上找到了这个文档。有人能告诉我为什么它更容易吗?
# First we want to pull out small patches of the images, since it's easier
# to train an RBM on these
pipeline.items.append(
preprocessing.ExtractPatches(patch_shape=(8, 8), num_patches=150000)
)
对于它的价值,我对 RBM 并不了解,所以请多多包涵。完整代码请参考此链接