This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
ci4s
/
ci4sManagement-cloud
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
1
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
fix: 集成模型数量>=1
pull/245/head
zhaowei
10 months ago
parent
34e2b8bb05
commit
65c588ac8a
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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>
Write
Preview
Loading…
Cancel
Save