tf.constant(3, shape=(1, 42), dtype='float32')
print(model.predict(x)) # works fine
@tf.function调用位于@tf.function内部的model.predict时。 为什么会发生这种情况?我不应该在@tf.function中使用model.predict吗?或者换个方式做?
For (1), please define your @tf.function outside of the loop.有没有办法告诉Model.fit()使用experimental_relax_shapes=True?换句话说,我想写 @tf.function(experimental_relax_shapes=True) 在定义Model.fit()之前。我该怎么做呢?: Detected a call to `Model.fit` inside a `tf.function`.因此,我实际上希望