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

Allow renaming groups of completed runs #753

Open
exalate-issue-sync bot opened this issue Jan 10, 2020 · 35 comments · Fixed by #2162
Open

Allow renaming groups of completed runs #753

exalate-issue-sync bot opened this issue Jan 10, 2020 · 35 comments · Fixed by #2162
Labels
a:app Area: Frontend/Backend

Comments

@exalate-issue-sync
Copy link

Is there any way to move a 'run' to another 'group' or changing the name of 'group'? I mistakenly set wrong group name for a run but couldn't find how to fix it!

@issue-label-bot
Copy link

Issue-Label Bot is automatically applying the label enhancement to this issue, with a confidence of 0.60. Please mark this comment with 👍 or 👎 to give our bot feedback!

Links: app homepage, dashboard and code for this bot.

@Hyper5phere
Copy link

I think this would be a very useful thing to have. It would be absurd to request the user the rerun his/her multiple days long training session just to get the grouping right. Some people want to keep things well organised, which is likely the very reason they started using wandb in the first place.

@github-actions
Copy link
Contributor

github-actions bot commented Jan 4, 2021

This issue is stale because it has been open 60 days with no activity.

@MartinHahner
Copy link

+1

1 similar comment
@Pernicies27
Copy link

+1

@igor0
Copy link

igor0 commented Dec 30, 2021

The feature as implemented in CLI-133 seems to be helpful, but doesn't work if a group is unassigned (<None>). I didn't set a group during the original run, and now I'm not able to change the group either via UI or API.

@wendlerc
Copy link

+1 that would be very helpful.

@akbir
Copy link

akbir commented May 14, 2022

+1 this would be helpful

@sofiapvcp
Copy link

+1

1 similar comment
@lexu27
Copy link

lexu27 commented Aug 2, 2022

+1

@hmgxr128
Copy link

hmgxr128 commented Aug 4, 2022

+1. I usually want to reorganize my runs after it has been launched.

@abyaadrafid
Copy link

+1 would be super helpful to have this feature

@martenlienen
Copy link

martenlienen commented Sep 5, 2022

A manual workaround:

import wandb
api = wandb.Api()
for r in api.runs("<user>/<project>", filters={"group": "<wrong-group>"}):
    r.group = "<group-you-actually-wanted>"
    r.update()

But it would still be great to have an option in the wandb UI for this.

@rosewang2008
Copy link

rosewang2008 commented Sep 5, 2022

+1, and it would very useful if one could 'check' runs, and then move them to a different group in the wandb UI.

Screen Shot 2022-09-05 at 11 09 51 AM

@rmitsch
Copy link

rmitsch commented Jan 4, 2023

Agreed, this would be very convenient.

@dishank-b
Copy link

is there update on this? This issue has been there for so long.

@Cubism-star
Copy link

+1

@martenlienen
Copy link

You might want to open a new issue for this. Since this has been closed, likely nobody is paying attention.

@theyorubayesian
Copy link

+1

@chengjiali
Copy link

+1

2 similar comments
@NinaLong2077
Copy link

+1

@Rowing0914
Copy link

+1

@Yasu31
Copy link

Yasu31 commented Dec 5, 2023

A manual workaround:

import wandb
api = wandb.Api()
for r in api.runs("<user>/<project>", filters={"group": "<wrong-group>"}):
    r.group = "<group-you-actually-wanted>"
    r.update()

But it would still be great to have an option in the wandb UI for this.

I modified it so that you can target specific runs:

import wandb
api = wandb.Api()
specific_run_names = ["<my_run_1>",  "<my_run_2>"]
for r in api.runs("<user>/<project>"):
    if r.name in specific_run_names:
        print(f"Updating {r.name}")
        r.group = "<group-you-actually-wanted>"
        r.update()

@spfrommer
Copy link

+1

@wandb wandb deleted a comment from wandb-kc Mar 29, 2024
@wandb wandb deleted a comment from wandb-kc Mar 29, 2024
@wandb wandb deleted a comment from wandb-kc Mar 29, 2024
@wandb wandb deleted a comment from wandb-kc Mar 29, 2024
@wandb wandb deleted a comment from wandb-kc Mar 29, 2024
@wandb wandb deleted a comment from wandb-kc Mar 29, 2024
@wandb wandb deleted a comment from wandb-kc Mar 29, 2024
@wandb wandb deleted a comment from wandb-kc Mar 29, 2024
@wandb wandb deleted a comment from wandb-kc Mar 29, 2024
@wandb wandb deleted a comment from wandb-kc Mar 29, 2024
@wandb wandb deleted a comment from wandb-kc Mar 29, 2024
@wandb wandb deleted a comment from wandb-kc Mar 29, 2024
@wandb wandb deleted a comment from wandb-kc Mar 29, 2024
@wandb wandb deleted a comment from wandb-kc Mar 29, 2024
@wandb wandb deleted a comment from wandb-kc Mar 29, 2024
@ArtsiomWB
Copy link
Contributor

Hey guys, clearly there is still tons of demand for this feature. I will retriage it with our engineering team, and will bump the priority on it for ou

@kptkin kptkin added a:app Area: Frontend/Backend a:sdk Area: sdk related issues c:sdk:public-api Component: All the issues that relate to wandb.Api with the exception of the public api of Artifacts labels Mar 30, 2024
@ionutmodo
Copy link

is there any update on this?

@ArtsiomWB
Copy link
Contributor

Hey, @ionutmodo. No updates yet.

@01tot10
Copy link

01tot10 commented May 20, 2024

+1 for adding the feature to the web UI. The workaround posted in #753 (comment) solves the immediate need, though.

@OliEfr
Copy link

OliEfr commented May 27, 2024

+1

@kfu02
Copy link

kfu02 commented May 30, 2024

+1 This would be helpful

@JuanFMontesinos
Copy link

Add this feat!

@dddraxxx
Copy link

dddraxxx commented Aug 6, 2024

+1 for this feat!

@lexu27
Copy link

lexu27 commented Aug 14, 2024

+1

@kptkin kptkin removed a:sdk Area: sdk related issues c:sdk:public-api Component: All the issues that relate to wandb.Api with the exception of the public api of Artifacts labels Sep 18, 2024
@mahdi7
Copy link

mahdi7 commented Sep 20, 2024

+1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
a:app Area: Frontend/Backend
Projects
None yet
Development

Successfully merging a pull request may close this issue.