From 6414c85c30acadea42e5589e1cb35dd68401bed4 Mon Sep 17 00:00:00 2001 From: chflame163 Date: Thu, 29 Aug 2024 09:10:11 +0800 Subject: [PATCH] fix EVF-SAMUltra model name --- py/evf_sam/{inference.py => evf_sam_inference.py} | 0 py/evf_sam_ultra.py | 2 +- pyproject.toml | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename py/evf_sam/{inference.py => evf_sam_inference.py} (100%) diff --git a/py/evf_sam/inference.py b/py/evf_sam/evf_sam_inference.py similarity index 100% rename from py/evf_sam/inference.py rename to py/evf_sam/evf_sam_inference.py diff --git a/py/evf_sam_ultra.py b/py/evf_sam_ultra.py index fc7fcd3..49d1f5a 100644 --- a/py/evf_sam_ultra.py +++ b/py/evf_sam_ultra.py @@ -5,7 +5,7 @@ from .imagefunc import * sys.path.append(os.path.join(os.path.dirname(__file__), 'evf_sam')) -from inference import evf_sam_main +from evf_sam.evf_sam_inference import evf_sam_main class EVF_SAM_Ultra: def __init__(self): diff --git a/pyproject.toml b/pyproject.toml index 448d98b..9a979e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "comfyui_layerstyle" description = "A set of nodes for ComfyUI it generate image like Adobe Photoshop's Layer Style. the Drop Shadow is first completed node, and follow-up work is in progress." -version = "1.0.34" +version = "1.0.35" license = "MIT" dependencies = ["numpy", "pillow", "torch", "matplotlib", "Scipy", "scikit_image", "opencv-contrib-python", "pymatting", "segment_anything", "timm", "addict", "yapf", "colour-science", "wget", "mediapipe", "loguru", "typer_config", "fastapi", "rich", "google-generativeai", "diffusers", "omegaconf", "tqdm", "transformers", "kornia", "image-reward", "ultralytics", "blend_modes", "blind-watermark", "qrcode", "pyzbar", "transparent-background", "huggingface_hub", "accelerate", "bitsandbytes", "torchscale", "wandb", "hydra-core", "psd-tools"]