最后更新于4年前
在使用自定义的层模型搭建完毕之后, 运行fit进行训练时, 报如下的错误:
fit
在自定义层中的build方法里, 定义了一些变量, 但是如果有变量在call方法中没有被使用, 就会报上面的错误.
build
call
检查自定义层的定义.
ValueError: An operation has `None` for gradient. Please make sure that all of your ops have a gradient defined (i.e. are differentiable). Common ops without gradient: K.argmax, K.round, K.eval.