类型错误: 'AutoTrackable'对象不可调用



我试图按照本教程在我训练过的模型上运行推理。我正在使用TF 2.1.0,我已经尝试过TF -nightly 2.5.0.dev20201202。但我得到TypeError: 'AutoTrackable' object is not callable时,我击中以下行detections = detect_fn(input_tensor)
我知道& # 39; AutoTrackable& # 39;object在Python中是不可调用的存在,但我没有使用tensorflow hub,我不明白答案如何帮助我。

感谢

尝试使用detect_fn.signatures['default'](input_tensor)

detections = detect_fn(input_tensor)更改为detections = detect_fn.signatures['serving_default'](input_tensor)

相关内容

  • 没有找到相关文章

最新更新