当前模型的贡献者未提供更加详细的模型介绍。模型文件和权重,可浏览“模型文件”页面获取。
您可以通过如下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()
评论