我尝试使用此tutorial训练我的对象检测模型,但是,我收到此错误
File "C:\tensorflow1\models\research\slim\nets\nasnet\nasnet.py", line 27, in <module>
from tensorflow.contrib import training as contrib_training
ModuleNotFoundError: No module named 'tensorflow.contrib'
我理解TensorFlow。contrib不再在tensorflow 2中使用。x和我设法通过使用tf_slim修复了其他错误,但我仍然对这一行有问题
from tensorflow.contrib import training as contrib_training
我寻找替代品,但没有成功。有没有什么替代品可以在不降低我的tensorflow版本的情况下实现相同的结果?
1条答案
按热度按时间2mbi3lxu1#
如您所知,*************************************************************************************************************************************************************************************************************************************************contrib已弃用,其子模块已替换为TF Slim和TF addons**api。
www.example. com 您可以通过检查TensorFlow 2.x APIs列表来找到特定所需的功能子模块。 You can find your specific required functionality sub-module by checking TensorFlow 2.x APIs list.
请参阅此migration guide了解更多详情。