-
Notifications
You must be signed in to change notification settings - Fork 0
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/comet-logger #1
base: master
Are you sure you want to change the base?
Conversation
|
||
return self._experiment | ||
|
||
@override | ||
@rank_zero_only | ||
def log_hyperparams(self, params: Union[Dict[str, Any], Namespace]) -> None: | ||
params = _convert_params(params) | ||
params = _flatten_dict(params) |
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.
It's good that we don't flatten the dict anymore, did you see a difference in the reported parameters when running the examples?
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.
for logged parameter:
comet_logger.log_hyperparams({"specific": {'param': {'subparam': "value"}}})
it will look:
name | value
specific | {"param": {"subparam": "value"}}
What's rest: