[KC-103] 추론 실행 배치 오류 수정
This commit is contained in:
@@ -19,7 +19,7 @@ public class InferenceProgressDto {
|
||||
private String cdModelClsPath;
|
||||
private String cdModelClsFileName;
|
||||
private String clsModelVersion;
|
||||
private Integer priority;
|
||||
private Double priority;
|
||||
|
||||
public InferenceProgressDto(
|
||||
InferenceProgressDto.pred_requests_areas pred_requests_areas,
|
||||
@@ -31,7 +31,7 @@ public class InferenceProgressDto {
|
||||
String cdModelClsPath,
|
||||
String cdModelClsFileName,
|
||||
String clsModelVersion,
|
||||
Integer priority) {
|
||||
Double priority) {
|
||||
this.pred_requests_areas = pred_requests_areas;
|
||||
this.modelVersion = modelVersion;
|
||||
this.cdModelPath = cdModelPath;
|
||||
|
||||
@@ -18,7 +18,7 @@ public class InferenceSendDto {
|
||||
private String cls_model_path;
|
||||
private String cls_model_version;
|
||||
private String cd_model_type;
|
||||
private Integer priority;
|
||||
private Double priority;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
|
||||
@@ -326,7 +326,7 @@ public class InferenceResultService {
|
||||
sendDto.setCls_model_path(cdClsModelPath);
|
||||
sendDto.setCls_model_version(modelInfo.getModelVer());
|
||||
sendDto.setCd_model_type(modelType);
|
||||
sendDto.setPriority(modelInfo.getPriority().intValue());
|
||||
sendDto.setPriority(modelInfo.getPriority());
|
||||
return sendDto;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user