WANDB运行初始化
我想尝试使用WANDB来记录我的ML实验的项目;但是我无法初始化运行本身。 我尝试了:
run = wandb.init(project="name",entity="username",name="classification")
这结果是:
wandb: W&B API key is configured (use `wandb login --relogin` to force relogin)
wandb: Network error (ConnectTimeout), entering retry loop.
wandb: Network error (ConnectTimeout), entering retry loop.
我该怎么办? (在启动此单元格之前,我确实通过终端登录了什么)
I wanted to try using wandb to log runs of my ML experiments for a project; but I am not able to initialize the run itself.
I tried:
run = wandb.init(project="name",entity="username",name="classification")
This results in:
wandb: W&B API key is configured (use `wandb login --relogin` to force relogin)
wandb: Network error (ConnectTimeout), entering retry loop.
wandb: Network error (ConnectTimeout), entering retry loop.
What can I do to fix this? (I did login through the terminal before launching this cell idk what else to try)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
就我而言,通过使用以下两个命令来解决此问题 -
In my case, this issues was resolved by using the following two commands -