run.history API를 사용해 내보내지 못할 수 있습니다. 전체 run 이력을 확인하려면 Parquet 형식의 run 이력 artifact를 다운로드하세요:
Experiments Runs
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.
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>')
Was this page helpful?