forked from kastnerkyle/multi-speaker-tacotron-tensorflow
-
Notifications
You must be signed in to change notification settings - Fork 341
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
list index out of range 오류 #60
Comments
자답입니다. NB11740377 를 추가로 recognition.json에서 제거하면 됩니다. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
우분투 18.04LTS 환경에서
prepare_son.sh을 이용해 데이터를 받고 있었습니다.
Download and extract audio and texts
python -m datasets.jtbc.download
Split audios on silence
python -m audio.silence --audio_pattern "./datasets/jtbc/audio/*.wav" --method=pydub
Run Google Speech Recognition
python -m recognition.google --audio_pattern "./datasets/jtbc/audio/..wav"
3번까지는 진행할때는 오류가 간혹 나서 중지되기는 하였으나 계속 재 진행하니 어찌어찌 3번까지 완료가 되었습니다.
codec오류도 utils/init.py의 89번째 줄의 encoding=encoding을 encoding='UTF-8'로 바꾸고 recognition/alignment.py의 106번째 줄의 'cp949'를 'UTF-8'로 바꾸어서 해결하였습니다.
하지만
python -m recognition.alignment --recognition_path "./datasets/son/recognition.json" --score_threshold=0.5
4번을 실행하면 list index out of range 오류가 발생하여 해결되지 않고 있습니다.
sorted score[1]을 sorted score[0]로 수정할 경우 문제가 있다고 하여서 이것은 수정하지 않고 recognition.json 에서 다음 부분을 삭제 하여서 진행하였습니다.
NB11653121
NB11663681
NB11684780
NB11702006
NB11722589
그런데도 계속 동일한 오류가 발생하여서 원인을 모르겠습니다. 더 삭제해야하는 것이 있나요?
The text was updated successfully, but these errors were encountered: