CommError, Run does not exist와 ERROR Error uploading가 모두 표시되면, 가장 가능성이 큰 원인은 코드에서 run ID를 수동으로 설정하고 있기 때문입니다:
wandb.init()에서 id 매개변수를 제거하세요. 테이블과 그래프에 표시되는 맞춤형 이름을 설정하려면 대신 name 매개변수를 사용하세요:
Sweeps Runs
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Help us improve these docs. Take our quick survey.
CommError, Run does not exist와 ERROR Error uploading가 모두 표시되면, 가장 가능성이 큰 원인은 코드에서 run ID를 수동으로 설정하고 있기 때문입니다:
wandb.init(id="some-string")
wandb.init()에서 id 매개변수를 제거하세요. 테이블과 그래프에 표시되는 맞춤형 이름을 설정하려면 대신 name 매개변수를 사용하세요:
wandb.init(name="a helpful readable run name")
Was this page helpful?