oreilly-japan / deep-learning-from-scratch

『ゼロから作る Deep Learning』(O'Reilly Japan, 2016)
MIT License
3.99k stars 3.34k forks source link

errors of pre_node_num in deep_convnet.py #77

Open arandinglv opened 10 months ago

arandinglv commented 10 months ago

pre_node_num = [1*3*3, 16*3*3, 16*3*3, 32*3*3, 64*3*3, 64*4*4] the node_num is decided by the fiter_num * feature_map_h * feature_map_w. So I think the the result of node_num from 1*3*3 to 64*3*3 is wrong.