Skip to content Skip to sidebar Skip to footer

Why Is My Gpu Getting Interrupted When Training My Data?

I spent hours configuring my computer and finally got to make python train data on GPUs instead of CPU. However, for some reason my models keep getting interrupted halfway during t

Solution 1:

You are using recurrent_dropout > 0 which does not meet the LSTM compatibility requirements to ensure CuDNN optimizations. Make recurrent_dropout = 0 to resolve the issue.


Post a Comment for "Why Is My Gpu Getting Interrupted When Training My Data?"