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
$ python ../../mtts/synthesize.py -d cuda --c config.yaml --checkpoint ./checkpoints/checkpoint_1240000.pth.tar -i input.txt usage: synthesize.py [-h] [-i INPUT] [--duration DURATION] [--output_dir OUTPUT_DIR] --checkpoint CHECKPOINT [-c CONFIG] [-d {cuda,cpu}] synthesize.py: error: ambiguous option: --c could match --checkpoint, --config
The text was updated successfully, but these errors were encountered:
我做了下debug,很多底层错误被掩盖了,修改了好多地方:
lines = open(args.input).read().split('\n')
lines = open(args.input,encoding='utf-8').read().split('\n')
Sorry, something went wrong.
No branches or pull requests
$ python ../../mtts/synthesize.py -d cuda --c config.yaml --checkpoint ./checkpoints/checkpoint_1240000.pth.tar -i input.txt
usage: synthesize.py [-h] [-i INPUT] [--duration DURATION] [--output_dir OUTPUT_DIR] --checkpoint CHECKPOINT
[-c CONFIG] [-d {cuda,cpu}]
synthesize.py: error: ambiguous option: --c could match --checkpoint, --config
The text was updated successfully, but these errors were encountered: