我正在使用https://github.com/mlflow/mlflow-export-import将实验从本地mlruns/导出到RDS。然而,对于每一个新的进口实验,实验ID是不连续的。它是以前输入的所有运行和实验的总和。
例如:
ID 0: Default, 0 runs
ID 1: Experiment 1, 88 runs
ID 90: Experiment 2, 86 runs
ID 177: Experiment 3, 1 run
ID 179: Experiment 4, 10 runs由于无法设置实验id,所以有一种方法可以将mlflow导出导入代码更改为使用原始的实验id?或者,至少,对每个新导入的实验使用增量实验ids?
发布于 2022-09-20 16:31:40
实验ID由MLflow自动生成.没有设置或更改它们的API。在开源MLflow中,它们是单调递增的整数,在Databricks中,它们是UUID。
https://stackoverflow.com/questions/73787736
复制相似问题