简体   繁体   中英

Does clone experiment work on sklearn functions?

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?

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM