-
Notifications
You must be signed in to change notification settings - Fork 205
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
test error #14
Comments
do you resolve it, I face similar problem |
Yes. In my case, I resolved it with this modification. |
which file do you modify? |
the paper said support "Brush Stroke Size Control." do you know how to evaluate in different brush stroke size |
@suke27 src_flat_cov_eye = src_norm @ src_norm.t() + Variable(torch.eye(3).cuda()) |
not yet |
@donghyunyoo I make the same modification as you, but then a new error occurs as follow: |
@gwenguo090006 The error comes from It seems to work for me |
@LoicEm |
I got this error.
Traceback (most recent call last):
File "main.py", line 290, in
main()
File "main.py", line 45, in main
evaluate(args)
File "main.py", line 258, in evaluate
output = utils.color_match(output, style_v)
File "/media/hdd1/donghyun/armor/PyTorch-Multi-Style-Transfer/experiments/utils.py", line 150, in color_match
src_flat_nrom_trans = matSqrt(dst_flat_cov_eye) * matSqrt(src_flat_cov_eye).inverse * src_norm
RuntimeError: mul() received an invalid combination of arguments - got (builtin_function_or_method), but expected one of:
didn't match because some of the arguments have invalid types: (builtin_function_or_method)
didn't match because some of the arguments have invalid types: (builtin_function_or_method)
How can I fix this?
The text was updated successfully, but these errors were encountered: