前提・実現したいこと
google colab上でpythonを使用したfaceswapで画像の顔入れ替えの実現を目指しています。
faceswapからconvertコマンドを実行中にエラーが発生しました。
alignments.fsaファイルは自分で作成しました。
google colab
python 3.6.9
発生している問題・エラーメッセージ
Traceback (most recent call last): File "/content/drive/My Drive/Colab Notebooks/python/faceswap/lib/cli.py", line 127, in execute_script process = script(arguments) File "/content/drive/My Drive/Colab Notebooks/python/faceswap/scripts/convert.py", line 56, in __init__ self._alignments = Alignments(self._args, False, self._images.is_video) File "/content/drive/My Drive/Colab Notebooks/python/faceswap/scripts/fsmedia.py", line 71, in __init__ super().__init__(folder, filename=filename) File "/content/drive/My Drive/Colab Notebooks/python/faceswap/lib/alignments.py", line 41, in __init__ self._data = self._load() File "/content/drive/My Drive/Colab Notebooks/python/faceswap/scripts/fsmedia.py", line 126, in _load data = super()._load() File "/content/drive/My Drive/Colab Notebooks/python/faceswap/lib/alignments.py", line 169, in _load data = self._serializer.load(self._file) File "/content/drive/My Drive/Colab Notebooks/python/faceswap/lib/serializer.py", line 109, in load retval = self.unmarshal(data) File "/content/drive/My Drive/Colab Notebooks/python/faceswap/lib/serializer.py", line 170, in unmarshal raise FaceswapError(msg) from err lib.utils.FaceswapError: Error unserializing data for type <class 'bytes'>: Error -5 while decompressing data: incomplete or truncated stream
該当のソースコード
!python faceswap.py convert -al alignments.fsa -i hashimoto_mov.mp4 -o result -m A_B_model
試したこと
https://qiita.com/nwtgck/items/757606bc980d6c3b424c
この記事で紹介されている、
!rm -rf ~/.cache/pip/*`
colabでこのコマンドは試しましたが、ダメでした。
初心者の私にお力添えいただけたら幸いです。よろしくお願いします。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
あなたの回答
tips
プレビュー