mmf
mmf copied to clipboard
BrokenPipeError: [Errno 32] Broken pipe
❓ Questions and Help
Hi,
I came across a cross number of errors and fixed some as follows:
-
to fix (AttributeError: module 'distutils' has no attribute 'version'), DO : from setuptools import distutils print(distutils.version, dir(distutils)) !pip install torch==1.8.0 ##Note: torch==1.9.0 does not have version attribute but torch==1.8.0 does
-
to fix (OSError: /usr/local/lib/python3.7/site-packages/torchaudio/_torchaudio.so: undefined symbol: DO: _ZN2at6detail10noopDeleteEPv) !pip install torchvision==0.9.0 torchaudio==0.8.0
-
to fix (future model mot found) DO: !pip install future
However, I came across the following error when running the fine-tuning code
BrokenPipeError: [Errno 32] Broken pipe
Any suggestion on how to fix this error would be appreciated.
Thanks!