happypuppy

Results 3 comments of happypuppy

> 1.请更新最新版本的代码 2.下载预训练的embedding等模型 3.将 with torch.no_grad(): output= network(content,style) output = output.cpu() 更改为 with torch.no_grad(): output= network(content,style) output = output[0].cpu() 我按你的说法操作了,但是依旧没有任何图片生成, 也没用错误(pds) PS D:\StyTR-2-main> python test.py --content_dir input/content/12.jpg --style_dir input/style/12.jpg --output...

> 1.请更新最新版本的代码 2.下载预训练的嵌入等模型 3.将 with torch.no_grad(): output= network(content,style) output = output.cpu() 更改为 with torch.no_grad(): output= network(content,style) output = output[0].cpu() wen文件都在,但是依旧没有任何图片生成

> 我遇到了同样的问题,你现在解决了吗? 我现在运行完成没有结果,也没用任何报错信息,甚至比你这还奇怪