Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Word2Vec
- 우울증
- 자연어처리
- word embedding
- CUDA
- Classification Task
- naver movie review
- 수기
- 대학원
- 석사
- sentiment analysis
- NLP
- 인공지능
- 품사태깅
- pytorch
- 전처리
Archives
- Today
- Total
슬기로운 연구생활
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='huggingface.co', port=443): Max retries exceeded with url: 본문
슬기로운 에러 생활
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='huggingface.co', port=443): Max retries exceeded with url:
vhrehfdl 2022. 3. 14. 15:46* 문제 : 허깅페이스 모델을 불러올 때 사내 보안 문제 때문에 자꾸 SSL 에러가 발생했다.
* 해결방안 : 사내 인증서를 잘 등록하는게 깔끔하기는 하지만.. 잘 안되서 그냥 직접 다운 받아 해결했다.
1. 사용하고자 하는 허깅페이스 모델을 직접 다운로드 받는다.
2. 사전 훈련 모델을 불러오는 과정에서 local_files_only를 True로 설정해 다운 받은 사전 훈련 받은 파일을 사용하게 한다.
electra_model = ElectraTokenizer.from_pretrained(koelectra_dir, local_files_only=True)
'슬기로운 에러 생활' 카테고리의 다른 글
FatalError: Segmentation fault is detected (0) | 2022.11.16 |
---|---|
Please make sure you have the correct access rights and the repository exists. (0) | 2022.10.29 |
WARNING: apt does not have a stable CLI interface. Use with caution in scripts (0) | 2022.01.06 |
nohup.out에 출력결과 즉시 nohup에 찍고 싶을 때 (0) | 2021.11.19 |
OSError: [E050] Can't find model 'de_core_news_sm'... only on debug mode (0) | 2021.11.17 |
Comments