-
Notifications
You must be signed in to change notification settings - Fork 15
[WIP] BOEnv #157
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: development
Are you sure you want to change the base?
[WIP] BOEnv #157
Conversation
| instance_data = yaml.safe_load(f) | ||
| print(instance_data) | ||
| self.config["instance_set"] = { | ||
| 0: instance_data["task_ids"] |
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.
why is it a dict?
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.
Required by the abstract env:
DACBench/dacbench/abstract_env.py
Line 30 in fc5963c
| self.instance_id_list = sorted(self.instance_set.keys()) |
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.
then the instance set should be the product of task ids and seeds.
internally we don't use it anyway, but that would be the correct setting, can you please change that?
might be relevant for stuff like curriculum learning
No description provided.