feat/training_260202 #136

Merged
teddy merged 5 commits from feat/training_260202 into develop 2026-02-24 15:11:12 +09:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 97192ff811 - Show all commits

View File

@@ -95,7 +95,7 @@ public class ModelTrainMngService {
modelTrainMngCoreService.saveModelConfig(modelId, req.getModelConfig());
// 임시파일 생성
trainJobService.createTmpFile(modelUuid);
// trainJobService.createTmpFile(modelUuid);
return modelUuid;
}

View File

@@ -108,7 +108,7 @@ public class ModelTrainMngCoreService {
hyperParamEntity.setTotalUseCnt(
hyperParamEntity.getTotalUseCnt() == null ? 1 : hyperParamEntity.getTotalUseCnt() + 1);
// 마지막 사용 시간 업데이트
// 최근 사용일시 업데이트
hyperParamEntity.setLastUsedDttm(ZonedDateTime.now());
String modelVer =