Browse Source

优化自动机器学习

pull/225/head
chenzhihang 11 months ago
parent
commit
938a72bbc4
1 changed files with 1 additions and 3 deletions
  1. +1
    -3
      ruoyi-modules/management-platform/src/main/resources/mapper/managementPlatform/AutoMlDao.xml

+ 1
- 3
ruoyi-modules/management-platform/src/main/resources/mapper/managementPlatform/AutoMlDao.xml View File

@@ -78,6 +78,7 @@
exclude_feature_preprocessor = #{autoMl.excludeFeaturePreprocessor},
scoring_functions = #{autoMl.scoringFunctions},
metrics = #{autoMl.metrics},
metric_name = #{autoMl.metricName},
<if test="autoMl.testSize != null and autoMl.testSize !=''">
test_size = #{autoMl.testSize},
</if>
@@ -96,9 +97,6 @@
<if test="autoMl.tmpFolder != null and autoMl.tmpFolder !=''">
tmp_folder = #{autoMl.tmpFolder},
</if>
<if test="autoMl.metricName != null and autoMl.metricName !=''">
metric_name = #{autoMl.metricName},
</if>
<if test="autoMl.greaterIsBetter != null">
greater_is_better = #{autoMl.greaterIsBetter},
</if>


Loading…
Cancel
Save