fix: Move the models to any folder to avoid boot warnings

This commit is contained in:
blessedcoolant 2024-01-24 03:35:37 +05:30
parent 7cb49e65bd
commit 92fb09c4df

View File

@ -20,15 +20,15 @@ config = InvokeAIAppConfig.get_config()
DEPTH_ANYTHING_MODELS = {
"large": {
"url": "https://huggingface.co/spaces/LiheYoung/Depth-Anything/resolve/main/checkpoints/depth_anything_vitl14.pth?download=true",
"local": "sd-1/controlnet/annotators/depth_anything/depth_anything_vitl14.pth",
"local": "any/annotators/depth_anything/depth_anything_vitl14.pth",
},
"base": {
"url": "https://huggingface.co/spaces/LiheYoung/Depth-Anything/resolve/main/checkpoints/depth_anything_vitb14.pth?download=true",
"local": "sd-1/controlnet/annotators/depth_anything/depth_anything_vitb14.pth",
"local": "any/annotators/depth_anything/depth_anything/depth_anything_vitb14.pth",
},
"small": {
"url": "https://huggingface.co/spaces/LiheYoung/Depth-Anything/resolve/main/checkpoints/depth_anything_vits14.pth?download=true",
"local": "sd-1/controlnet/annotators/depth_anything/depth_anything_vits14.pth",
"local": "any/annotators/depth_anything/depth_anything/depth_anything_vits14.pth",
},
}