Rename project to ComfyUI-Tween

Update logger names, install prefixes, README clone instructions, and
error messages to reflect the new repo name. Model-specific node names
and categories (BIM-VFI, EMA-VFI, SGM-VFI) are unchanged.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-12 23:08:54 +01:00
parent 42ebdd8b96
commit e37cc3dd2e
6 changed files with 14 additions and 14 deletions

View File

@@ -2,7 +2,7 @@ import subprocess
import sys
import logging
logger = logging.getLogger("BIM-VFI")
logger = logging.getLogger("Tween")
def _auto_install_deps():
@@ -11,14 +11,14 @@ def _auto_install_deps():
try:
import gdown # noqa: F401
except ImportError:
logger.info("[BIM-VFI] Installing gdown...")
logger.info("[Tween] Installing gdown...")
subprocess.check_call([sys.executable, "-m", "pip", "install", "gdown"])
# timm (required for EMA-VFI's MotionFormer backbone)
try:
import timm # noqa: F401
except ImportError:
logger.info("[BIM-VFI] Installing timm...")
logger.info("[Tween] Installing timm...")
subprocess.check_call([sys.executable, "-m", "pip", "install", "timm"])
# cupy
@@ -29,10 +29,10 @@ def _auto_install_deps():
import torch
major = int(torch.version.cuda.split(".")[0])
cupy_pkg = f"cupy-cuda{major}x"
logger.info(f"[BIM-VFI] Installing {cupy_pkg} (CUDA {torch.version.cuda})...")
logger.info(f"[Tween] Installing {cupy_pkg} (CUDA {torch.version.cuda})...")
subprocess.check_call([sys.executable, "-m", "pip", "install", cupy_pkg])
except Exception as e:
logger.warning(f"[BIM-VFI] Could not auto-install cupy: {e}")
logger.warning(f"[Tween] Could not auto-install cupy: {e}")
_auto_install_deps()