aim
aim copied to clipboard
Tags at run creation time?
❓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!
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')
Hi @Pibborn was the code helpful to you? 🙌