-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2. Separate out the core requirements to minimize package installation PiperOrigin-RevId: 708825801
- Loading branch information
1 parent
1fcf2ea
commit c0618ec
Showing
6 changed files
with
39 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Extras for supporting all features of the project. | ||
pyglove # For Pyglove evolutionary algorithms. | ||
ribs # For PyRibs: https://pyribs.org/ |
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,14 @@ | ||
# Packages required for Reinforcement Learning. | ||
|
||
# Environment packages. | ||
gym | ||
tf-agents # NOTE: Requires tensorflow>=2.15.0 for TFP compatibility. | ||
|
||
# Numerical packages. | ||
jax # Use latest version. | ||
jaxlib # Use latest version. | ||
flax # Use latest version. | ||
tensorflow # TODO(team): Resolve version conflicts. | ||
|
||
# Configuration + Experimentation | ||
gin-config>=0.5.0 |
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 @@ | ||
pytest # Use the latest version to match github workflow. |
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 |
---|---|---|
@@ -1,27 +1,9 @@ | ||
# Standard packages. | ||
typing # Version dependent on Python version. | ||
pytest # Use the latest version to match github workflow. | ||
absl-py>=1.0.0 | ||
|
||
# Numerical packages. | ||
numpy>=1.21.5 | ||
jax # Use latest version. | ||
jaxlib # Use latest version. | ||
flax # Use latest version. | ||
tensorflow # TODO(team): Resolve version conflicts. | ||
|
||
# Distributed systems libraries. | ||
# NOTE: Requires tensorflow~=2.8.0 to avoid proto issues. | ||
dm-launchpad[tensorflow] | ||
dm-reverb[tensorflow] | ||
|
||
# Configuration + Experimentation | ||
ml-collections>=0.1.1 | ||
gin-config>=0.5.0 | ||
|
||
# Reinforcement Learning | ||
gym | ||
tf-agents # NOTE: Requires tensorflow>=2.15.0 for TFP compatibility. | ||
|
||
# Optimization packages | ||
pyglove |
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