Skip to main content
내보내기 제한으로 인해 전체 run 이력을 CSV로 내보내거나 run.history API를 사용해 내보내지 못할 수 있습니다. 전체 run 이력을 확인하려면 Parquet 형식의 run 이력 artifact를 다운로드하세요:
import wandb
import pandas as pd

run = wandb.init()
artifact = run.use_artifact('<entity>/<project>/<run-id>-history:v0', type='wandb-history')
artifact_dir = artifact.download()
df = pd.read_parquet('<path to .parquet file>')

Experiments Runs