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
if not hasattr(args, "checkpoint_path") and args.checkpoint_path is None: model_path = args.checkpoint_path
shouldn't this be a positive check?
if hasattr(args, "checkpoint_path") and args.checkpoint_path: model_path = args.checkpoint_path
https://github.com/p0p4k/pflowtts_pytorch/blob/82c70bf71e082356c785fcdd8fc24eea912abfc4/pflow/cli.py#L68C17-L68C17
The text was updated successfully, but these errors were encountered:
oops. Nice catch! (it is a byproduct of me blindly using this)
Sorry, something went wrong.
No branches or pull requests
shouldn't this be a positive check?
https://github.com/p0p4k/pflowtts_pytorch/blob/82c70bf71e082356c785fcdd8fc24eea912abfc4/pflow/cli.py#L68C17-L68C17
The text was updated successfully, but these errors were encountered: