pip install torch==1.10
AttributeError: module 'torch.distributed' has no attribute '_reduce_scatter_base'
python 파일을 실행하는데, 아래 부분에서 위의 에러가 났다.
from transformers import (
MODEL_MAPPING,
AutoConfig,
AutoTokenizer,
AutoModel,
)
apex라는 패키지의 mapping.py에서 발생하는데,
apex-0.1-py3.7.egg 파일 내에 있어서 쉽게 수정이 어려웠다.
구글링을 해보니, torch >=1.10 이어야 지원가능하다는 것 확인.
https://github.com/hpcaitech/ColossalAI/issues/2673#issuecomment-1427297794
현재 torch 1.9.0을 1.10으로 upgrade 했다
pip install torch==1.10
이후 에러 발생하지 않는것 확인!
'Engineering > 에러 해결 모음' 카테고리의 다른 글
[에러] ModuleNotFoundError: No module named 'transformers.tokenization_bert' (0) | 2023.05.12 |
---|---|
[에러] OSError: Can't load config for 'klue/bert-base' (0) | 2023.05.12 |
[Error][Git] error: src refspec master does not match any (0) | 2023.01.17 |
[Error] A load persistent id instruction was encountered (0) | 2023.01.12 |
[Error] EOFError : Ran out of input (0) | 2022.12.12 |
댓글