aim icon indicating copy to clipboard operation
aim copied to clipboard

Tags at run creation time?

Open Pibborn opened this issue 1 year ago • 2 comments

❓Question

Dear AIM community,

I have been wondering whether it's possible to create a run/experiment with a tag. This would be useful, for example, when you already know that you are running a single or multiple experiments that "belong together".

If there is an alternative functionality already implemented that can help me group together runs as I start them, I would be appreciative of any directions.

Thank you!

Pibborn avatar Jun 10 '24 08:06 Pibborn

Hey @Pibborn! You can use the add_tag method of the aim.Run object.

Here is a simple example:

from aim import Run
run = Run()
run.add_tag('some_tag_name')

mihran113 avatar Jun 11 '24 23:06 mihran113

Hi @Pibborn was the code helpful to you? 🙌

SGevorg avatar Jun 13 '24 16:06 SGevorg