環境変数
同じマシンでアカウントを切り替えるにはどうすればよいですか?
同じマシンで 2 つの W&B アカウントを管理するには、両方の APIキーをファイルに保存します。各リポジトリで以下のコードを使用すると、キーを安全に切り替えられ、シークレットキーがソース管理にチェックインされるのを防げます。
環境変数
環境変数
Was this page helpful?
⌘I
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.
if os.path.exists("~/keys.json"):
os.environ["WANDB_API_KEY"] = json.loads("~/keys.json")["work_account"]
Was this page helpful?