Help us improve these docs. Take our quick survey.
run.history
import wandb import pandas as pd with wandb.init() as run: # <entity>/<project>/<run-id>-history:v0 형식으로 아티팩트를 사용합니다. artifact = run.use_artifact('<entity>/<project>/<run-id>-history:v0', type='wandb-history') artifact_dir = artifact.download() # 다운로드된 .parquet 파일 경로를 읽어옵니다. df = pd.read_parquet('<path to .parquet file>')
Was this page helpful?