-
Notifications
You must be signed in to change notification settings - Fork 335
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Aim crashes after trying to add duplicate tag to run #3277
Labels
Comments
Hey @feldlime! Thanks for opening the issue. I was just trying out this on my end and it works properly. Can I ask you to upgrade to the latest version (3.27.0) and check again? |
Still happens for me on 3.27.0. Minimal example (basically same as above): #!/usr/bin/env python
import aim
run = aim.Run(repo=".")
run.add_tag("some_tag")
run.add_tag("some_tag") Full log
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
🐛 Bug
When trying to add the same tag to a run, it fails as expected (but the error is not clear at all).
After this, it's impossible to create another run, it fails with SQLite error.
To reproduce
Part 1
This fails with
TypeError: __init__() missing 2 required positional arguments: 'params' and 'orig'
Part 2
After this basic run creation
fails with error
Expected behavior
In Part 1 expected a clear error like
the tag is already present in the run
and no error after this.Environment
The text was updated successfully, but these errors were encountered: