meareabc

Results 2 comments of meareabc

> 老哥解决了么 我也遇到了这种问题 折腾两天了 不知道你是否解决了问题,你可以参考这个方法试试看https://github.com/allenai/ai2thor/issues/993#issuecomment-1154744878

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()