Skip to content

Instantly share code, notes, and snippets.

@goddoe
Created August 7, 2018 03:04
Show Gist options
  • Save goddoe/8d5951332a34b7f1c71bd679d5afb319 to your computer and use it in GitHub Desktop.
Save goddoe/8d5951332a34b7f1c71bd679d5afb319 to your computer and use it in GitHub Desktop.
timeit
import timeit
n = 100
t = timeit.timeit("policy_eval(random_policy, env)", globals=globals(), number = n) / n
print("avg time: {}".format(t))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment