-
Notifications
You must be signed in to change notification settings - Fork 97
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
Feature/jax mava custom config class #414
Conversation
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 is excellent @arnupretorius , super excited to use this.
I just made some minor comments. My biggest comment is that it should be obvious what we are getting/setting when we call add
,update
,get
,set
. This are all called like config.
, but some apply to self._config
and others to self._built_config
. This might be a bit confusing when using it.
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, thanks @arnupretorius 🔥 Just see my comments.
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.
Thank you @arnupretorius!
What?
Config handler class for Jax based Mava systems.
Why?
More flexible configs that dynamically change with the component setup of a system.
How?
Implement a config class with methods to handle adding and updating config dataclass for different system components and updating config hyperparameters.
closes #411