代码参考:http://deeplearning.net/tutorial/lenet.html#lenet
代码学习:http://blog.csdn.net/u012162613/article/details/43225445
本节实验代码下载:Github
2015/4/9
Experiment 1: 使用Tutorial推荐的CNN结构实验
learning_rate=0.1
n_cv= 20 # 第一层卷积核20
n_vc=50 #第二层卷积核50
n_epochs=200
batch_size=500
n_hidden=500
实验结果:
Experiment 2:在Tutorial基础上加一隐藏层
learning_rate=0.1
n_cv= 20 # 第一层卷积核20
n_vc=50 #第二层卷积核50
n_epochs=200
batch_size=500
n_hidden=500
实验结果:
Experiment 3:在Tutorial基础上加一卷积采样层
时间: 2024-11-09 00:16:41