0

Is there a hack so that I can increase the maximum recursion depth allowed? I only need it to be 2-3 times as big.

I have a tensorflow graph with many tensors that are lazily constructed because they depend on other tensors (which may or may not be constructed yet). I can guarantee that this process terminates, and that I will not run out of memory. However, I run into this recursion depth error.

user3391229
  • 798
  • 9
  • 17

1 Answers1

0

I had made a coding error that referenced a tensor in the construction of the same tensor. I don't know if changing recursion depth would solve similar, but unbugged, situations.

user3391229
  • 798
  • 9
  • 17