我正在构建一个自定义层,然后在添加密集层时遇到输出形状问题。即使我明确地这样做,该层的输出形状似乎也没有定义。这是重现该问题的最小代码:
import tensorflow as tf
from tensorflow import keras
class fakeLayer(keras.layers.Layer):
def __init__(self, **kwargs):
super().__init__(**kwargs)
def compute_output_shape(self, input_shape):
return ((input_shape[0], input_shape[1]* input_shape[2], input_shape[3]))
def build( self, input_shape):
super().build(input_shape)
def call(self, inputs):
return(tf.reshape(inputs , self.compute_output_shape(tf.shape(inputs))))
inp = keras.layers.Input((32,32,3))
x = keras.layers.Conv2D(16, (3,3))(inp)
x = fakeLayer()(x)
# x = keras.layers.Flatten()(x)
# x = keras.layers.Dense(1)(x)
model = keras.models.Model(inputs= inp, outputs = x)
print(model.summary())
Run Code Online (Sandbox Code Playgroud)
输出这个:
WARNING:tensorflow:Entity <bound method fakeLayer.call of <__main__.fakeLayer object at 0x0000021A7370E470>> could not be transformed and will be executed as-is. Please report this to the AutoGraph team. When filing the bug, set the verbosity to 10 (on Linux, `export AUTOGRAPH_VERBOSITY=10`) and attach the full output. Cause:
WARNING: Entity <bound method fakeLayer.call of <__main__.fakeLayer object at 0x0000021A7370E470>> could not be transformed and will be executed as-is. Please report this to the AutoGraph team. When filing the bug, set the verbosity to 10 (on Linux, `export AUTOGRAPH_VERBOSITY=10`) and attach the full output. Cause:
Model: "model_9"
_________________________________________________________________
Layer (type) Output Shape Param #
=================================================================
input_37 (InputLayer) [(None, 32, 32, 3)] 0
_________________________________________________________________
conv2d_10 (Conv2D) (None, 30, 30, 16) 448
_________________________________________________________________
fake_layer_28 (fakeLayer) (None, None, None) 0
=================================================================
Total params: 448
Trainable params: 448
Non-trainable params: 0
_________________________________________________________________
None
Run Code Online (Sandbox Code Playgroud)
我们可以看到这里 model.summary() 无法获取该层的输出形状。
因此,我们在取消注释扁平层和密集层时得到了这个错误:
WARNING:tensorflow:Entity <bound method fakeLayer.call of <__main__.fakeLayer object at 0x0000021A737535C0>> could not be transformed and will be executed as-is. Please report this to the AutoGraph team. When filing the bug, set the verbosity to 10 (on Linux, `export AUTOGRAPH_VERBOSITY=10`) and attach the full output. Cause:
WARNING: Entity <bound method fakeLayer.call of <__main__.fakeLayer object at 0x0000021A737535C0>> could not be transformed and will be executed as-is. Please report this to the AutoGraph team. When filing the bug, set the verbosity to 10 (on Linux, `export AUTOGRAPH_VERBOSITY=10`) and attach the full output. Cause:
Traceback (most recent call last):
File "C:\Users\integration\Documents\Scripts\minimalBug.py", line 31, in <module>
x = keras.layers.Dense(1)(x)
File "C:\Users\integration\.conda\envs\py36\lib\site-packages\tensorflow_core\python\keras\engine\base_layer.py", line 817, in __call__
self._maybe_build(inputs)
File "C:\Users\integration\.conda\envs\py36\lib\site-packages\tensorflow_core\python\keras\engine\base_layer.py", line 2141, in _maybe_build
self.build(input_shapes)
File "C:\Users\integration\.conda\envs\py36\lib\site-packages\tensorflow_core\python\keras\layers\core.py", line 1015, in build
raise ValueError('The last dimension of the inputs to `Dense` '
ValueError: The last dimension of the inputs to `Dense` should be defined. Found `None`.
Run Code Online (Sandbox Code Playgroud)
我不知道这是否有什么不同,但你这里有双括号,不知道为什么:
def compute_output_shape(self, input_shape):
#wrong: return ((input_shape[0], input_shape[1]* input_shape[2], input_shape[3]))
return (input_shape[0], input_shape[1]* input_shape[2], input_shape[3])
Run Code Online (Sandbox Code Playgroud)
现在,真正的问题在于call,你混合了很多不同的东西。
tf.shape返回一个张量,而不是一个元组 compute_output_shape返回一个元组 compute_output_shape,它将返回一个张量元组(永远不要这样做!) tf.reshape接受“元组”或“张量”,但不接受张量元组 None值的元组,reshape 接受包含-1值的元组,而不是None. 解决方案:
def call(self, inputs):
keras_shape = keras.backend.int_shape(inputs) #tuple containing None and numbers
tf_shape_tuple = tuple(-1 if s is None else s for s in keras_shape) #None -> -1
return tf.reshape(inputs , tf_shape_tuple)
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
3400 次 |
| 最近记录: |