"""Register the reproduction outputs as trackio artifacts so `logbook publish` uploads the real files to the logbook's HF Bucket (not just path references).""" import os import trackio os.chdir(os.path.dirname(os.path.abspath(__file__))) trackio.init(project="vla-mbpo-repro", name="artifacts") trackio.log_artifact("outputs/claim3", name="claim3-value-gap", type="dataset") trackio.log_artifact("outputs/claims45", name="claims45-audit", type="dataset") # the bundle: scripts + paper text + results (exclude the big PDF and caches) trackio.log_artifact("outputs", name="repro-outputs", type="dataset") trackio.finish() print("registered artifacts")