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.
最近我开始使用 Neptune(通过Neptune Go)并希望有一个组织良好的实验历史。如何为给定的实验设置标签?(我是在运行之前还是之后?)
有四种方法可以为您的实验设置标签:
run/enqueue/exec
neptune run --tags tag1 tag2 tag3 tag4
tags: [tag1, tag2, tag3, tag4]
ctx.job.tags.append('new-tag')
因此,您可以在实验执行的每个阶段更改实验标签。
资料来源:
http://neptune.deepsense.io/versions/latest/reference-guides/cli.html#tags
http://neptune.deepsense.io/versions/latest/reference-guides/job-and-experiment.html#tags