-
Notifications
You must be signed in to change notification settings - Fork 5.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[RLlib; setup] Remove unnecessary dependencies from setup.py
; add ormsgpack
dependency for RLlib
#49489
[RLlib; setup] Remove unnecessary dependencies from setup.py
; add ormsgpack
dependency for RLlib
#49489
Conversation
@@ -315,11 +315,9 @@ def get_packages(self): | |||
"dm_tree", | |||
"gymnasium==1.0.0", | |||
"lz4", | |||
"scikit-image", | |||
"ormsgpack==1.7.0", |
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.
Get rid of 3, add 1 :)
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.
@sven1977 Do you think we should use ormsgpack
for our offline RL API? We use right now msgpack
with msgpack-numpy
.
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.
I'm not 100% sure yet. This is still in experimental stage. ormsgpack
is faster and natively supports numpy. That's good. But msgpack-numpy
might produce smaller files. We'll have to see what outweighs what.
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.
LGTM. Short question in reagrd to offline RL API.
@@ -315,11 +315,9 @@ def get_packages(self): | |||
"dm_tree", | |||
"gymnasium==1.0.0", | |||
"lz4", | |||
"scikit-image", | |||
"ormsgpack==1.7.0", |
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.
@sven1977 Do you think we should use ormsgpack
for our offline RL API? We use right now msgpack
with msgpack-numpy
.
…ed from the artifacts tab in buildkite) Signed-off-by: sven1977 <svenmika1977@gmail.com>
…ormsgpack` dependency for RLlib (#49489)
setup.py
(rich, type, scikit-image).ormsgpack
dependency for RLlib.Why are these changes needed?
Related issue number
Checks
git commit -s
) in this PR.scripts/format.sh
to lint the changes in this PR.method in Tune, I've added it in
doc/source/tune/api/
under thecorresponding
.rst
file.