forked from vwxyzjn/cleanrl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Isaac Gym Envs PPO updates (vwxyzjn#233)
* Create ppo_continuous_action_isaacgym.py * Create a.txt * Add files via upload * Delete a.txt * Update ppo.md * Create ppo-isaacgymenvs.md * Update mkdocs.yml * Update LICENSE * pre-commit * add gitignore * Add docs * update poetry * revert changes * update docs * quick udpate * update isaacgym lock * Update lock file * remove old one * update docs * Update docs * Update a note * update isaacgymenvs command * Update docs * Update docs * Add an explanation note * Add a note on common installation issue Co-authored-by: Markel Sanz Ausin <markelsanz14@gmail.com>
- Loading branch information
1 parent
83a2529
commit 1099a51
Showing
38 changed files
with
1,546 additions
and
4,785 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
pip==22.0.3 | ||
poetry==1.1.13 | ||
virtualenv==20.13.1 |
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
427 changes: 427 additions & 0 deletions
427
cleanrl/ppo_continuous_action_isaacgym/isaacgym/poetry.lock
Large diffs are not rendered by default.
Oops, something went wrong.
27 changes: 27 additions & 0 deletions
27
cleanrl/ppo_continuous_action_isaacgym/isaacgym/pyproject.toml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
[tool.poetry] | ||
name = "isaacgym" | ||
version = "1.0.preview4" | ||
description = "" | ||
authors = ["Costa Huang <costa.huang@outlook.com>"] | ||
include = ["isaacgym", "examples"] | ||
packages = [ | ||
{ include = "isaacgym" }, | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.7.1,<3.10" | ||
gym = "0.23.1" | ||
torch = "^1.12.0" | ||
torchvision = "^0.13.0" | ||
PyYAML = ">=5.3.1" | ||
scipy = ">=1.5.0" | ||
numpy = ">=1.16.4" | ||
Pillow = "^9.2.0" | ||
imageio = "^2.19.5" | ||
ninja = "^1.10.2" | ||
|
||
[tool.poetry.dev-dependencies] | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" |
Oops, something went wrong.