전체 글 623

CUBLAS_STATUS_ALLOC_FAILED

에러: E tensorflow/stream_executor/cuda/cuda_blas.cc:226] failed to create cublas handle: CUBLAS_STATUS_ALLOC_FAILED 해결: 아래 구문을 통해서 GPU 메모리를 제한해 줘야 된다. config = tf.compat.v1.ConfigProto(gpu_options = tf.compat.v1.GPUOptions(per_process_gpu_memory_fraction=0.8) # device_count = {'GPU': 1} ) config.gpu_options.allow_growth = True session = tf.compat.v1.Session(config=config) tf.compat.v1.keras.backe..

`Model.state_updates` will be removed in a future version.

에러: C:\Users\chpark\ANACON~1\lib\site-packages\keras\engine\training.py:2401: UserWarning: `Model.state_updates` will be removed in a future version. This property should not be used in TensorFlow 2.0, as `updates` are applied automatically. warnings.warn('`Model.state_updates` will be removed in a future version. ' 해결: 아래 라인 실행해 주면 에러 사라진다. config = tf.compat.v1.ConfigProto(gpu_options = tf.com..

`Model.state_updates` will be removed

에러: UserWarning: `Model.state_updates` will be removed in a future version. This property should not be used in TensorFlow 2.0, as `updates` are applied automatically. warnings.warn('`Model.state_updates` will be removed in a future version. 해결: 아래 라인 실행해 주면 에러 사라진다. config = tf.compat.v1.ConfigProto(gpu_options = tf.compat.v1.GPUOptions(per_process_gpu_memory_fraction=0.8) # device_count = {'GP..

Anaconda 프롬프트 명령어 정리

(base) conda info --envs (base) conda list (base) conda remove --prefix [PATH] --all (base) conda remove --name --all (base) activate test (test) 명령어 conda 나 pip 가 같은 역할의 명령을 수행함. 주의: 모듈을 설치할때는 conda 대신 pip 사용하길 추천함 (아래 글 참고). 버전 충돌이나 miniconda 충돌 등이 발생할 수 있음. Tensorflow GPU 작동하지 않을때, 재설치 없이 수리하는 법 본 문서는 NVIDIA 그래픽 카드와 Anaconda를 설치했음에도 tensorflow_gpu가 작동하지 않은 경우, 모든 설치 앱을 갈아없지 않고 수리하는 방법을 정리한 것임..