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
- pytorch
- 우울증
- sentiment analysis
- 자연어처리
- Word2Vec
- word embedding
- naver movie review
- 석사
- 수기
- CUDA
- 품사태깅
- Classification Task
- NLP
- 인공지능
- 전처리
- 대학원
Archives
- Today
- Total
슬기로운 연구생활
[ Tensorflow ] tensorflow load error 본문
* Error Message
tensorflow.python.framework.errors_impl.UnknownError
* Problem
처음에는 CUDA 버전 에러인 줄 알았다. (2080TI에 CUDA 10 사용 중)
그런데 저 에러가 뜨는 코드가 있고 안 뜨는 코드가 있었다.
그래서 cuda 버전 에러가 아닐 수도 있겠다고 생각했고 찾아본 결과 GPU 메모리 에러였다.
GPU 메모리를 초과해서 사용하는 경우 이런 에러가 발생할 수 있다고 했다.
* Solution : gpu_memory를 적당양 사용하니까 문제가 해결됬다. ( 여기서는 75% 사용 )
# Tensor 환경 설정
def set_env():
os.environ['CUDA_VISIBLE_DEVICES'] = '0'
config = tf.ConfigProto()
config.gpu_options.per_process_gpu_memory_fraction = 0.75
session = tf.Session(config=config)
session
set_env()
'슬기로운 에러 생활' 카테고리의 다른 글
[ GPU ] CUDNN_STATUS_EXECUTION_FAILED (0) | 2020.05.24 |
---|---|
[ Scipy ] scipy import error (0) | 2020.05.24 |
[ Pandas ] ImportError: No module named pandas (2) | 2020.05.24 |
[ Vmware ] Failed to lock the file 오류 (0) | 2019.12.05 |
[ Pytorch ] ImportError: dll load failed: 지정된 모듈을 찾을 수 없습니다 (0) | 2019.09.11 |
Comments