Why are steps missing from a CSV metric export?
Support:
less than a minute
내보내기 제한으로 인해 전체 run 이력은 CSV로 내보내거나 run.history
API를 사용하여 내보낼 수 없습니다. 전체 run 이력에 엑세스하려면 Parquet 형식을 사용하여 run 이력 아티팩트를 다운로드하세요.
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>')
피드백
이 페이지가 도움이 되었나요?
Glad to hear it! If you have further feedback, please let us know.
Sorry to hear that. Please tell us how we can improve.