文生图基础模型

我要开发同款
匿名用户2024年07月31日
19阅读
开发技术Pytorch
所属分类ai
开源地址https://modelscope.cn/models/YslLin/StableDiffusionCheckPoint_V2
授权协议Apache License 2.0

作品详情

当前模型的贡献者未提供更加详细的模型介绍。模型文件和权重,可浏览“模型文件”页面获取。

您可以通过如下git clone命令,或者ModelScope SDK来下载模型

SDK下载

#安装ModelScope
pip install modelscope
#SDK模型下载
from modelscope import snapshot_download
model_dir = snapshot_download('YslLin/StableDiffusionCheckPoint_V2')

Git下载

#Git模型下载
git clone https://www.modelscope.cn/YslLin/StableDiffusionCheckPoint_V2.git

ChilloutRealistic_v2.1

chillout_realistic-pipeline 模型使用

# 1. 下载文件
base_model_path = snapshot_download('YslLin/StableDiffusionCheckPoint', revision='v1.1.0')
# 2. 加载模型
pipe = StableDiffusionPipeline.from_pretrained(os.path.join(base_model_path, "chillout_realistic-pipeline"), safety_checker=None, torch_dtype=torch.float32)
# 3. 推理文生图
init_image = pipe(prompt='1girl',
                  negative_prompt='ng_deepnegative_v1_75t,lowres,bad anatomy,bad hands',
                  num_inference_steps=20, guidance_scale=7, num_images_per_prompt=1,).images[0]
# 4. 显示图片
init_image.show()
声明:本文仅代表作者观点,不代表本站立场。如果侵犯到您的合法权益,请联系我们删除侵权资源!如果遇到资源链接失效,请您通过评论或工单的方式通知管理员。未经允许,不得转载,本站所有资源文章禁止商业使用运营!
下载安装【程序员客栈】APP
实时对接需求、及时收发消息、丰富的开放项目需求、随时随地查看项目状态

评论