Browse Source

fix: 集成模型数量>=1

pull/245/head
zhaowei 10 months ago
parent
commit
65c588ac8a
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      react-ui/src/pages/AutoML/components/CreateForm/ExecuteConfig.tsx

+ 2
- 2
react-ui/src/pages/AutoML/components/CreateForm/ExecuteConfig.tsx View File

@@ -286,9 +286,9 @@ function ExecuteConfig() {
<Form.Item
label="集成模型数量"
name="ensemble_size"
tooltip="集成模型数量,如果设置为0,则没有集成。默认50"
tooltip="集成模型数量,必须是大于等于1的整数,默认50"
>
<InputNumber placeholder="请输入集成模型数量" min={0} precision={0} />
<InputNumber placeholder="请输入集成模型数量" min={1} precision={0} />
</Form.Item>
</Col>
</Row>


Loading…
Cancel
Save