ImportError:colab google中没有名为object_detection.builders的模块
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ImportError:colab google中没有名为object_detection.builders的模块相关的知识,希望对你有一定的参考价值。
我跑的时候有这个错误
%cd
!git clone --quiet https://github.com/tensorflow/models.git
!apt-get install -qq protobuf-compiler python-tk
!pip install -q Cython contextlib2 pillow lxml matplotlib PyDrive
!pip install -q pycocotools
%cd ~/models/research
!protoc object_detection/protos/*.proto --python_out=.
import os
os.environ['PYTHONPATH'] += ':/content/models/research/:/content/models/research/slim/'
!python object_detection/builders/model_builder_test.py
我懂了
/root/models/research
Traceback (most recent call last):
File "object_detection/builders/model_builder_test.py", line 23, in <module>
from object_detection.builders import model_builder
ImportError: No module named object_detection.builders
有人可以帮助我,我在这里工作了很多时间
答案
Python无法找到模块“object_detection”。解:
- 获取模块
- 修复(包括)模块的路径。
看看这是否有帮助: https://github.com/tensorflow/models/issues/1832
以上是关于ImportError:colab google中没有名为object_detection.builders的模块的主要内容,如果未能解决你的问题,请参考以下文章
在 VM 引擎中导入 google.colab 不会让我在 Google Colab 中运行 Jupyter Notebook?
如何在 google colab 中启用拼写检查器(colab 在 linux OS 上运行)?