"Failed to query for notebook name, you can set it manually with the WANDB_NOTEBOOK_NAME environment variable,"가 나타나면 환경 변수를 설정해 해결할 수 있습니다. 이를 수행하는 방법은 여러 가지가 있습니다:
- 노트북
- Python
노트북 환경 변수
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.
"Failed to query for notebook name, you can set it manually with the WANDB_NOTEBOOK_NAME environment variable,"가 나타나면 환경 변수를 설정해 해결할 수 있습니다. 이를 수행하는 방법은 여러 가지가 있습니다:
%env "WANDB_NOTEBOOK_NAME" "notebook name here"
import os
os.environ["WANDB_NOTEBOOK_NAME"] = "notebook name here"
Was this page helpful?