Deep-Learning-with-TensorFlow-book
Deep-Learning-with-TensorFlow-book copied to clipboard
第十五章 train文件里70行的input_shape有问题
原代码中是
newnet.build(input_shape=(4,224,224,3))
应该是下面这样吧
newnet.build(input_shape=(224,224,3))