aim icon indicating copy to clipboard operation
aim copied to clipboard

Dummy runs management

Open gormat opened this issue 2 years ago • 10 comments

Guys this tool is amazing. Can you please add functionality to select dummy runs? An easy way to remove all dummy runs.

gormat avatar Dec 16 '21 11:12 gormat

Thanks for the feedback!

gorarakelyan avatar Dec 16 '21 11:12 gorarakelyan

Will add to the roadmap.

gorarakelyan avatar Dec 16 '21 11:12 gorarakelyan

relates to https://github.com/aimhubio/aim/issues/1170

roubkar avatar Jan 18 '22 19:01 roubkar

Hey @gormat, the ability to remove runs has been added with v3.4.0.

As for selecting/querying/filtering dummy runs, I think this issue relates to: https://github.com/aimhubio/aim/issues/1215

roubkar avatar Jan 25 '22 11:01 roubkar

@roubkar what's the state of this issue?

SGevorg avatar Apr 28 '22 16:04 SGevorg

Hey @SGevorg, we have added the ability to remove runs in v3.4.0. As for providing the ability to select dummy runs (e.g. select all runs that performed less than 100 steps) we haven't fully explored this yet.

roubkar avatar Apr 29 '22 07:04 roubkar

Hey @gormat, we have released v3.12.0 where we have introduced a new run.duration field, upgrade aim to use it: pip install aim --upgrade. Now you can filter runs by their duration (e.g. run.duration < 60 * 10 (10 minutes))

Will this resolve your issue?

roubkar avatar Jul 25 '22 20:07 roubkar

@roubkar Hi guys I run into similar issue. I have different metrics with different steps. I can't simply filtering by duration.

I think it would be great if we could use metric['metric_name'].step/epoch > 1000 something like this

spacegoing avatar Sep 15 '23 09:09 spacegoing

do we have a workaround for this?

spacegoing avatar Sep 15 '23 09:09 spacegoing

Hey @spacegoing! You can filter runs based on the metric's last_step value. Here is an example for that:

run.metrics['name', {"some": "context"}].last_step > 1000

You can also check out the documentation for more details: https://aimstack.readthedocs.io/en/latest/using/search.html

mihran113 avatar Sep 15 '23 14:09 mihran113