8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

本地保存 KerasCV StableDiffusion 模型以供日后重复使用

Marco Fumagalli 2月前

14 0

我正在使用 keras_cv.models.StableDiffusion 从文本生成图像,并具有以下代码:import keras_cvimport kerasimport matplotlib.pyplot as pltfrom PIL import Imagedef plot_images(

我正在使用 keras_cv.models.StableDiffusion 从文本生成图像,并有以下代码:

import keras_cv
import keras
import matplotlib.pyplot as plt
from PIL import Image

def plot_images(images):
    plt.figure(figsize=(20, 20))
    for i in range(len(images)):
        ax = plt.subplot(1, len(images), i + 1)
        plt.imshow(images[i])
        plt.axis("off")

model = keras_cv.models.StableDiffusion(
    img_width=512, img_height=512, jit_compile=False
)

model.save("my_stable_diffusion_model.keras")

images = model.text_to_image("photograph of an astronaut riding a horse", batch_size=3)

Image.fromarray(images[0]).save("astronaut.png")
plot_images(images)

但是,我收到以下错误消息:

model.save("my_stable_diffusion_model.keras")
AttributeError: 'StableDiffusion' object has no attribute 'save'

正在加载的模型非常大,所以我不想每次重新启动程序时都从互联网重新加载它。是否可以将模型及其权重保存在本地,以便我可以重复使用它?

谢谢,

道格

帖子版权声明 1、本帖标题:本地保存 KerasCV StableDiffusion 模型以供日后重复使用
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由Marco Fumagalli在本站《tensorflow》版块原创发布, 转载请注明出处!
最新回复 (0)
返回
作者最近主题: