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
It was a bit inconvenient to manually rename output files to avoid overwriting so I made a rather provisional hack:
savename = os.path.join(args.output_path, basename + '_vtoonify_' + args.backbone[0] + '-' + args.ckpt[24:29] + '-' + str(args.style_id).zfill(3) + '-' + str(100*args.style_degree).zfill(3) + '.jpg')
I think it would be useful to add something like this ("args.ckpt[24:29]" needs to be replaced by something more robust) into your code.
The text was updated successfully, but these errors were encountered:
I would also like to specify the path and filename of the output file please.
Sorry, something went wrong.
No branches or pull requests
It was a bit inconvenient to manually rename output files to avoid overwriting so I made a rather provisional hack:
savename = os.path.join(args.output_path, basename + '_vtoonify_' + args.backbone[0] + '-' + args.ckpt[24:29] + '-' + str(args.style_id).zfill(3) + '-' + str(100*args.style_degree).zfill(3) + '.jpg')
I think it would be useful to add something like this ("args.ckpt[24:29]" needs to be replaced by something more robust) into your code.
The text was updated successfully, but these errors were encountered: