こちらのサイト(https://www.acceluniverse.com/blog/developers/2020/03/AI-Donuts.html)を参考に、YOLOを使ったドーナツ自動判定を作成しようと思ったのですが、
「from yolo import YOLO 」という部分でエラーが出てしまいます。どのようにすれば良いのでしょうか。実行環境は、google colabです。
エラーメッセージは以下のようです。
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-11-9e3062b5a002> in <module>()
15 from PIL import Image
16
---> 17 from yolo import YOLO
18 from PIL import Image
19 from yolo3.utils import letterbox_image
ModuleNotFoundError: No module named 'yolo'
NOTE: If your import is failing due to a missing package, you can
manually install dependencies using either !pip or !apt.
To view examples of installing some common dependencies, click the
"Open Examples" button below.
回答1件
あなたの回答
tips
プレビュー