wandb中允许匿名的含义是什么
我正在尝试使用wandb进行可视化,但是我对这一行
和b_init_kwargs = dict(anonymous =“允许”)感到困惑,这意味着任何人都可以看到具有链接的可视化吗?
wandbcallback( wandb_init_kwargs = dict(匿名=“允许”),#对于匿名者,每个人都可以可视化进度 log_freq =“ batch”, )
i am trying to use wandb for visualization but I am confused about this line
andb_init_kwargs=dict(anonymous="allow") it means anyone can see visualization with having link ?
WandbCallback(
wandb_init_kwargs=dict(anonymous="allow"), # for Anonymous everyone can visualize progress
log_freq="batch",
)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过使用匿名模式,您可以让其他人看到Wandb仪表板,运行代码甚至可视化结果。为此,他们不需要创造权重&偏见帐户首先。但是,根据 documentation ,请记住,请记住匿名链接是敏感,因为这些链接允许任何人查看并要求实验的结果7天,因此请确保仅与您信任的人共享链接。
By using Anonymous mode, you can let others see your Wandb dashboard, run your code and even visualize results. To do so, they do not need to create a Weights & Biases account first. However, as per the documentation, keep in mind that Anonymous-run links are sensitive since these links allow anyone to view and claim the results of an experiment for 7 days, so make sure to only share links with people you trust.