Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试运行一个脚本,并且在 allegro.ai 中克隆实验时不断得到这个 AttributeError: 'Namespace' object has no attribute 'get' 有人可以帮忙吗?
免责声明我是 Allegro Trains 团队的一员 :)
你到底在哪里得到错误?Python 还是 Web 用户界面?
要从代码中克隆任务(实验),您可以执行以下操作:
from trains import Task my_cloned_task = Task.clone(source_task='aabbcc112233')
这task_id是您要克隆的任务(实验)的 UID。要获取实验 ID,请转到 Web UI,在实验信息面板中,在实验名称右侧,按“ID”按钮,您将看到任务的 ID。
task_id