ColaboratoryでPythonモジュールをインポートできません

実現したいこと

・モジュールをインストールしたい

前提

Colaboratoryの環境でモジュールのインポートに失敗してしまいます。

https://tt-tsukumochi.com/archives/1952
上記サイトのコードを動かそうとしています。(コード自体は短いです。)

githubから必要なファイルにアクセスして実行しますが、モジュールのimportの時点でエラーを吐いてしまいました。

原因がよくわかっていないので教えていただけますと助かります。
どうかよろしくお願いいたします。

発生している問題・エラーメッセージ

ModuleNotFoundError Traceback (most recent call last) <ipython-input-22-9da8af552f96> in <cell line: 4>() 2 download_yolov5s6_model, 3 ) ----> 4 from sahi.model import Yolov5DetectionModel 5 from sahi.utils.cv import read_image 6 from sahi.utils.file import download_from_url ModuleNotFoundError: No module named 'sahi.model' --------------------------------------------------------------------------- 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.

該当のソースコード

Python

1from sahi.utils.yolov5 import (2 download_yolov5s6_model,3)4from sahi.model import Yolov5DetectionModel 5from sahi.utils.cv import read_image 6from sahi.utils.file import download_from_url 7from sahi.predict import get_prediction, get_sliced_prediction, predict 8from IPython.display import Image

試したこと

・githubからのファイルはドライブ環境に入っています。(コード記載)
(!git clone https://github.com/obss/sahi)
・github記載のrequirements.txtのモジュールを入れました。
・pipやaptで直接指定のモジュールのインストールも試しましたがダメでした。

コメントを投稿

0 コメント