라벨링작업 관리 목록조회 수정

This commit is contained in:
2026-01-05 10:37:17 +09:00
parent 6a77d0f447
commit 88cf9a4487
2 changed files with 8 additions and 5 deletions

View File

@@ -39,13 +39,15 @@ public class InferenceResultRepositoryImpl implements InferenceResultRepositoryC
compare_yyyy,
target_yyyy,
stage,
anal_title
anal_title,
detecting_cnt
)
SELECT
r.input1 AS compare_yyyy,
r.input2 AS target_yyyy,
r.stage,
CONCAT(r.stage ,'_', r.input1 ,'_', r.input2) AS anal_title
CONCAT(r.stage ,'_', r.input1 ,'_', r.input2) AS anal_title,
count(*)
FROM inference_results r
GROUP BY r.stage, r.input1, r.input2;
""";