라벨링작업 관리 목록조회 수정
This commit is contained in:
@@ -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;
|
||||
""";
|
||||
|
||||
Reference in New Issue
Block a user