|
|
|
@@ -6,7 +6,7 @@ |
|
|
|
per_run_time_limit, ensemble_size, ensemble_class, ensemble_nbest, max_models_on_disc, seed, |
|
|
|
memory_limit, |
|
|
|
include_classifier, include_feature_preprocessor, include_regressor, exclude_classifier, |
|
|
|
exclude_regressor, exclude_feature_preprocessor, resampling_strategy, train_size, |
|
|
|
exclude_regressor, exclude_feature_preprocessor, test_size, resampling_strategy, train_size, |
|
|
|
shuffle, folds, data_csv, target_columns, metric_name, metrics,greater_is_better,scoring_functions,tmp_folder, |
|
|
|
create_by,update_by) |
|
|
|
values (#{autoMl.mlName}, #{autoMl.mlDescription}, #{autoMl.taskType}, #{autoMl.datasetName}, |
|
|
|
@@ -15,7 +15,7 @@ |
|
|
|
#{autoMl.maxModelsOnDisc}, #{autoMl.seed}, |
|
|
|
#{autoMl.memoryLimit}, #{autoMl.includeClassifier}, #{autoMl.includeFeaturePreprocessor}, |
|
|
|
#{autoMl.includeRegressor}, #{autoMl.excludeClassifier}, |
|
|
|
#{autoMl.excludeRegressor}, #{autoMl.excludeFeaturePreprocessor}, #{autoMl.resamplingStrategy}, |
|
|
|
#{autoMl.excludeRegressor}, #{autoMl.excludeFeaturePreprocessor}, #{autoMl.testSize}, #{autoMl.resamplingStrategy}, |
|
|
|
#{autoMl.trainSize}, #{autoMl.shuffle}, |
|
|
|
#{autoMl.folds}, #{autoMl.dataCsv}, |
|
|
|
#{autoMl.targetColumns}, #{autoMl.metricName}, #{autoMl.metrics},#{autoMl.greaterIsBetter},#{autoMl.scoringFunctions},#{autoMl.tmpFolder}, |
|
|
|
@@ -85,6 +85,9 @@ |
|
|
|
<if test="autoMl.excludeFeaturePreprocessor != null and autoMl.excludeFeaturePreprocessor !=''"> |
|
|
|
exclude_feature_preprocessor = #{autoMl.excludeFeaturePreprocessor}, |
|
|
|
</if> |
|
|
|
<if test="autoMl.testSize != null and autoMl.testSize !=''"> |
|
|
|
test_size = #{autoMl.testSize}, |
|
|
|
</if> |
|
|
|
<if test="autoMl.resamplingStrategy != null and autoMl.resamplingStrategy !=''"> |
|
|
|
resampling_strategy = #{autoMl.resamplingStrategy}, |
|
|
|
</if> |
|
|
|
|