Created
July 7, 2020 05:15
-
-
Save ceteri/3165df769f3f11a80740842746d6ea65 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import shutil | |
CHECKPOINT_ROOT = "tmp/ppo/taxi" | |
shutil.rmtree(CHECKPOINT_ROOT, ignore_errors=True, onerror=None) | |
ray_results = os.getenv("HOME") + "/ray_results/" | |
shutil.rmtree(ray_results, ignore_errors=True, onerror=None) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment