Open LeonardPatrick opened 6 years ago
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.
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.