Browse Source

自动超参数寻优实验功能开发

dev-ray
chenzhihang 1 year ago
parent
commit
4358c6b3e2
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/vo/RayVo.java

+ 2
- 2
ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/vo/RayVo.java View File

@@ -48,10 +48,10 @@ public class RayVo {
@ApiModelProperty(value = "指标最大化或最小化,min or max")
private String mode;

@ApiModelProperty(value = "单次试验最大时间:单位秒,搜索算法为ASHA,HyperBand时传入,每次试验的最大时间单位。测试将在max_t时间单位后停止。")
@ApiModelProperty(value = "单次试验最大时间:单位秒,调度算法为ASHA,HyperBand时传入,每次试验的最大时间单位。测试将在max_t时间单位后停止。")
private Integer maxT;

@ApiModelProperty(value = "计算中位数的最小试验数:搜索算法为MedianStopping时传入,计算中位数的最小试验数。")
@ApiModelProperty(value = "计算中位数的最小试验数:调度算法为MedianStopping时传入,计算中位数的最小试验数。")
private Integer minSamplesRequired;

@ApiModelProperty(value = "使用cpu数")


Loading…
Cancel
Save