Unverified Commit 39654cc9 authored by AUTOMATIC1111's avatar AUTOMATIC1111 Committed by GitHub
Browse files

Merge pull request #9867 from darnell8/master

Fix CLIP FileExistsError
parents b0f55d37 bb426de1
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@ def download_default_clip_interrogate_categories(content_dir):
    category_types = ["artists", "flavors", "mediums", "movements"]

    try:
        if not os.path.exists(tmpdir):
            os.makedirs(tmpdir)
        for category_type in category_types:
            torch.hub.download_url_to_file(f"https://raw.githubusercontent.com/pharmapsychotic/clip-interrogator/main/clip_interrogator/data/{category_type}.txt", os.path.join(tmpdir, f"{category_type}.txt"))
@@ -41,7 +42,7 @@ def download_default_clip_interrogate_categories(content_dir):
        errors.display(e, "downloading default CLIP interrogate categories")
    finally:
        if os.path.exists(tmpdir):
            os.remove(tmpdir)
            os.removedirs(tmpdir)


class InterrogateModels: