通过 SVG render 库复现 Word As Image 的过程中(https://pytorch-svgrender.readthedocs.io/en/latest/wordasimage.html),出现以下报错
huggingface_hub.utils._errors.LocalEntryNotFoundError: Cannot find an appropriate cached snapshot folder for the specified revision on the local disk and outgoing traffic has been disabled. To enable repo look-ups and downloads online, pass 'local_files_only=False' as input.
尝试方法1: 在 local_files_only 处均设置为 True, 尝试后无效
尝试方法2:根据 config.yaml 中的提示“# Set this variable to True the first time it runs”,在 config.yaml 配置文件中将 diffuser 的 download 参数设置为例 True 后解决该问题。🎉
# Diffusers config
diffuser:
download: False # Set this variable to True the first time it runs
force_download: False
resume_download: False