wandb icon indicating copy to clipboard operation
wandb copied to clipboard

Allow renaming groups of completed runs

Open exalate-issue-sync[bot] opened this issue 6 years ago • 30 comments

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!

exalate-issue-sync[bot] avatar Jan 10 '20 18:01 exalate-issue-sync[bot]

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

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

issue-label-bot[bot] avatar Jan 10 '20 18:01 issue-label-bot[bot]

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.

Hyper5phere avatar Nov 04 '20 15:11 Hyper5phere

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

github-actions[bot] avatar Jan 04 '21 01:01 github-actions[bot]

+1

MartinHahner avatar Mar 18 '21 17:03 MartinHahner

+1

Pernicies27 avatar Apr 25 '21 09:04 Pernicies27

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.

igor0 avatar Dec 30 '21 18:12 igor0

+1 that would be very helpful.

wendlerc avatar Feb 17 '22 17:02 wendlerc

+1 this would be helpful

akbir avatar May 14 '22 17:05 akbir

+1

sofiapvcp avatar May 16 '22 14:05 sofiapvcp

+1

lexu27 avatar Aug 02 '22 20:08 lexu27

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

hmgxr128 avatar Aug 04 '22 00:08 hmgxr128

+1 would be super helpful to have this feature

abyaadrafid avatar Aug 13 '22 12:08 abyaadrafid

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.

martenlienen avatar Sep 05 '22 13:09 martenlienen

+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

rosewang2008 avatar Sep 05 '22 18:09 rosewang2008

Agreed, this would be very convenient.

rmitsch avatar Jan 04 '23 10:01 rmitsch

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

dishank-b avatar Jan 17 '23 10:01 dishank-b

+1

Cubism-star avatar Apr 19 '23 03:04 Cubism-star

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

martenlienen avatar Apr 19 '23 05:04 martenlienen

+1

theyorubayesian avatar May 09 '23 00:05 theyorubayesian

+1

chengjiali avatar Aug 22 '23 18:08 chengjiali

+1

NinaLong2077 avatar Nov 02 '23 03:11 NinaLong2077

+1

Rowing0914 avatar Nov 22 '23 00:11 Rowing0914

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()

Yasu31 avatar Dec 05 '23 08:12 Yasu31

+1

spfrommer avatar Jan 08 '24 22:01 spfrommer

any updates on this?

rish-av avatar Feb 23 '24 04:02 rish-av

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

ArtsiomWB avatar Mar 29 '24 17:03 ArtsiomWB

is there any update on this?

ionutmodo avatar May 16 '24 12:05 ionutmodo

Hey, @ionutmodo. No updates yet.

ArtsiomWB avatar May 16 '24 14:05 ArtsiomWB

+1 for adding the feature to the web UI. The workaround posted in https://github.com/wandb/wandb/issues/753#issuecomment-1237001377 solves the immediate need, though.

01tot10 avatar May 20 '24 08:05 01tot10

+1

OliEfr avatar May 27 '24 08:05 OliEfr