Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for providing wandb run name. #1909

Open
JackUrb opened this issue Jan 17, 2025 · 0 comments
Open

Add support for providing wandb run name. #1909

JackUrb opened this issue Jan 17, 2025 · 0 comments
Labels
enhancement New feature or request

Comments

@JackUrb
Copy link

JackUrb commented Jan 17, 2025

At the moment, the logger functionality for wandb only sets the project name (based on the provided model). It would be useful to also allow us to set the run's name, as well as the group:

if logger_name == "wandb":
    run_name=kwargs.pop("run_name", os.environ.get("WANDB_RUN_NAME"))
    group=kwargs.pop("group", os.environ.get("WANDB_GROUP_NAME"))
    return WandbLogger(name=run_name, group=group, project=name, resume=resume, **kwargs)
@JackUrb JackUrb added the enhancement New feature or request label Jan 17, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant