Giter Site home page Giter Site logo

Comments (5)

Jamie-Cheung avatar Jamie-Cheung commented on July 29, 2024

已知pillow<=7.2.0,不知道其他的怎么样 另外,AttributeError: 'tuple' object has no attribute 'cpu'怎么办呢

把那边注释掉,直接用上面输出的output

from stytr-2.

2333someone avatar 2333someone commented on July 29, 2024

已知pillow<=7.2.0,不知道其他的怎么样 另外,AttributeError: 'tuple' object has no attribute 'cpu'怎么办呢

把那边注释掉,直接用上面输出的output

我也是遇到了同样的问题,刚刚才学习python,请问能说一下具体怎么修改吗?

from stytr-2.

Jamie-Cheung avatar Jamie-Cheung commented on July 29, 2024

for content_path in content_paths:
for style_path in style_paths:
print(content_path)
content_tf1 = content_transform()
content = content_tf(Image.open(content_path).convert("RGB"))

h, w, c = np.shape(content)
style_tf1 = style_transform(h, w)
style = style_tf(Image.open(style_path).convert("RGB"))

style = style.to(device).unsqueeze(0)
content = content.to(device).unsqueeze(0)

with torch.no_grad():
    output = network(content, style)
    # output = output.cuda()
    output = output

output_name = '{:s}/{:s}_stylized_{:s}{:s}'.format(
    output_path, splitext(basename(content_path))[0],
    splitext(basename(style_path))[0], save_ext
)
save_image(output[0], output_name)

You can copy this code to replace corresponding code on test.py

from stytr-2.

phhandong avatar phhandong commented on July 29, 2024

I replace the code with yours, but I got the output as thisresult

from stytr-2.

yuchen202 avatar yuchen202 commented on July 29, 2024

from stytr-2.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.