추론 배치 다음 모델 실행할때 파라미터 log 추가
This commit is contained in:
@@ -4,12 +4,14 @@ import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
import lombok.NoArgsConstructor;
|
||||
import lombok.Setter;
|
||||
import lombok.ToString;
|
||||
|
||||
/** AI API 추론 실행 DTO */
|
||||
@Getter
|
||||
@Setter
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@ToString
|
||||
public class InferenceSendDto {
|
||||
|
||||
private pred_requests_areas pred_requests_areas;
|
||||
@@ -25,6 +27,7 @@ public class InferenceSendDto {
|
||||
@Setter
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
@ToString
|
||||
public static class pred_requests_areas {
|
||||
|
||||
private Integer input1_year;
|
||||
|
||||
@@ -369,6 +369,7 @@ public class MapSheetInferenceJobService {
|
||||
m.setCd_model_type(inferenceType);
|
||||
m.setPriority(progressDto.getPriority());
|
||||
|
||||
log.info("InferenceSendDto={}", m);
|
||||
// 추론 실행 api 호출
|
||||
Long batchId = ensureAccepted(m);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user