-
Notifications
You must be signed in to change notification settings - Fork 27
Env name normalization update #32
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
Changes from 3 commits
db63b8f
ced487d
6e834fa
81853ee
514fa4d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,7 +5,9 @@ | |
| "pyyaml~=6.0", | ||
| "wasabi", | ||
| "numpy", | ||
| "cloudpickle>=1.6" | ||
| "cloudpickle>=1.6", | ||
| "gym~=0.21", | ||
| "stable-baselines3~=1.7", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. not sure if it's a good thing that this packages depends on SB3
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. SB3 is used in I set up a venv for Why do you think we should not add the dependency?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. oh, that's true, but I think @simoninithomas wanted to switch to gymnasium (so a simple dependency on SB3 should work). |
||
| ] | ||
|
|
||
| extras = {} | ||
|
|
||
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.
this prevents hf hub sb3 from using it with gymnasium/sb3, no? is it needed only for the tests?
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 think right now
huggingface_sb3does not supportgymnasiumanyways (see #30).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.
Hey there 👋 I'm finishing the gymnasium integration can we remove this requirement? (gym one)
The PR: https://github.com/huggingface/huggingface_sb3/compare/gymnasium-v2