Question/Problem
カスタムのMLパッケージでパイプラインを実行する際に、「ModuleNotFoundError: The XXX dictionary is not installed.」というエラーが発生しました。
原因を教えてください。
Resolution
カスタムのMLパッケージでパイプラインを実行する際、モデルの実行に必要な依存関係をMLパッケージの「requirements.txt」ファイルに記載する必要があります。
もし、モデルの実行に必要な依存関係が「requirements.txt」ファイルに記載されていない場合は、該当するモジュール名を追記し、再度パイプラインを実行してください。
※例えば、「ModuleNotFoundError: The unidic_lite dictionary is not installed.」というエラーが発生した場合、「unidic-lite」を「requirements.txt」ファイルに追記して再実行してみてください。
※参考:
「ML パッケージを構築する」