前提・実現したいこと
pythonのライブラリalbumentations内にあるBboxParamsのimportがうまくいきません。
-> github
githubを見ると確かにclass BboxParams(Params)
が存在するのでimportできるはずだと思ったのですが...
またfrom albumentations.core.composition import *
とし上記リンクのファイル中の__all__ = ["Compose", "OneOf", "OneOrOther", "BboxParams", "KeypointParams", "ReplayCompose"]
を全てをimportしようとしたのですが、ダメでした。
解決方法が分かる方がいらっしゃれば、ご教授いただければ幸いです。
(このnotebookを実行している際に起こりました。)
発生している問題・エラーメッセージ
ImportError Traceback (most recent call last) <ipython-input-59-18f4865457a3> in <module>() ----> 1 from albumentations import BboxParams ImportError: cannot import name 'BboxParams' --------------------------------------------------------------------------- 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. ---------------------------------------------------------------------------
補足情報
動作環境はgoogle colabで、!pip install albumentations は済ませており、
from albumentations import HorizontalFlip,VerticalFlip,Resize,CenterCrop,RandomCrop,Crop,Compose
のimportはうまくいきました。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/26 03:03