라벨링툴 탐지분류 명칭 추가

This commit is contained in:
2026-02-06 16:46:04 +09:00
parent 5377294e6e
commit cf6b1323d8
4 changed files with 22 additions and 2 deletions

View File

@@ -373,9 +373,12 @@ public class TrainingDataLabelDto {
@AllArgsConstructor
public static class ClassificationInfo {
@Schema(description = "분류", example = "일반토지")
@Schema(description = "분류", example = "land")
private String classification;
@Schema(description = "분류 한글명", example = "일반토지")
private String classificationName;
@Schema(description = "확률", example = "80.0")
private Double probability;
}

View File

@@ -369,9 +369,12 @@ public class TrainingDataReviewDto {
@AllArgsConstructor
public static class ClassificationInfo {
@Schema(description = "분류", example = "일반토지")
@Schema(description = "분류", example = "land")
private String classification;
@Schema(description = "분류한글명", example = "일반토지")
private String classificationName;
@Schema(description = "확률", example = "80.0")
private Double probability;
}