{ValueError}Models passed to `predict` can only have `training` and the first argument in `call` as positional arguments, found: ['y'].
时间: 2023-11-21 11:49:45 浏览: 279
解决Keras中Embedding层masking与Concatenate层不可调和的问题
这个错误提示表明,在调用 `predict` 方法时,传递给它的模型只能将 `training` 和 `call` 的第一个参数作为位置参数,但是你传递了一个名为 `y` 的参数。请确保你的模型在调用 `predict` 时没有额外的参数,只接受 `training` 和 `call` 的第一个参数作为位置参数。
阅读全文