#問題点
from detection import Detectでモジュールをインストールしようとすると'detection'がないと返されます。
素人質問で申し訳ございませんが対処法を教えていただけると幸いです。
Google colab上で実行しています。
python
1--------------------------------------------------------------------------- 2ModuleNotFoundError Traceback (most recent call last) 3<ipython-input-9-7541849ed100> in <module>() 4 6 from math import sqrt as sqrt 5 7 from itertools import product as product 6----> 8 from detection import Detect 7 8ModuleNotFoundError: No module named 'detection' 9 10--------------------------------------------------------------------------- 11NOTE: If your import is failing due to a missing package, you can 12manually install dependencies using either !pip or !apt. 13 14To view examples of installing some common dependencies, click the 15"Open Examples" button below. 16---------------------------------------------------------------------------
#背景
現在、「Pytorchによる物体検出」という本を読んで物体検出を学んでいます。
参考書の第2章の「2.9-SSDのforward関数」の部分でクラスSSDでDetect()を実行しています(p95)。
なのでDetectのモジュールが必要だと考えました。
環境としてはGoogle colabで学習しています。
#試したこと
書籍のpythonが3.7.6であったため(colabは3.7.11)下のコードでダウングレードしようとしたのですが、うまくいきませんでした。これについても対処法を教えていただけると助かります。
python
1!pip install python==3.7.6
error
1ERROR: Could not find a version that satisfies the requirement python==3.7.6 (from versions: none) 2ERROR: No matching distribution found for python==3.7.6
回答2件
あなたの回答
tips
プレビュー