Deep-Learning-with-TensorFlow-book icon indicating copy to clipboard operation
Deep-Learning-with-TensorFlow-book copied to clipboard

第十五章 train文件里70行的input_shape有问题

Open YifeiCN opened this issue 4 years ago • 0 comments

原代码中是

newnet.build(input_shape=(4,224,224,3))

应该是下面这样吧

newnet.build(input_shape=(224,224,3))

YifeiCN avatar Sep 19 '20 12:09 YifeiCN