-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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] APPO config objects #24376
[RLlib] APPO config objects #24376
Conversation
rllib/__init__.py
Outdated
@@ -57,7 +57,7 @@ def setup(self, config): | |||
|
|||
_setup_logger() | |||
|
|||
usage_lib.record_library_usage("rllib") | |||
# usage_lib.record_library_usage("rllib") |
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.
Could you please explain this? Can we remove it altogether?
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.
Oh, sorry, this shouldn't be here. Will remove ...
rllib/agents/ppo/appo.py
Outdated
"""Defines a A2CTrainer configuration class from which a new Trainer can be built. | ||
|
||
Example: | ||
>>> from ray import tune |
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.
APPOConfig import
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, pending the two missing imports
APPO config objects
Why are these changes needed?
Related issue number
Checks
scripts/format.sh
to lint the changes in this PR.