추론실행할때 회차 저장 제거
This commit is contained in:
@@ -24,7 +24,7 @@ import com.kamco.cd.kamcoback.postgres.entity.MapSheetAnalDataInferenceGeomEntit
|
|||||||
import com.kamco.cd.kamcoback.postgres.entity.MapSheetLearn5kEntity;
|
import com.kamco.cd.kamcoback.postgres.entity.MapSheetLearn5kEntity;
|
||||||
import com.kamco.cd.kamcoback.postgres.entity.MapSheetLearnEntity;
|
import com.kamco.cd.kamcoback.postgres.entity.MapSheetLearnEntity;
|
||||||
import com.kamco.cd.kamcoback.postgres.repository.Inference.InferenceResultRepository;
|
import com.kamco.cd.kamcoback.postgres.repository.Inference.InferenceResultRepository;
|
||||||
import com.kamco.cd.kamcoback.postgres.repository.Inference.InferenceResultsTetingRepository;
|
import com.kamco.cd.kamcoback.postgres.repository.Inference.InferenceResultsTestingRepository;
|
||||||
import com.kamco.cd.kamcoback.postgres.repository.Inference.MapSheetAnalDataInferenceRepository;
|
import com.kamco.cd.kamcoback.postgres.repository.Inference.MapSheetAnalDataInferenceRepository;
|
||||||
import com.kamco.cd.kamcoback.postgres.repository.Inference.MapSheetLearn5kRepository;
|
import com.kamco.cd.kamcoback.postgres.repository.Inference.MapSheetLearn5kRepository;
|
||||||
import com.kamco.cd.kamcoback.postgres.repository.Inference.MapSheetLearnRepository;
|
import com.kamco.cd.kamcoback.postgres.repository.Inference.MapSheetLearnRepository;
|
||||||
@@ -55,7 +55,7 @@ public class InferenceResultCoreService {
|
|||||||
private final MapInkx5kRepository mapInkx5kRepository;
|
private final MapInkx5kRepository mapInkx5kRepository;
|
||||||
private final MapSheetLearn5kRepository mapSheetLearn5kRepository;
|
private final MapSheetLearn5kRepository mapSheetLearn5kRepository;
|
||||||
private final InferenceResultRepository inferenceResultRepository;
|
private final InferenceResultRepository inferenceResultRepository;
|
||||||
private final InferenceResultsTetingRepository inferenceResultsTetingRepository;
|
private final InferenceResultsTestingRepository inferenceResultsTetingRepository;
|
||||||
private final EntityManager entityManager;
|
private final EntityManager entityManager;
|
||||||
private final UserUtil userUtil;
|
private final UserUtil userUtil;
|
||||||
|
|
||||||
@@ -277,8 +277,7 @@ public class InferenceResultCoreService {
|
|||||||
|
|
||||||
private void applyModelUpdate(MapSheetLearnEntity entity, SaveInferenceAiDto request) {
|
private void applyModelUpdate(MapSheetLearnEntity entity, SaveInferenceAiDto request) {
|
||||||
switch (request.getType()) {
|
switch (request.getType()) {
|
||||||
case "M1" ->
|
case "M1" -> applyModelFields(
|
||||||
applyModelFields(
|
|
||||||
request,
|
request,
|
||||||
entity::setM1ModelBatchId,
|
entity::setM1ModelBatchId,
|
||||||
entity::setM1ModelStartDttm,
|
entity::setM1ModelStartDttm,
|
||||||
@@ -287,8 +286,7 @@ public class InferenceResultCoreService {
|
|||||||
entity::setM1RunningJobs,
|
entity::setM1RunningJobs,
|
||||||
entity::setM1CompletedJobs,
|
entity::setM1CompletedJobs,
|
||||||
entity::setM1FailedJobs);
|
entity::setM1FailedJobs);
|
||||||
case "M2" ->
|
case "M2" -> applyModelFields(
|
||||||
applyModelFields(
|
|
||||||
request,
|
request,
|
||||||
entity::setM2ModelBatchId,
|
entity::setM2ModelBatchId,
|
||||||
entity::setM2ModelStartDttm,
|
entity::setM2ModelStartDttm,
|
||||||
@@ -297,8 +295,7 @@ public class InferenceResultCoreService {
|
|||||||
entity::setM2RunningJobs,
|
entity::setM2RunningJobs,
|
||||||
entity::setM2CompletedJobs,
|
entity::setM2CompletedJobs,
|
||||||
entity::setM2FailedJobs);
|
entity::setM2FailedJobs);
|
||||||
case "M3" ->
|
case "M3" -> applyModelFields(
|
||||||
applyModelFields(
|
|
||||||
request,
|
request,
|
||||||
entity::setM3ModelBatchId,
|
entity::setM3ModelBatchId,
|
||||||
entity::setM3ModelStartDttm,
|
entity::setM3ModelStartDttm,
|
||||||
|
|||||||
@@ -3,6 +3,8 @@ package com.kamco.cd.kamcoback.postgres.repository.Inference;
|
|||||||
import com.kamco.cd.kamcoback.postgres.entity.InferenceResultsTestingEntity;
|
import com.kamco.cd.kamcoback.postgres.entity.InferenceResultsTestingEntity;
|
||||||
import org.springframework.data.jpa.repository.JpaRepository;
|
import org.springframework.data.jpa.repository.JpaRepository;
|
||||||
|
|
||||||
public interface InferenceResultsTetingRepository
|
public interface InferenceResultsTestingRepository
|
||||||
extends JpaRepository<InferenceResultsTestingEntity, Long>,
|
extends JpaRepository<InferenceResultsTestingEntity, Long>,
|
||||||
InferenceResultsTetingRepositoryCustom {}
|
InferenceResultsTestingRepositoryCustom {
|
||||||
|
|
||||||
|
}
|
||||||
@@ -3,7 +3,7 @@ package com.kamco.cd.kamcoback.postgres.repository.Inference;
|
|||||||
import com.kamco.cd.kamcoback.postgres.entity.InferenceResultsTestingEntity;
|
import com.kamco.cd.kamcoback.postgres.entity.InferenceResultsTestingEntity;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public interface InferenceResultsTetingRepositoryCustom {
|
public interface InferenceResultsTestingRepositoryCustom {
|
||||||
|
|
||||||
List<InferenceResultsTestingEntity> getInferenceResultList(List<Long> batchIds);
|
List<InferenceResultsTestingEntity> getInferenceResultList(List<Long> batchIds);
|
||||||
}
|
}
|
||||||
@@ -11,7 +11,7 @@ import org.springframework.stereotype.Repository;
|
|||||||
@Repository
|
@Repository
|
||||||
@RequiredArgsConstructor
|
@RequiredArgsConstructor
|
||||||
public class InferenceResultsTestingRepositoryImpl
|
public class InferenceResultsTestingRepositoryImpl
|
||||||
implements InferenceResultsTetingRepositoryCustom {
|
implements InferenceResultsTestingRepositoryCustom {
|
||||||
|
|
||||||
private final JPAQueryFactory queryFactory;
|
private final JPAQueryFactory queryFactory;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user