Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vwxyzjn committed Oct 17, 2023
1 parent 9c0959c commit 5f3f716
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cleanrl/c51_jax.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ class Args:
"""the wandb's project name"""
wandb_entity: str = None
"""the entity (team) of wandb's project"""
capture_video: bool = False
"""whether to capture videos of the agent performances (check out `videos` folder)"""
save_model: bool = False
"""whether to save model into the `runs/{run_name}` folder"""
upload_model: bool = False
Expand Down
2 changes: 2 additions & 0 deletions cleanrl/dqn_jax.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ class Args:
"""the wandb's project name"""
wandb_entity: str = None
"""the entity (team) of wandb's project"""
capture_video: bool = False
"""whether to capture videos of the agent performances (check out `videos` folder)"""
save_model: bool = False
"""whether to save model into the `runs/{run_name}` folder"""
upload_model: bool = False
Expand Down
1 change: 1 addition & 0 deletions cleanrl/ppo_rnd_envpool.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# docs and experiment results can be found at https://docs.cleanrl.dev/rl-algorithms/ppo-rnd/#ppo_rnd_envpoolpy
from dataclasses import dataclass
import os
import random
import time
Expand Down

0 comments on commit 5f3f716

Please sign in to comment.