赞
踩
1、ModuleNotFoundError: No module named 'ldm'
明明有ldm这个文件,却报了这个错,解决办法是
在运行的代码文件中,在import ldm之前加入如下代码:
sys.path.append(os.path.join(os.path.dirname(__file__), ".."))
参考自网站:ModuleNotFoundError: no module named "ldm" · Issue #160 · CompVis/stable-diffusion · GitHub
2、FileNotFoundError: [Errno 2] No such file or directory: 'models/ldm/stable-diffusion-v1/model.ckpt'
这个是因为先前在stable-diffusion的readme中,运行了代码
ln -s <path/to/model.ckpt> models/ldm/stable-diffusion-v1/model.ckpt
导致在models/ldm/stable-diffusion-v1/目录下出现了model.ckpt的链接文件,而我一直以为这个是下载过来的模型权重文件,因此导致一直在报这个错误,解决办法是,将这个链接文件删掉,然后将原本下载过来的权重文件重命名为model.ckpt
3、ImportError: cannot import name 'VectorQuantizer2' from 'taming.modules.vqvae.quantize
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。