当前位置:   article > 正文

使用飞桨快速部署stable diffusion模型

使用飞桨快速部署stable diffusion模型

这可以说是最快的部署stable diffusion模型的方法了,而且星河社区还有免费的GPU算力提供,这样再也不用担心没有算力了!

操作方法:

  1. # 安装相关库
  2. pip install docarray==0.21.0
  3. pip install paddlehub
  4. # 初始化
  5. from PIL import Image
  6. import paddlehub as hub
  7. module = hub.Module(name='stable_diffusion')
  8. # 开始画图,先画个灯塔
  9. result = module.generate_image(text_prompts="A beautiful painting of a singular lighthouse, shining its light across a tumultuous sea of blood by greg rutkowski and thomas kinkade, Trending on artstation.", output_dir='stable_diffusion_out')
  10. # 用中文试试,发现效果不好,还是改成了英文
  11. result = module.generate_image(text_prompts="Blood elf mage of world of warcraft, using fireball spell", output_dir='stable_diffusion_out')

可以看到画的图还是不错的

 

在V100下22秒输出一张图。

注意,模型限制77个字符的输入,超出会报错:is too long for context length 77

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/469779
推荐阅读
相关标签
  

闽ICP备14008679号