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
Describe the bug A clear and concise description of what the bug is.
To Reproduce Steps to reproduce the behavior:
Additional context Add any other context about the problem here.
"svc infer" This command can only be one file at a time. Is there a way to infer to multiple files at once?
The text was updated successfully, but these errors were encountered:
If you know a bit of python, you can run a script like this and edit the variables inside the script.
import os import subprocess directory = 'D:/testfiles/wavs' modelpath = 'D:/testfiles/logs/44k/G_12345.pth' configpath = 'D:/testfiles/configs/44k/config.json' for filename in os.listdir(directory): f = os.path.join(directory, filename) if os.path.isfile(f): subprocess.run([ "svc", "infer", "-m", f"{modelpath}", "-c", f"{configpath}", f"{f}" ])
Sorry, something went wrong.
GarrettConway
Successfully merging a pull request may close this issue.
Describe the bug
A clear and concise description of what the bug is.
To Reproduce
Steps to reproduce the behavior:
Additional context
Add any other context about the problem here.
"svc infer" This command can only be one file at a time. Is there a way to infer to multiple files at once?
The text was updated successfully, but these errors were encountered: