Skip to content
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

possible custom model inference issue #6

Open
kunibald413 opened this issue Nov 21, 2023 · 1 comment
Open

possible custom model inference issue #6

kunibald413 opened this issue Nov 21, 2023 · 1 comment

Comments

@kunibald413
Copy link

  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

@p0p4k
Copy link
Owner

p0p4k commented Nov 21, 2023

oops. Nice catch! (it is a byproduct of me blindly using this)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants