Help us improve these docs. Take our quick survey.
with wandb.init(id="existing_run_id", resume="allow") as run: # アーティファクトを作成 artifact = wandb.Artifact("artifact_name", "artifact_type") # ファイルを追加 artifact.add_file("my_data/file.txt") # Run にアーティファクトをログとして記録 run.log_artifact(artifact)
Was this page helpful?