Skip to main content

Documentation Index

Fetch the complete documentation index at: https://wb-21fd5541-update-training-api-26.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

wandb.Run.name 属性には、以下のようにアクセスできます:
import wandb

# run を初期化
with wandb.init() as run:
   run_name = run.name
   # 人間が読みやすい形式の run 名を表示
   print(f"The human-readable run name is: {run_name}")