feat/training_260324 #190
@@ -104,7 +104,7 @@ public class HyperParam {
|
|||||||
@Schema(description = "Best 모델 선정 규칙", example = "less")
|
@Schema(description = "Best 모델 선정 규칙", example = "less")
|
||||||
private String saveBestRule; // save_best_rule
|
private String saveBestRule; // save_best_rule
|
||||||
|
|
||||||
@Schema(description = "검증 수행 주기(Epoch)", example = "10")
|
@Schema(description = "검증 수행 주기(Epoch)", example = "1")
|
||||||
private Integer valInterval; // val_interval
|
private Integer valInterval; // val_interval
|
||||||
|
|
||||||
@Schema(description = "로그 기록 주기(Iteration)", example = "400")
|
@Schema(description = "로그 기록 주기(Iteration)", example = "400")
|
||||||
|
|||||||
@@ -181,15 +181,15 @@ public class ModelHyperParamEntity {
|
|||||||
private String metrics = "mFscore,mIoU";
|
private String metrics = "mFscore,mIoU";
|
||||||
|
|
||||||
/** Default: changed_fscore */
|
/** Default: changed_fscore */
|
||||||
@Size(max = 100)
|
@Size(max = 50)
|
||||||
@NotNull
|
@NotNull
|
||||||
@Column(name = "save_best", nullable = false, length = 100)
|
@Column(name = "save_best", nullable = false, length = 50)
|
||||||
private String saveBest = "changed_fscore";
|
private String saveBest = "changed_fscore";
|
||||||
|
|
||||||
/** Default: greater */
|
/** Default: greater */
|
||||||
@Size(max = 100)
|
@Size(max = 50)
|
||||||
@NotNull
|
@NotNull
|
||||||
@Column(name = "save_best_rule", nullable = false, length = 100)
|
@Column(name = "save_best_rule", nullable = false, length = 50)
|
||||||
private String saveBestRule = "greater";
|
private String saveBestRule = "greater";
|
||||||
|
|
||||||
/** Default: 1 */
|
/** Default: 1 */
|
||||||
|
|||||||
Reference in New Issue
Block a user