|
|
|
@@ -534,7 +534,7 @@ public class ExperimentServiceImpl implements ExperimentService { |
|
|
|
for (int i = 0; i < jsonArray.size(); i++) { |
|
|
|
JSONObject jsonObject = jsonArray.getJSONObject(i); |
|
|
|
String paramName = jsonObject.getString("param_name"); |
|
|
|
Double paramValue = jsonObject.getDouble("param_value"); |
|
|
|
Object paramValue = jsonObject.get("param_value"); |
|
|
|
trainParam.put(paramName, paramValue); |
|
|
|
} |
|
|
|
modelMetaVo.setParams(trainParam); |
|
|
|
|