-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* improved readability * rgb render mode for pixels obs * Update gym.py * Update gym.py * Update gym.py gym\utils\passive_env_checker already checks that * Update gym.py when in human mode, env is always rendered as in gym * Update README.md * replaced choice with better rand functions * better seeding seed and reset do not remake the env from scratch, they just set the random_state the whole code is more gym-like * Update setup.py * Update environment.py * Update gym.py * try import guard * Update README.md * Update gym.py * Minor changes to README * readme * Update README.md * fixed my email domain in setup.py --------- Co-authored-by: Kenny Young <[email protected]>
- Loading branch information
Showing
8 changed files
with
100 additions
and
115 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
42741e5
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note, this update removes the
random_seed
argument in environment initialization. Any existing code using this argument should be updated to callenv.seed(random_seed)
after initialization instead.