python(2)
-
TensorflowTTS 한국어 예제 써보기 (KSS dataset)
참고 TensorflowTTS github https://github.com/TensorSpeech/TensorFlowTTS colab 예제(tensorflow) https://colab.research.google.com/drive/1cL2NwGSUC5hFkF4k8pGrS7c7i5xNBono?usp=sharing 학습 시도 시 참고 https://github.com/TensorSpeech/TensorFlowTTS/pull/130 https://github.com/TensorSpeech/TensorFlowTTS/issues/415 attention graph 읽는 법 https://github.com/keithito/tacotron/issues/144 환경구성(local, window) anaconda ..
2021.06.15 -
python module not found (경로 참조 문제)
발생 및 원인 보통 상대경로로 되어있는 코드를 다른경로에서 참조할 때 발생한다 이때 해결방법은 내 경우 두가지이다. 적절한 절대경로에서 참조할 것 상대경로를 절대경로로 참조하게 할 것 2의 경우로 할 때 구분할 것이 있다. 예시 C:\Users\sypha\Desktop\tts>python fasttts/synth_module.py 현재 working directory os.getcwd() C:\Users\sypha\Desktop\tts> module(python file)이 속한 directory os.path.dirname(os.path.abspath(__file__)) C:\Users\sypha\Desktop\tts\fasttts 이때 상대경로가 제대로 처리가 안되어있을 경우에는 C:\Users\sy..
2021.06.10