| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- ipad
- E-P1
- keras
- Series
- mariadb
- pycharm
- GitHub
- 알고리즘
- Splunk
- dataframe
- SciPy
- mean
- synology
- LSTM
- imread
- GT-S80
- CNN
- 삼성소프트웨어멤버십
- index
- pandas
- Lotto
- install
- Button
- SPL
- DFS
- javascript
- Python
- pip
- RNN
- Numpy
Archives
- Today
- Total
잠토의 잠망경
[Python] Keras InternalError: GPU sync failed 본문
문제
InternalError: GPU sync failed
해결
코드상에 아래 부분을 넣어준다.
from keras.backend import tensorflow_backend as K
config = tf.ConfigProto()
config.gpu_options.allow_growth = True
K.set_session(tf.Session(config=config))
Comments