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 function time.clock() has been removed, after having been deprecated since Python 3.3: use time.perf_counter() or time.process_time() instead, depending on your requirements, to have well-defined behavior.
This throws an error:
line 277, in run_agents_on_mdp
start = time.clock()
The text was updated successfully, but these errors were encountered:
I've determined that pip install simple-rl using Python 3.8 does not actually have the latest code. The files in the tarbell link also throws this error on Python 3.
From Python docs:
This throws an error:
The text was updated successfully, but these errors were encountered: