test 실행 시 회차별 데이터 적재하기

This commit is contained in:
2026-02-19 18:18:12 +09:00
parent 2034a8fcb2
commit 46db1512a6
5 changed files with 75 additions and 0 deletions

View File

@@ -54,6 +54,9 @@ public class TestJobService {
// step2 시작으로 마킹
modelTrainMngCoreService.markStep2InProgress(modelId, jobId);
// test training run 테이블에 적재하기
modelTrainJobCoreService.insertModelTestTrainingRun(modelId, jobId, epoch);
eventPublisher.publishEvent(new ModelTrainJobQueuedEvent(jobId));
return jobId;
}