Merge pull request 'feat/training_260324' (#190) from feat/training_260324 into develop

Reviewed-on: #190
This commit was merged in pull request #190.
This commit is contained in:
2026-04-03 16:05:07 +09:00
2 changed files with 5 additions and 5 deletions

View File

@@ -104,7 +104,7 @@ public class HyperParam {
@Schema(description = "Best 모델 선정 규칙", example = "less")
private String saveBestRule; // save_best_rule
@Schema(description = "검증 수행 주기(Epoch)", example = "10")
@Schema(description = "검증 수행 주기(Epoch)", example = "1")
private Integer valInterval; // val_interval
@Schema(description = "로그 기록 주기(Iteration)", example = "400")

View File

@@ -181,15 +181,15 @@ public class ModelHyperParamEntity {
private String metrics = "mFscore,mIoU";
/** Default: changed_fscore */
@Size(max = 100)
@Size(max = 50)
@NotNull
@Column(name = "save_best", nullable = false, length = 100)
@Column(name = "save_best", nullable = false, length = 50)
private String saveBest = "changed_fscore";
/** Default: greater */
@Size(max = 100)
@Size(max = 50)
@NotNull
@Column(name = "save_best_rule", nullable = false, length = 100)
@Column(name = "save_best_rule", nullable = false, length = 50)
private String saveBestRule = "greater";
/** Default: 1 */