|
|
|
@@ -557,6 +557,13 @@ public class ExperimentServiceImpl implements ExperimentService { |
|
|
|
|
|
|
|
//处理指标 |
|
|
|
HashMap<String, Object> metricMap = JSON.parseObject(metricRecord, HashMap.class); |
|
|
|
for (Map.Entry<String, Object> metric : metricMap.entrySet()) { |
|
|
|
if (YamlUtils.isNumeric(String.valueOf(metric.getValue()))) { |
|
|
|
BigDecimal bigDecimal = new BigDecimal(String.valueOf(metric.getValue())); |
|
|
|
metric.setValue(bigDecimal); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
modelMetaVo.setMetrics(metricMap); |
|
|
|
|
|
|
|
//训练数据集 |
|
|
|
|