Tensorflow 错误记录(持续更新...)

it2022-05-05  85

1. 使用tf.cond/tf.case:

报错:

TypeError: true_fn must be callable.

解决:

tf.cond(a < b, f1, f2) -> tf.cond(a < b, lambda : f1, lambda: f2)

 


最新回复(0)