aimhubio / aim

Aim 💫 — An easy-to-use & supercharged open-source experiment tracker.
https://aimstack.io
Apache License 2.0
5.16k stars 316 forks source link

Tags at run creation time? #3160

Open Pibborn opened 3 months ago

Pibborn commented 3 months ago

❓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!

mihran113 commented 3 months ago

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')
SGevorg commented 3 months ago

Hi @Pibborn was the code helpful to you? 🙌