ModuleNotFoundError:tensorflow.python.keras.layers.preprocessing

brc7rcf0  于 2023-05-07  发布在  Python
关注(0)|答案(1)|浏览(115)

尽管我在2.12.0版本的venv中安装了tensorflow,但它没有tensorflow. python. keras. layers. preprocessing。我试着安装对象检测API,但我仍然在努力让它工作。下面是我在尝试运行测试文件python object_detection/builders/model_builder_tf 2_test. py时得到的错误消息。第二张照片向您展示了当我试图运行命令python -m pip install时得到的结果。
有些东西工作,但就像我说的,我不能使测试文件工作。enter image description hereenter image description here
我已经安装了Visual Studio 2017,因为我得到了一个错误,对象检测需要它,我也做了安装指南中所写的一切https://tensorflow-object-detection-api-tutorial.readthedocs.io/en/latest/install.html#tf-models-install-coco
我已经试过了,所以如果有人能帮助我,我会很高兴的:)

i1icjdpr

i1icjdpr1#

您需要更新TensorFlow -

pip install tensorflow==2.7.0

对于gpu版本-

pip install tensorflow-gpu==2.7.0

看看这个post
您也可以到这个链接了解更多详情

相关问题