fix(repo): 웹 서비스 테스트에서 발견한 오류 개선 [#100]#109
Merged
Merged
Conversation
- 고립된 역전 단어는 앞뒤 정상 단어를 기준으로 보정합니다. - 여러 고립 이상치도 모두 보정합니다. - 첫·마지막 단어, 연속 역전, 겹친 인접 경계는 비재시도 오류로 실패합니다. - 보정 시 원본값·보정값을 경고 로그로 남깁니다. - 보정 불가 시 인접값과 실패 사유를 오류 로그로 남깁니다. - 외부 응답 형식은 변경하지 않았습니다.
Fix(pipeline worker ) stt model(chirp3) 20min word time stamp limit 해결 [#100]
Fix/100 3 failure visibility
fix(repo): 검색과 영상 임베딩의 슬롯 경합을 완화 [#100]
Closed
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



요약
웹 서비스를 배포하고 실제로 써보면서 발견한 오류들을 정리한다.
문제는 크게 세 갈래였다.
세 갈래를 각각 하위 브랜치에서 처리하고 이 브랜치로 통합했다.
이슈 항목별 처리
주요 작업 단위
1. STT 장시간 오디오 분할 처리 (#102)
대안이던 long(V2) 모델은 같은 29분 56초 오디오에서 417.97초가 걸리고 인식 정확도도 낮아
(
이산수학→계산 수학) 채택하지 않았다. 분할 방식은 106.12초였다.2. 임베딩 슬롯 경합 완화 (#108)
3. 실패 사유 저장과 표시 (#107)
failure_code·failure_trace_id추가. 실패 원인이 로그에만 남고 사라지던 문제 해결/complete재호출로 큐 발행 실패를 복구검증
SOURCE_UNAVAILABLE·AUDIO_EXTRACTION_FAILED표시, 상태 자동 전환 확인이월 항목
이번 범위에서 처리하지 않았고, 별도 이슈로 옮긴다.
이슈
Closes #100