tf.function-decorated function tried to create variables on non-first call
时间: 2023-04-12 12:01:51 浏览: 281
First-principles study of hydrogen storage on Ti-decorated BC3 nanostructures
这个错误通常是由于在 tf.function 装饰的函数中,尝试在非第一次调用时创建变量所导致的。这是因为 tf.function 会将函数编译成图形,而图形中的变量只能在第一次调用时创建。如果您需要在函数中创建变量,请将其放在函数的外部或使用 tf.Variable()。
阅读全文