fix: Change the path of the annotator folder to annotators

Just making this change in case there are other models added to the folder in the future
This commit is contained in:
blessedcoolant 2024-01-23 04:56:59 +05:30 committed by Kent Keirsey
parent 13123daa3f
commit 6a2eb1d2e4

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/annotator/depth_anything/depth_anything_vitl14.pth",
"local": "sd-1/controlnet/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/annotator/depth_anything/depth_anything_vitb14.pth",
"local": "sd-1/controlnet/annotators/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/annotator/depth_anything/depth_anything_vits14.pth",
"local": "sd-1/controlnet/annotators/depth_anything/depth_anything_vits14.pth",
},
}