We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
def prepare_directories_and_logger(haparms, output_directory, log_directory, rank): if rank == 0: if not os.path.isdir(output_directory): os.makedirs(output_directory) os.chmod(output_directory, 0o775) logger = Tacotron2Logger(os.path.join(output_directory, log_directory), \ hparams.use_mmi, hparams.use_guided_attn_loss) else: logger = None return logger
중요한 이슈는 아니지만 코드 참고를 하다가 발견하여 이슈로 등록합니다. 좋은 자료 공유해주셔서 감사합니다. haparms -> hparams
The text was updated successfully, but these errors were encountered:
No branches or pull requests
중요한 이슈는 아니지만 코드 참고를 하다가 발견하여 이슈로 등록합니다. 좋은 자료 공유해주셔서 감사합니다.
haparms -> hparams
The text was updated successfully, but these errors were encountered: