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
In your main.py, line 147: for t in range(10000): # Don't infinite loop while learning
But actually, the t ends at 50, because the env is done in 50 steps. so the range(10000) is so big and not necessary.
The text was updated successfully, but these errors were encountered:
In your main.py, line 147: for t in range(10000): # Don't infinite loop while learning
But actually, the t ends at 50, because the env is done in 50 steps. so the range(10000) is so big and not necessary.
The text was updated successfully, but these errors were encountered: