모델관리 컬럼 추가된 내용 엔티티에 선언
This commit is contained in:
@@ -47,6 +47,9 @@ public class ModelMngEntity extends CommonDateEntity {
|
||||
@Column(name = "model_cntnt", columnDefinition = "TEXT")
|
||||
private String modelCntnt;
|
||||
|
||||
@Column(name = "bbone_ver")
|
||||
private String bboneVer;
|
||||
|
||||
public ModelMngEntity(
|
||||
String modelNm,
|
||||
String modelCate,
|
||||
|
||||
@@ -9,6 +9,10 @@ import jakarta.validation.constraints.Size;
|
||||
import lombok.Getter;
|
||||
import lombok.NoArgsConstructor;
|
||||
import lombok.Setter;
|
||||
import org.hibernate.annotations.JdbcTypeCode;
|
||||
import org.hibernate.type.SqlTypes;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
@@ -63,8 +67,34 @@ public class ModelVerEntity extends CommonDateEntity {
|
||||
@Column(name = "updated_uid")
|
||||
private Long updatedUid;
|
||||
|
||||
@Column(name = "deleted")
|
||||
private Boolean deleted = false;
|
||||
|
||||
@Column(name = "leaning_rate", columnDefinition = "float8[]")
|
||||
private Double[] leaningRate;
|
||||
|
||||
@Column(name = "batch_size", columnDefinition = "float8[]")
|
||||
private Double[] batchSize;
|
||||
|
||||
@Column(name = "dropout_rate", columnDefinition = "float8[]")
|
||||
private Double[] dropoutRate;
|
||||
|
||||
@Column(name = "number_of_filters", columnDefinition = "float8[]")
|
||||
private Double[] numberOfFilters;
|
||||
|
||||
@Column(name = "best_state")
|
||||
private String bestState;
|
||||
|
||||
@Column(name = "copy_state")
|
||||
private String copyState;
|
||||
|
||||
@Column(name = "hyper_params")
|
||||
@JdbcTypeCode(SqlTypes.JSON)
|
||||
private Map<String, Object> hyperParams;
|
||||
|
||||
@Column(name = "ver_cntnt", columnDefinition = "TEXT")
|
||||
private String verCntnt;
|
||||
|
||||
public ModelVerEntity(
|
||||
Long id,
|
||||
Long modelUid,
|
||||
|
||||
Reference in New Issue
Block a user