Skip to content

Commit

Permalink
rename wandb output
Browse files Browse the repository at this point in the history
  • Loading branch information
niujinshuchong committed Dec 15, 2022
1 parent 8c0ef3b commit 5d360a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nerfstudio/utils/writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ class WandbWriter(Writer):
"""WandDB Writer Class"""

def __init__(self, log_dir: Path, experiment_name: str):
wandb.init(project="nerfstudio-project", name=experiment_name, dir=str(log_dir), reinit=True)
wandb.init(project="sdfstudio", name=experiment_name, dir=str(log_dir), reinit=True)

def write_image(self, name: str, image: TensorType["H", "W", "C"], step: int) -> None:
image = torch.permute(image, (2, 0, 1))
Expand Down

0 comments on commit 5d360a2

Please sign in to comment.