Notice: The Weights & Biases domain will change on September 30. This includes all websites and services that use a W&B domain. No action is needed today.
Export limits can prevent you from exporting the entire run history as a CSV or with the run.history API. To access the complete run history, download the run history artifact in Parquet format:
import wandbimport pandas as pdrun = 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>')