この記事は公開から1年以上経過しています。
OpenAI Whisperのモデルダウンロード先ディレクトリは既定ではログインユーザーの.cache/whisper
ディレクトリとなっているが、プログラム実行時に任意のディレクトリへ変更する方法。
対応
whisper.load_model()
のdownload_root
パラメーターで指定する。
model = whisper.load_model('large', download_root='/path/to/cache_dir')
参考ウェブサイトなど
- GitHub
Discussion/Download Model #63
以上です。