-
Notifications
You must be signed in to change notification settings - Fork 16
sb3_procgen_model #45
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
base: main
Are you sure you want to change the base?
Conversation
…into sb3-progen-plr
RyanNavillus
left a comment
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.
Looks good so far!
syllabus/curricula/sequential.py
Outdated
| self.custom_metrics = custom_metrics or {} | ||
|
|
||
| def __call__(self, curriculum): | ||
| predefined_metrics = { |
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 should be defined in the initializer
tests/sequential_curriculum_test.py
Outdated
| # Stage 1 - Survival | ||
| stage1 = [0, 1, 2, 3] | ||
| stopping.append( | ||
| Condition( |
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 like that this is structured, but I think it was easier to use as a string. Could you write some syntactic sugar so that we can pass in a string here, and then convert it to a Condition object within the curriculum?

No description provided.