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.

エクスポート制限により、 CSV としての書き出しや run.history API の使用では、すべての Run の履歴をエクスポートできない場合があります。完全な Run の履歴にアクセスするには、 Parquet 形式を使用して Run 履歴の Artifacts をダウンロードしてください。
import wandb
import pandas as pd

with wandb.init() as run:
    # artifact を使用して履歴を取得
    artifact = run.use_artifact('<entity>/<project>/<run-id>-history:v0', type='wandb-history')
    # artifact をダウンロード
    artifact_dir = artifact.download()
    # .parquet ファイルを読み込む
    df = pd.read_parquet('<path to .parquet file>')