|
@@ -21,15 +21,20 @@ public class CreateTargetIdentificationTaskDto {
|
|
|
// 任务类型 target_identification_task_type 单数据多算法任务:1,多数据单算法任务:2
|
|
|
private String taskType;
|
|
|
|
|
|
- // 测试项 target_identification_task_item 1训练,2测试
|
|
|
+ // 算法任务 target_identification_task_item 1训练,2测试
|
|
|
private List<String> taskItemList;
|
|
|
|
|
|
+ // 选择算法
|
|
|
private List<TaskDto> algTaskList;
|
|
|
- //训练数据 "批次号1.批次号2"
|
|
|
+ //训练数据 ["批次号1,批次号2","批次号3,批次号4","批次号1,批次号3"]
|
|
|
private List<String> trainBatchNumList;
|
|
|
|
|
|
- //训练数据 "批次号1.批次号2"
|
|
|
+ //训练数据 ["批次号1,批次号2","批次号3,批次号4","批次号1,批次号3"]
|
|
|
private List<String> testBatchNumList;
|
|
|
|
|
|
+ // 是否训练扩增
|
|
|
private Boolean hasTrainAugmentation;
|
|
|
+
|
|
|
+ // 训练扩增的超参
|
|
|
+ private String trainAugmentationParams;
|
|
|
}
|