한국어
W&B 계정 없이 데이터 를 기록하고 시각화하세요.
import wandb wandb.init(anonymous="allow")
import wandb run = wandb.init(anonymous="allow") artifact = wandb.Artifact(name="art1", type="foo") artifact.add_file(local_path="path/to/file") run.log_artifact(artifact) run.finish()
이 페이지가 도움이 되었나요?