You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The recursive net construction increasingly becomes problematic with more complex or bigger networks. We already commonly hit the Python default limit and often use sys.setrecursionlimit(4000) as a workaround. But also, this makes it inefficient.
First requires that #957 is fixed. Maybe also better #1128.