We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
比如swanlab.logs({'a': {'b': 1, 'c': 2}})
swanlab.logs({'a': {'b': 1, 'c': 2}})
我主要用jax,jax的metrics和weights多数以多重嵌套dict的pytree格式组织,如果手动flatten线的麻烦。
目前wandb是支持这种嵌套logs的,支持方式是用“.“将所有key连接起来,比如swanlab.logs({'a': {'b': 1, 'c': 2}})等价于swanlab.logs({'a.b': 1, 'a.c': 2})。当然我们也可以考虑更智能的分组显示,等等。
swanlab.logs({'a.b': 1, 'a.c': 2})
The text was updated successfully, but these errors were encountered:
感谢您的反馈,我们将在v0.4.6版本中上线这个feature。
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
🤩 Features description [Please make everyone to understand it]
比如
swanlab.logs({'a': {'b': 1, 'c': 2}})
👍 What problem does this feature solve
我主要用jax,jax的metrics和weights多数以多重嵌套dict的pytree格式组织,如果手动flatten线的麻烦。
👾 What does the proposed API look like
目前wandb是支持这种嵌套logs的,支持方式是用“.“将所有key连接起来,比如
swanlab.logs({'a': {'b': 1, 'c': 2}})
等价于swanlab.logs({'a.b': 1, 'a.c': 2})
。当然我们也可以考虑更智能的分组显示,等等。The text was updated successfully, but these errors were encountered: