You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
332 B
20 lines
332 B
Troubleshooting TensorFlow / KERAS GPU Process
|
|
==============================================
|
|
|
|
|
|
Common issues:
|
|
|
|
* Model too big
|
|
(print the KERAS model---is the number of parameters doable with the GPU?)
|
|
|
|
* Batch size too large
|
|
|
|
* Memory not released from previous processing
|
|
|
|
(use `with tf.Session() as sess:` code block)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|