问题:
bash
pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", use_safetensors=True, variant="fp16")
经常在python中会下载预训练模型,然后在pycharm中使用ctrl+鼠标点击也无法跳转位置
解决方法:
windows可以在软件商店下载everything快速搜索文件或文件夹
linux可以按照使用下面命令下载fsearch
bash
sudo add-apt-repository ppa:christian-boxdoerfer/fsearch-stable //添加ppa
sudo apt update //更新源
sudo apt-get install fsearch //安装
安装完后,把家目录添加到搜索路径,第一次搜索的话等待几分钟,然后就可随便搜索内容
这时候在搜索stabilityai,即可查到之前下载的模型位置,位于
/home/jie/.cache/huggingface/hub目录下。