Browse Source

主动学习实验功能开发

dev-active_learn
chenzhihang 11 months ago
parent
commit
43b78810ba
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/domain/ActiveLearn.java
  2. +2
    -2
      ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/vo/ActiveLearnVo.java

+ 1
- 1
ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/domain/ActiveLearn.java View File

@@ -44,7 +44,7 @@ public class ActiveLearn {
@ApiModelProperty(value = "stopping_criterion为percent_of_unlabel时传入,未标记比例") @ApiModelProperty(value = "stopping_criterion为percent_of_unlabel时传入,未标记比例")
private Double percentOfUnlabel; private Double percentOfUnlabel;


@ApiModelProperty(value = "stopping_criterion为percent_of_unlabel时传入,时间限制")
@ApiModelProperty(value = "stopping_criterion为time_limit时传入,时间限制")
private Double timeLimit; private Double timeLimit;


@ApiModelProperty(value = "查询策略") @ApiModelProperty(value = "查询策略")


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

@@ -47,10 +47,10 @@ public class ActiveLearnVo {
@ApiModelProperty(value = "stopping_criterion为percent_of_unlabel时传入,未标记比例") @ApiModelProperty(value = "stopping_criterion为percent_of_unlabel时传入,未标记比例")
private Double percentOfUnlabel; private Double percentOfUnlabel;


@ApiModelProperty(value = "stopping_criterion为percent_of_unlabel时传入,时间限制")
@ApiModelProperty(value = "stopping_criterion为time_limit时传入,时间限制")
private Double timeLimit; private Double timeLimit;


@ApiModelProperty(value = "查询策略:Uncertainty,QBC,Random,GraphDensity")
@ApiModelProperty(value = "查询策略:Uncertainty(不确定性),QBC(委员会查询),Random(随机),GraphDensity(图密度)")
private String queryStrategy; private String queryStrategy;


@ApiModelProperty(value = "实验次数") @ApiModelProperty(value = "实验次数")


Loading…
Cancel
Save