I'm trying to run a script and I'm constantly getting this while cloning experiment in allegro.ai AttributeError: 'Namespace' object has no attribute 'get' Can anybody help?
Asked
Active
Viewed 32 times
0
-
Please refer to this solution : https://stackoverflow.com/questions/28422883/attributeerror-namespace-object-has-no-attribute – s3nh Jun 26 '20 at 09:37
-
Does this answer your question? [AttributeError: 'Namespace' object has no attribute](https://stackoverflow.com/questions/28422883/attributeerror-namespace-object-has-no-attribute) – Lau Jun 26 '20 at 10:58
1 Answers
0
Disclaimer I'm part of the Allegro Trains Team :)
Where exactly are you getting the error ? Python or Web UI?
To clone a Task (experiment) from code this is what you can do:
from trains import Task
my_cloned_task = Task.clone(source_task='aabbcc112233')
The task_id
is the UID of the task (experiment) you want to clone. To get an experiment ID, go to the web UI , in the experiment info panel, to the right of the experiment name, press on the "ID" button and you will see the ID of the Task.

Martin.B
- 599
- 3
- 9