1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
[INFO] Method 1... _________________________________________________________________ Layer (type) Output Shape Param ================================================================= input_1 (InputLayer) (None, 224, 224, 3) 0 _________________________________________________________________ conv2d_1 (Conv2D) (None, 224, 224, 64) 1792 _________________________________________________________________ flatten_1 (Flatten) (None, 3211264) 0 _________________________________________________________________ dense_1 (Dense) (None, 1000) -108370229 ================================================================= Total params: -1,083,700,504 Trainable params: -1,083,700,504 Non-trainable params: 0 _________________________________________________________________ [INFO] Method 2... Tensor("input_1:0", shape=(?, 224, 224, 3), dtype=float32) Tensor("conv2d_1/Relu:0", shape=(?, 224, 224, 64), dtype=float32) Tensor("flatten_1/Reshape:0", shape=(?, ?), dtype=float32) Tensor("dense_1/BiasAdd:0", shape=(?, 1000), dtype=float32) [INFO] Method 3... (None, 224, 224, 3) (None, 224, 224, 64) (None, 3211264) (None, 1000)
|
近期评论