RAM gets full? #4545
Answered
by
rusty1s
DogitoErgoSum
asked this question in
Q&A
RAM gets full?
#4545
-
Why does my ram gets full after a few hundreds iterations? the model is on cuda and so as the loaded graph |
Beta Was this translation helpful? Give feedback.
Answered by
rusty1s
Apr 27, 2022
Replies: 2 comments
-
Beta Was this translation helpful? Give feedback.
0 replies
-
The issue is that you are never releasing the computation graph. loss_total = loss_total + float(loss) should fix this. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
DogitoErgoSum
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The issue is that you are never releasing the computation graph.
should fix this.