Spaces:
Paused
Paused
Initial commit: Add eneas application files
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- README.md +6 -8
- app.py +842 -0
- eneas/__init__.py +23 -0
- eneas/__main__.py +8 -0
- eneas/__pycache__/__init__.cpython-312.pyc +0 -0
- eneas/__pycache__/__init__.cpython-313.pyc +0 -0
- eneas/__pycache__/__main__.cpython-312.pyc +0 -0
- eneas/__pycache__/cli.cpython-312.pyc +0 -0
- eneas/cli.py +576 -0
- eneas/segmentation/__init__.py +16 -0
- eneas/segmentation/__pycache__/__init__.cpython-312.pyc +0 -0
- eneas/segmentation/__pycache__/__init__.cpython-313.pyc +0 -0
- eneas/segmentation/__pycache__/generic_category.cpython-312.pyc +0 -0
- eneas/segmentation/__pycache__/generic_category.cpython-313.pyc +0 -0
- eneas/segmentation/__pycache__/model_manager.cpython-312.pyc +0 -0
- eneas/segmentation/__pycache__/model_manager.cpython-313.pyc +0 -0
- eneas/segmentation/__pycache__/types.cpython-312.pyc +0 -0
- eneas/segmentation/__pycache__/types.cpython-313.pyc +0 -0
- eneas/segmentation/__pycache__/unique_instance.cpython-312.pyc +0 -0
- eneas/segmentation/__pycache__/unique_instance.cpython-313.pyc +0 -0
- eneas/segmentation/__pycache__/utils.cpython-312.pyc +0 -0
- eneas/segmentation/__pycache__/utils.cpython-313.pyc +0 -0
- eneas/segmentation/generic_category.py +1072 -0
- eneas/segmentation/model_manager.py +126 -0
- eneas/segmentation/types.py +28 -0
- eneas/segmentation/unique_instance.py +993 -0
- eneas/segmentation/utils.py +418 -0
- eneas/vendor/.DS_Store +0 -0
- eneas/vendor/SeC/.DS_Store +0 -0
- eneas/vendor/SeC/LICENSE +201 -0
- eneas/vendor/SeC/inference/.DS_Store +0 -0
- eneas/vendor/SeC/inference/__pycache__/configuration_intern_vit.cpython-312.pyc +0 -0
- eneas/vendor/SeC/inference/__pycache__/configuration_internlm2.cpython-312.pyc +0 -0
- eneas/vendor/SeC/inference/__pycache__/configuration_sec.cpython-312.pyc +0 -0
- eneas/vendor/SeC/inference/__pycache__/flash_attention.cpython-312.pyc +0 -0
- eneas/vendor/SeC/inference/__pycache__/modeling_intern_vit.cpython-312.pyc +0 -0
- eneas/vendor/SeC/inference/__pycache__/modeling_internlm2.cpython-312.pyc +0 -0
- eneas/vendor/SeC/inference/__pycache__/modeling_sec.cpython-312.pyc +0 -0
- eneas/vendor/SeC/inference/__pycache__/sam2_video_predictor.cpython-312.pyc +0 -0
- eneas/vendor/SeC/inference/__pycache__/templates.cpython-312.pyc +0 -0
- eneas/vendor/SeC/inference/configuration_intern_vit.py +120 -0
- eneas/vendor/SeC/inference/configuration_internlm2.py +150 -0
- eneas/vendor/SeC/inference/configuration_phi3.py +211 -0
- eneas/vendor/SeC/inference/configuration_sec.py +124 -0
- eneas/vendor/SeC/inference/flash_attention.py +76 -0
- eneas/vendor/SeC/inference/modeling_intern_vit.py +364 -0
- eneas/vendor/SeC/inference/modeling_internlm2.py +1429 -0
- eneas/vendor/SeC/inference/modeling_phi3.py +1610 -0
- eneas/vendor/SeC/inference/modeling_sec.py +857 -0
- eneas/vendor/SeC/inference/sam2/__init__.py +14 -0
README.md
CHANGED
|
@@ -1,14 +1,12 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: gradio
|
| 7 |
-
sdk_version: 6.
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
-
license: apache-2.0
|
| 11 |
-
short_description: Segmentator
|
| 12 |
---
|
| 13 |
|
| 14 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 1 |
---
|
| 2 |
+
title: ENEAS
|
| 3 |
+
emoji: ⚡
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: pink
|
| 6 |
sdk: gradio
|
| 7 |
+
sdk_version: 6.0.2
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
|
|
|
|
|
|
| 10 |
---
|
| 11 |
|
| 12 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
app.py
ADDED
|
@@ -0,0 +1,842 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
import os
|
| 3 |
+
import cv2
|
| 4 |
+
import shutil
|
| 5 |
+
import tempfile
|
| 6 |
+
import numpy as np
|
| 7 |
+
import subprocess
|
| 8 |
+
import time
|
| 9 |
+
import threading
|
| 10 |
+
import torch
|
| 11 |
+
import sys
|
| 12 |
+
import logging
|
| 13 |
+
from PIL import Image
|
| 14 |
+
|
| 15 |
+
# ===========================================
|
| 16 |
+
# LOGGING CONFIGURATION
|
| 17 |
+
# ===========================================
|
| 18 |
+
logging.basicConfig(
|
| 19 |
+
level=logging.INFO,
|
| 20 |
+
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
|
| 21 |
+
handlers=[logging.StreamHandler(sys.stdout)]
|
| 22 |
+
)
|
| 23 |
+
logger = logging.getLogger(__name__)
|
| 24 |
+
|
| 25 |
+
# Ensure Python sees the local 'eneas' folder
|
| 26 |
+
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
|
| 27 |
+
|
| 28 |
+
import spaces
|
| 29 |
+
|
| 30 |
+
try:
|
| 31 |
+
from eneas.segmentation import UniqueInstanceSegmenter, GenericCategorySegmenter
|
| 32 |
+
from eneas.segmentation.model_manager import ModelManager
|
| 33 |
+
except ImportError as e:
|
| 34 |
+
logger.error(f"Error importing ENEAS: {e}")
|
| 35 |
+
raise e
|
| 36 |
+
|
| 37 |
+
# ===========================================
|
| 38 |
+
# CONSTANTS
|
| 39 |
+
# ===========================================
|
| 40 |
+
MAX_FRAMES = 150 # Limit frames to avoid ZeroGPU Timeout (~1s/frame processing)
|
| 41 |
+
OLLAMA_HOST = "127.0.0.1:11434"
|
| 42 |
+
OLLAMA_URL = f"http://{OLLAMA_HOST}"
|
| 43 |
+
OLLAMA_BIN = "./bin/ollama"
|
| 44 |
+
|
| 45 |
+
VLM_MODELS = [
|
| 46 |
+
"qwen3-vl:4b-instruct-q8_0",
|
| 47 |
+
"qwen3-vl:2b-instruct-q8_0"
|
| 48 |
+
]
|
| 49 |
+
|
| 50 |
+
OUTPUT_BASE_DIR = "gradio_outputs"
|
| 51 |
+
os.makedirs(OUTPUT_BASE_DIR, exist_ok=True)
|
| 52 |
+
|
| 53 |
+
|
| 54 |
+
# ===========================================
|
| 55 |
+
# OLLAMA FUNCTIONS (FOR USE INSIDE @spaces.GPU)
|
| 56 |
+
# ===========================================
|
| 57 |
+
def get_ollama_env():
|
| 58 |
+
"""Get environment variables for Ollama process with GPU support."""
|
| 59 |
+
env = os.environ.copy()
|
| 60 |
+
env["OLLAMA_HOST"] = OLLAMA_HOST
|
| 61 |
+
env["OLLAMA_ORIGINS"] = "*"
|
| 62 |
+
env["HOME"] = os.getcwd()
|
| 63 |
+
|
| 64 |
+
# Add local lib path for the extracted binary
|
| 65 |
+
cwd = os.getcwd()
|
| 66 |
+
lib_path = f"{cwd}/lib"
|
| 67 |
+
if "LD_LIBRARY_PATH" in env:
|
| 68 |
+
env["LD_LIBRARY_PATH"] += f":{lib_path}"
|
| 69 |
+
else:
|
| 70 |
+
env["LD_LIBRARY_PATH"] = lib_path
|
| 71 |
+
|
| 72 |
+
return env
|
| 73 |
+
|
| 74 |
+
|
| 75 |
+
def is_ollama_server_running() -> bool:
|
| 76 |
+
"""Check if Ollama server is responding."""
|
| 77 |
+
try:
|
| 78 |
+
result = subprocess.run(
|
| 79 |
+
["curl", "-s", "-o", "/dev/null", "-w", "%{http_code}", OLLAMA_URL],
|
| 80 |
+
capture_output=True,
|
| 81 |
+
text=True,
|
| 82 |
+
timeout=5
|
| 83 |
+
)
|
| 84 |
+
return result.stdout.strip() == "200"
|
| 85 |
+
except Exception:
|
| 86 |
+
return False
|
| 87 |
+
|
| 88 |
+
|
| 89 |
+
def start_ollama_server_gpu():
|
| 90 |
+
"""
|
| 91 |
+
Start Ollama server INSIDE @spaces.GPU context.
|
| 92 |
+
This ensures Ollama detects and uses the GPU.
|
| 93 |
+
|
| 94 |
+
Returns:
|
| 95 |
+
bool: True if server started successfully
|
| 96 |
+
"""
|
| 97 |
+
if is_ollama_server_running():
|
| 98 |
+
logger.info("Ollama server is already running.")
|
| 99 |
+
return True
|
| 100 |
+
|
| 101 |
+
logger.info("Starting Ollama server inside GPU context...")
|
| 102 |
+
|
| 103 |
+
try:
|
| 104 |
+
env = get_ollama_env()
|
| 105 |
+
|
| 106 |
+
# Start server as background process
|
| 107 |
+
process = subprocess.Popen(
|
| 108 |
+
[OLLAMA_BIN, "serve"],
|
| 109 |
+
env=env,
|
| 110 |
+
stdout=subprocess.PIPE,
|
| 111 |
+
stderr=subprocess.PIPE
|
| 112 |
+
)
|
| 113 |
+
|
| 114 |
+
# Wait for server to be ready (max 30 seconds)
|
| 115 |
+
max_retries = 30
|
| 116 |
+
for i in range(max_retries):
|
| 117 |
+
if is_ollama_server_running():
|
| 118 |
+
logger.info(f"Ollama server started successfully in {i+1} seconds.")
|
| 119 |
+
return True
|
| 120 |
+
time.sleep(1)
|
| 121 |
+
|
| 122 |
+
logger.error("Ollama server failed to start within 30 seconds.")
|
| 123 |
+
return False
|
| 124 |
+
|
| 125 |
+
except Exception as e:
|
| 126 |
+
logger.error(f"Failed to start Ollama server: {e}")
|
| 127 |
+
return False
|
| 128 |
+
|
| 129 |
+
|
| 130 |
+
def load_model_into_vram(model_name: str) -> bool:
|
| 131 |
+
"""
|
| 132 |
+
Load model into VRAM for faster inference.
|
| 133 |
+
Uses keep_alive=-1 to keep model loaded.
|
| 134 |
+
|
| 135 |
+
Args:
|
| 136 |
+
model_name: Name of the Ollama model to load
|
| 137 |
+
|
| 138 |
+
Returns:
|
| 139 |
+
bool: True if model loaded successfully
|
| 140 |
+
"""
|
| 141 |
+
logger.info(f"Loading model {model_name} into VRAM...")
|
| 142 |
+
|
| 143 |
+
try:
|
| 144 |
+
# Send a minimal request to trigger model loading
|
| 145 |
+
result = subprocess.run(
|
| 146 |
+
[
|
| 147 |
+
"curl", "-s", f"{OLLAMA_URL}/api/generate",
|
| 148 |
+
"-d", f'{{"model": "{model_name}", "prompt": "hi", "stream": false}}'
|
| 149 |
+
],
|
| 150 |
+
capture_output=True,
|
| 151 |
+
text=True,
|
| 152 |
+
timeout=120 # Model loading can take time
|
| 153 |
+
)
|
| 154 |
+
|
| 155 |
+
if "error" in result.stdout.lower():
|
| 156 |
+
logger.error(f"Error loading model: {result.stdout}")
|
| 157 |
+
return False
|
| 158 |
+
|
| 159 |
+
# Set keep_alive to -1 to keep model in VRAM
|
| 160 |
+
subprocess.run(
|
| 161 |
+
[
|
| 162 |
+
"curl", "-s", f"{OLLAMA_URL}/api/generate",
|
| 163 |
+
"-d", f'{{"model": "{model_name}", "keep_alive": -1}}'
|
| 164 |
+
],
|
| 165 |
+
capture_output=True,
|
| 166 |
+
timeout=10
|
| 167 |
+
)
|
| 168 |
+
|
| 169 |
+
logger.info(f"Model {model_name} loaded into VRAM successfully.")
|
| 170 |
+
return True
|
| 171 |
+
|
| 172 |
+
except subprocess.TimeoutExpired:
|
| 173 |
+
logger.error("Timeout while loading model into VRAM.")
|
| 174 |
+
return False
|
| 175 |
+
except Exception as e:
|
| 176 |
+
logger.error(f"Error loading model into VRAM: {e}")
|
| 177 |
+
return False
|
| 178 |
+
|
| 179 |
+
|
| 180 |
+
def log_active_models():
|
| 181 |
+
"""Log which models are currently loaded in VRAM (not just on disk)."""
|
| 182 |
+
try:
|
| 183 |
+
result = subprocess.run(
|
| 184 |
+
["curl", "-s", f"{OLLAMA_URL}/api/ps"],
|
| 185 |
+
capture_output=True,
|
| 186 |
+
text=True,
|
| 187 |
+
timeout=5
|
| 188 |
+
)
|
| 189 |
+
logger.info(f"Active models in VRAM: {result.stdout}")
|
| 190 |
+
except Exception as e:
|
| 191 |
+
logger.warning(f"Could not get active models: {e}")
|
| 192 |
+
|
| 193 |
+
|
| 194 |
+
def ensure_ollama_ready_gpu(model_name: str) -> bool:
|
| 195 |
+
"""
|
| 196 |
+
Main function to ensure Ollama is fully ready with GPU support.
|
| 197 |
+
MUST be called inside @spaces.GPU decorated function.
|
| 198 |
+
|
| 199 |
+
This function:
|
| 200 |
+
1. Starts Ollama server (which will detect GPU)
|
| 201 |
+
2. Loads the specified model into VRAM
|
| 202 |
+
3. Logs which model is active
|
| 203 |
+
|
| 204 |
+
Args:
|
| 205 |
+
model_name: Name of the Ollama model to use
|
| 206 |
+
|
| 207 |
+
Returns:
|
| 208 |
+
bool: True if ready
|
| 209 |
+
|
| 210 |
+
Raises:
|
| 211 |
+
RuntimeError: If setup fails
|
| 212 |
+
"""
|
| 213 |
+
logger.info(f"Ensuring Ollama is ready with GPU for model: {model_name}")
|
| 214 |
+
|
| 215 |
+
# Step 1: Start server (will detect GPU since we're inside @spaces.GPU)
|
| 216 |
+
if not start_ollama_server_gpu():
|
| 217 |
+
raise RuntimeError("Failed to start Ollama server with GPU")
|
| 218 |
+
|
| 219 |
+
# Step 2: Load model into VRAM
|
| 220 |
+
if not load_model_into_vram(model_name):
|
| 221 |
+
raise RuntimeError(f"Failed to load model {model_name} into VRAM")
|
| 222 |
+
|
| 223 |
+
# Step 3: Log which model is actually active in VRAM
|
| 224 |
+
log_active_models()
|
| 225 |
+
|
| 226 |
+
logger.info("Ollama is ready with GPU support!")
|
| 227 |
+
return True
|
| 228 |
+
|
| 229 |
+
|
| 230 |
+
# ===========================================
|
| 231 |
+
# STARTUP: DOWNLOAD BINARY AND MODELS (CPU)
|
| 232 |
+
# ===========================================
|
| 233 |
+
def download_ollama_binary():
|
| 234 |
+
"""Download Ollama binary if not present."""
|
| 235 |
+
if os.path.exists(OLLAMA_BIN):
|
| 236 |
+
logger.info("Ollama binary already exists.")
|
| 237 |
+
return True
|
| 238 |
+
|
| 239 |
+
logger.info("Downloading Ollama binary (TGZ)...")
|
| 240 |
+
try:
|
| 241 |
+
subprocess.run(
|
| 242 |
+
["curl", "-L", "https://ollama.com/download/ollama-linux-amd64.tgz", "-o", "ollama.tgz"],
|
| 243 |
+
check=True,
|
| 244 |
+
timeout=300
|
| 245 |
+
)
|
| 246 |
+
subprocess.run(["tar", "-xzf", "ollama.tgz"], check=True)
|
| 247 |
+
subprocess.run(["chmod", "+x", OLLAMA_BIN], check=True)
|
| 248 |
+
os.remove("ollama.tgz") # Cleanup
|
| 249 |
+
logger.info("Ollama binary downloaded and extracted successfully.")
|
| 250 |
+
return True
|
| 251 |
+
except Exception as e:
|
| 252 |
+
logger.error(f"Failed to download Ollama binary: {e}")
|
| 253 |
+
return False
|
| 254 |
+
|
| 255 |
+
|
| 256 |
+
def pull_ollama_models():
|
| 257 |
+
"""
|
| 258 |
+
Pull Ollama models at startup (runs on CPU).
|
| 259 |
+
This pre-downloads the models so they're ready when GPU is available.
|
| 260 |
+
"""
|
| 261 |
+
logger.info("Pre-downloading Ollama models...")
|
| 262 |
+
|
| 263 |
+
# Need to temporarily start server to pull models
|
| 264 |
+
env = get_ollama_env()
|
| 265 |
+
|
| 266 |
+
# Start server temporarily
|
| 267 |
+
server_process = subprocess.Popen(
|
| 268 |
+
[OLLAMA_BIN, "serve"],
|
| 269 |
+
env=env,
|
| 270 |
+
stdout=subprocess.PIPE,
|
| 271 |
+
stderr=subprocess.PIPE
|
| 272 |
+
)
|
| 273 |
+
|
| 274 |
+
# Wait for server
|
| 275 |
+
time.sleep(5)
|
| 276 |
+
for _ in range(20):
|
| 277 |
+
if is_ollama_server_running():
|
| 278 |
+
break
|
| 279 |
+
time.sleep(1)
|
| 280 |
+
|
| 281 |
+
# Pull each model
|
| 282 |
+
for model in VLM_MODELS:
|
| 283 |
+
logger.info(f"Pulling model: {model}")
|
| 284 |
+
try:
|
| 285 |
+
subprocess.run(
|
| 286 |
+
[OLLAMA_BIN, "pull", model],
|
| 287 |
+
env=env,
|
| 288 |
+
timeout=600,
|
| 289 |
+
capture_output=True
|
| 290 |
+
)
|
| 291 |
+
logger.info(f"Model {model} pulled successfully.")
|
| 292 |
+
except Exception as e:
|
| 293 |
+
logger.warning(f"Failed to pull model {model}: {e}")
|
| 294 |
+
|
| 295 |
+
# Stop server (we'll restart it inside GPU context later)
|
| 296 |
+
server_process.terminate()
|
| 297 |
+
try:
|
| 298 |
+
server_process.wait(timeout=5)
|
| 299 |
+
except subprocess.TimeoutExpired:
|
| 300 |
+
server_process.kill()
|
| 301 |
+
|
| 302 |
+
logger.info("Ollama models pre-download complete.")
|
| 303 |
+
|
| 304 |
+
|
| 305 |
+
def setup_ollama_startup():
|
| 306 |
+
"""Setup Ollama at startup: download binary and pull models."""
|
| 307 |
+
download_ollama_binary()
|
| 308 |
+
pull_ollama_models()
|
| 309 |
+
|
| 310 |
+
|
| 311 |
+
def setup_hf_models():
|
| 312 |
+
"""
|
| 313 |
+
Downloads heavy HuggingFace models to disk at startup.
|
| 314 |
+
This prevents ZeroGPU timeouts during the first inference.
|
| 315 |
+
"""
|
| 316 |
+
logger.info("Starting HuggingFace models download (Warm-up)...")
|
| 317 |
+
try:
|
| 318 |
+
manager = ModelManager()
|
| 319 |
+
|
| 320 |
+
# 1. SeC-4B (Heavy, ~15GB)
|
| 321 |
+
logger.info("Downloading SeC-4B...")
|
| 322 |
+
manager.download("OpenIXCLab/SeC-4B")
|
| 323 |
+
|
| 324 |
+
# 2. Florence-2 (Grounding)
|
| 325 |
+
logger.info("Downloading Florence-2...")
|
| 326 |
+
manager.download("microsoft/Florence-2-large")
|
| 327 |
+
|
| 328 |
+
# 3. SigLIP (For Generic Category)
|
| 329 |
+
logger.info("Downloading SigLIP...")
|
| 330 |
+
manager.download("google/siglip2-base-patch16-naflex")
|
| 331 |
+
|
| 332 |
+
# 4. SAM2 Checkpoint (Direct URL)
|
| 333 |
+
logger.info("Downloading SAM2 checkpoint...")
|
| 334 |
+
manager.download_url(
|
| 335 |
+
"https://dl.fbaipublicfiles.com/segment_anything_2/092824/sam2.1_hiera_large.pt",
|
| 336 |
+
"sam2.1_hiera_large.pt"
|
| 337 |
+
)
|
| 338 |
+
|
| 339 |
+
logger.info("All HuggingFace models downloaded successfully.")
|
| 340 |
+
except Exception as e:
|
| 341 |
+
logger.error(f"Error during HF model download: {e}")
|
| 342 |
+
|
| 343 |
+
|
| 344 |
+
# ===========================================
|
| 345 |
+
# STARTUP: PARALLEL MODEL DOWNLOADS
|
| 346 |
+
# ===========================================
|
| 347 |
+
logger.info("Starting parallel model downloads at startup...")
|
| 348 |
+
t_hf = threading.Thread(target=setup_hf_models, daemon=True)
|
| 349 |
+
t_ollama = threading.Thread(target=setup_ollama_startup, daemon=True)
|
| 350 |
+
|
| 351 |
+
t_hf.start()
|
| 352 |
+
t_ollama.start()
|
| 353 |
+
|
| 354 |
+
DEVICE = "cuda" if torch.cuda.is_available() else "cpu"
|
| 355 |
+
logger.info(f"Main process device detection: {DEVICE}")
|
| 356 |
+
|
| 357 |
+
|
| 358 |
+
# ===========================================
|
| 359 |
+
# UTILITY FUNCTIONS
|
| 360 |
+
# ===========================================
|
| 361 |
+
def process_inputs_to_frames(input_data, output_folder: str) -> tuple:
|
| 362 |
+
"""
|
| 363 |
+
Extracts frames from video (1 FPS) or copies images to output folder.
|
| 364 |
+
Enforces MAX_FRAMES limit to prevent ZeroGPU timeouts.
|
| 365 |
+
|
| 366 |
+
Args:
|
| 367 |
+
input_data: Video file or list of image files
|
| 368 |
+
output_folder: Directory to save extracted frames
|
| 369 |
+
|
| 370 |
+
Returns:
|
| 371 |
+
tuple: (output_folder path, list of frame file paths)
|
| 372 |
+
"""
|
| 373 |
+
if os.path.exists(output_folder):
|
| 374 |
+
shutil.rmtree(output_folder)
|
| 375 |
+
os.makedirs(output_folder)
|
| 376 |
+
|
| 377 |
+
frame_paths = []
|
| 378 |
+
video_extensions = {'.mp4', '.avi', '.mov', '.mkv', '.webm'}
|
| 379 |
+
|
| 380 |
+
input_list = input_data if isinstance(input_data, list) else [input_data]
|
| 381 |
+
if not input_list:
|
| 382 |
+
return output_folder, []
|
| 383 |
+
|
| 384 |
+
first_file = input_list[0].name if hasattr(input_list[0], 'name') else str(input_list[0])
|
| 385 |
+
ext = os.path.splitext(first_file)[1].lower()
|
| 386 |
+
|
| 387 |
+
if ext in video_extensions:
|
| 388 |
+
# Process video file
|
| 389 |
+
logger.info(f"Processing video: {first_file}...")
|
| 390 |
+
cap = cv2.VideoCapture(first_file)
|
| 391 |
+
video_fps = cap.get(cv2.CAP_PROP_FPS)
|
| 392 |
+
total_frames_original = cap.get(cv2.CAP_PROP_FRAME_COUNT)
|
| 393 |
+
|
| 394 |
+
if video_fps == 0 or np.isnan(video_fps):
|
| 395 |
+
video_fps = 30
|
| 396 |
+
|
| 397 |
+
duration_sec = total_frames_original / video_fps
|
| 398 |
+
|
| 399 |
+
# Validate video duration
|
| 400 |
+
if duration_sec > MAX_FRAMES:
|
| 401 |
+
cap.release()
|
| 402 |
+
msg = f"Video is too long ({int(duration_sec)}s). Max allowed is {MAX_FRAMES}s to avoid ZeroGPU timeout."
|
| 403 |
+
logger.error(msg)
|
| 404 |
+
raise gr.Error(msg)
|
| 405 |
+
|
| 406 |
+
# Sample at 1 FPS
|
| 407 |
+
frame_interval = max(1, int(video_fps))
|
| 408 |
+
count = 0
|
| 409 |
+
saved_count = 0
|
| 410 |
+
|
| 411 |
+
while cap.isOpened():
|
| 412 |
+
ret, frame = cap.read()
|
| 413 |
+
if not ret:
|
| 414 |
+
break
|
| 415 |
+
|
| 416 |
+
if count % frame_interval == 0:
|
| 417 |
+
filename = f"frame_{saved_count:05d}.jpg"
|
| 418 |
+
filepath = os.path.join(output_folder, filename)
|
| 419 |
+
cv2.imwrite(filepath, frame)
|
| 420 |
+
frame_paths.append(filepath)
|
| 421 |
+
saved_count += 1
|
| 422 |
+
|
| 423 |
+
if saved_count > MAX_FRAMES:
|
| 424 |
+
cap.release()
|
| 425 |
+
raise gr.Error(f"Limit reached: > {MAX_FRAMES} frames extracted.")
|
| 426 |
+
|
| 427 |
+
count += 1
|
| 428 |
+
cap.release()
|
| 429 |
+
logger.info(f"Video sampled at 1 FPS. Total frames: {saved_count}")
|
| 430 |
+
|
| 431 |
+
else:
|
| 432 |
+
# Process image files
|
| 433 |
+
if len(input_list) > MAX_FRAMES:
|
| 434 |
+
raise gr.Error(f"Too many images! You uploaded {len(input_list)}. Max allowed is {MAX_FRAMES}.")
|
| 435 |
+
|
| 436 |
+
logger.info(f"Processing {len(input_list)} images...")
|
| 437 |
+
input_list.sort(key=lambda x: x.name if hasattr(x, 'name') else str(x))
|
| 438 |
+
|
| 439 |
+
for i, f in enumerate(input_list):
|
| 440 |
+
path = f.name if hasattr(f, 'name') else str(f)
|
| 441 |
+
try:
|
| 442 |
+
img = Image.open(path).convert("RGB")
|
| 443 |
+
filename = f"frame_{i:05d}.jpg"
|
| 444 |
+
filepath = os.path.join(output_folder, filename)
|
| 445 |
+
img.save(filepath)
|
| 446 |
+
frame_paths.append(filepath)
|
| 447 |
+
except Exception as e:
|
| 448 |
+
logger.warning(f"Skipping file {path}: {e}")
|
| 449 |
+
|
| 450 |
+
return output_folder, frame_paths
|
| 451 |
+
|
| 452 |
+
|
| 453 |
+
def create_video_overlay(frames_folder: str, masks_dict: dict, output_path: str, fps: int = 5) -> str:
|
| 454 |
+
"""
|
| 455 |
+
Creates a video from frames with segmentation masks overlaid.
|
| 456 |
+
|
| 457 |
+
Args:
|
| 458 |
+
frames_folder: Directory containing frame images
|
| 459 |
+
masks_dict: Dictionary mapping frame index to mask arrays
|
| 460 |
+
output_path: Output video file path
|
| 461 |
+
fps: Frames per second for output video
|
| 462 |
+
|
| 463 |
+
Returns:
|
| 464 |
+
Output video path or None if failed
|
| 465 |
+
"""
|
| 466 |
+
logger.info("Generating result video...")
|
| 467 |
+
frame_files = sorted([f for f in os.listdir(frames_folder) if f.endswith(".jpg")])
|
| 468 |
+
|
| 469 |
+
if not frame_files:
|
| 470 |
+
return None
|
| 471 |
+
|
| 472 |
+
first_frame = cv2.imread(os.path.join(frames_folder, frame_files[0]))
|
| 473 |
+
height, width, _ = first_frame.shape
|
| 474 |
+
fourcc = cv2.VideoWriter_fourcc(*'mp4v')
|
| 475 |
+
out = cv2.VideoWriter(output_path, fourcc, fps, (width, height))
|
| 476 |
+
|
| 477 |
+
# Orange/Gold color for mask overlay
|
| 478 |
+
mask_color = np.array([255, 100, 0], dtype=np.uint8)
|
| 479 |
+
|
| 480 |
+
for i, filename in enumerate(frame_files):
|
| 481 |
+
frame = cv2.imread(os.path.join(frames_folder, filename))
|
| 482 |
+
mask_overlay = np.zeros_like(frame)
|
| 483 |
+
|
| 484 |
+
if i in masks_dict:
|
| 485 |
+
masks_data = masks_dict[i]
|
| 486 |
+
masks_list = [masks_data] if isinstance(masks_data, np.ndarray) else (
|
| 487 |
+
masks_data if isinstance(masks_data, list) else []
|
| 488 |
+
)
|
| 489 |
+
for mask in masks_list:
|
| 490 |
+
mask_overlay[mask > 0] = mask_color
|
| 491 |
+
|
| 492 |
+
if np.any(mask_overlay):
|
| 493 |
+
frame = cv2.addWeighted(frame, 1, mask_overlay, 0.5, 0)
|
| 494 |
+
|
| 495 |
+
out.write(frame)
|
| 496 |
+
|
| 497 |
+
out.release()
|
| 498 |
+
return output_path
|
| 499 |
+
|
| 500 |
+
|
| 501 |
+
# ===========================================
|
| 502 |
+
# UNIQUE INSTANCE SEGMENTATION
|
| 503 |
+
# ===========================================
|
| 504 |
+
def process_unique_upload(input_files):
|
| 505 |
+
"""
|
| 506 |
+
Process uploaded files for Unique Instance segmentation.
|
| 507 |
+
Extracts frames and prepares the UI for annotation.
|
| 508 |
+
"""
|
| 509 |
+
if not input_files:
|
| 510 |
+
return None, None, [], "Please upload files first.", gr.Slider(value=0, maximum=0, visible=False)
|
| 511 |
+
|
| 512 |
+
temp_dir = tempfile.mkdtemp()
|
| 513 |
+
frames_dir, frame_paths = process_inputs_to_frames(input_files, temp_dir)
|
| 514 |
+
num_frames = len(frame_paths)
|
| 515 |
+
|
| 516 |
+
if num_frames == 0:
|
| 517 |
+
return None, None, [], "No frames extracted.", gr.Slider(value=0, maximum=0, visible=False)
|
| 518 |
+
|
| 519 |
+
new_slider = gr.Slider(
|
| 520 |
+
value=0,
|
| 521 |
+
minimum=0,
|
| 522 |
+
maximum=num_frames - 1,
|
| 523 |
+
step=1,
|
| 524 |
+
visible=True,
|
| 525 |
+
interactive=True,
|
| 526 |
+
label=f"Select Reference Frame (0 - {num_frames - 1})"
|
| 527 |
+
)
|
| 528 |
+
|
| 529 |
+
return frame_paths[0], frames_dir, [], f"Processed {num_frames} frames (1 FPS). Select target.", new_slider
|
| 530 |
+
|
| 531 |
+
|
| 532 |
+
def update_canvas_from_slider(frame_idx, frames_dir):
|
| 533 |
+
"""Update the displayed frame when slider changes."""
|
| 534 |
+
if not frames_dir or not os.path.exists(frames_dir):
|
| 535 |
+
return None, []
|
| 536 |
+
|
| 537 |
+
filename = f"frame_{int(frame_idx):05d}.jpg"
|
| 538 |
+
path = os.path.join(frames_dir, filename)
|
| 539 |
+
|
| 540 |
+
if os.path.exists(path):
|
| 541 |
+
img = cv2.cvtColor(cv2.imread(path), cv2.COLOR_BGR2RGB)
|
| 542 |
+
return img, []
|
| 543 |
+
|
| 544 |
+
return None, []
|
| 545 |
+
|
| 546 |
+
|
| 547 |
+
def add_point(img, evt: gr.SelectData, points_state):
|
| 548 |
+
"""Add a point annotation to the image."""
|
| 549 |
+
x, y = evt.index
|
| 550 |
+
points_state.append((x, y))
|
| 551 |
+
|
| 552 |
+
img_pil = Image.fromarray(img)
|
| 553 |
+
img_cv = cv2.cvtColor(np.array(img_pil), cv2.COLOR_RGB2BGR)
|
| 554 |
+
|
| 555 |
+
# Draw markers for all points
|
| 556 |
+
for px, py in points_state:
|
| 557 |
+
cv2.drawMarker(
|
| 558 |
+
img_cv, (px, py), (0, 255, 0),
|
| 559 |
+
markerType=cv2.MARKER_TILTED_CROSS,
|
| 560 |
+
markerSize=20,
|
| 561 |
+
thickness=3
|
| 562 |
+
)
|
| 563 |
+
|
| 564 |
+
return cv2.cvtColor(img_cv, cv2.COLOR_BGR2RGB), points_state
|
| 565 |
+
|
| 566 |
+
|
| 567 |
+
@spaces.GPU(duration=180)
|
| 568 |
+
def run_unique_segmentation(input_files, points_state, text_prompt, sam_encoder, offload_gpu, cleanup_interval, frame_idx_slider):
|
| 569 |
+
"""
|
| 570 |
+
Run Unique Instance segmentation on the uploaded frames.
|
| 571 |
+
Tracks a specific object identified by points or text description.
|
| 572 |
+
"""
|
| 573 |
+
if not input_files:
|
| 574 |
+
return None, "Error: Process input first."
|
| 575 |
+
|
| 576 |
+
# Wait for HF models to be downloaded
|
| 577 |
+
if t_hf.is_alive():
|
| 578 |
+
logger.info("Waiting for HF models download to finish...")
|
| 579 |
+
t_hf.join()
|
| 580 |
+
|
| 581 |
+
try:
|
| 582 |
+
logger.info("Processing inputs on GPU node...")
|
| 583 |
+
temp_dir = tempfile.mkdtemp()
|
| 584 |
+
# Re-extract frames to ensure they exist on GPU ephemeral storage
|
| 585 |
+
frames_dir, _ = process_inputs_to_frames(input_files, temp_dir)
|
| 586 |
+
|
| 587 |
+
logger.info("Initializing UniqueInstanceSegmenter...")
|
| 588 |
+
segmenter = UniqueInstanceSegmenter(
|
| 589 |
+
sam_encoder=sam_encoder,
|
| 590 |
+
memory_cleanup_interval=int(cleanup_interval),
|
| 591 |
+
device="cuda"
|
| 592 |
+
)
|
| 593 |
+
|
| 594 |
+
if offload_gpu:
|
| 595 |
+
segmenter.optimize_cuda_memory()
|
| 596 |
+
|
| 597 |
+
annotation_frame = f"frame_{int(frame_idx_slider):05d}.jpg"
|
| 598 |
+
|
| 599 |
+
if not os.path.exists(os.path.join(frames_dir, annotation_frame)):
|
| 600 |
+
return None, f"Error: Frame {annotation_frame} not found."
|
| 601 |
+
|
| 602 |
+
# Run segmentation based on input type
|
| 603 |
+
if text_prompt.strip():
|
| 604 |
+
logger.info(f"Mode: Text -> {text_prompt}")
|
| 605 |
+
result = segmenter.segment(
|
| 606 |
+
frames_path=frames_dir,
|
| 607 |
+
text=text_prompt,
|
| 608 |
+
annotation_frame=annotation_frame,
|
| 609 |
+
offload_frames_to_gpu=offload_gpu
|
| 610 |
+
)
|
| 611 |
+
else:
|
| 612 |
+
if not points_state:
|
| 613 |
+
return None, "Please add points or text."
|
| 614 |
+
logger.info(f"Mode: Points -> {points_state}")
|
| 615 |
+
result = segmenter.segment(
|
| 616 |
+
frames_path=frames_dir,
|
| 617 |
+
points=points_state,
|
| 618 |
+
annotation_frame=annotation_frame,
|
| 619 |
+
offload_frames_to_gpu=offload_gpu
|
| 620 |
+
)
|
| 621 |
+
|
| 622 |
+
output_vid = os.path.join(OUTPUT_BASE_DIR, "unique_output.mp4")
|
| 623 |
+
return create_video_overlay(frames_dir, result.masks, output_vid), f"Completed. {result.num_frames} frames processed."
|
| 624 |
+
|
| 625 |
+
except Exception as e:
|
| 626 |
+
import traceback
|
| 627 |
+
traceback.print_exc()
|
| 628 |
+
logger.error(str(e))
|
| 629 |
+
if isinstance(e, gr.Error):
|
| 630 |
+
raise e
|
| 631 |
+
return None, f"Error: {str(e)}"
|
| 632 |
+
|
| 633 |
+
|
| 634 |
+
# ===========================================
|
| 635 |
+
# GENERIC CATEGORY SEGMENTATION
|
| 636 |
+
# ===========================================
|
| 637 |
+
@spaces.GPU(duration=180)
|
| 638 |
+
def run_generic_segmentation(input_files, category, accept_thresh, reject_thresh, vlm_model_name):
|
| 639 |
+
"""
|
| 640 |
+
Run Generic Category segmentation on the uploaded frames.
|
| 641 |
+
Detects all instances of a specified category using VLM + segmentation.
|
| 642 |
+
|
| 643 |
+
IMPORTANT: This function starts Ollama server INSIDE the GPU context,
|
| 644 |
+
ensuring that Ollama can detect and use the GPU for inference.
|
| 645 |
+
"""
|
| 646 |
+
if not input_files:
|
| 647 |
+
return None, "Error: Upload input."
|
| 648 |
+
|
| 649 |
+
if not category.strip():
|
| 650 |
+
return None, "Error: Please specify a category to detect."
|
| 651 |
+
|
| 652 |
+
# Wait for model downloads to complete
|
| 653 |
+
if t_hf.is_alive():
|
| 654 |
+
logger.info("Waiting for HF models download...")
|
| 655 |
+
t_hf.join()
|
| 656 |
+
if t_ollama.is_alive():
|
| 657 |
+
logger.info("Waiting for Ollama models download...")
|
| 658 |
+
t_ollama.join()
|
| 659 |
+
|
| 660 |
+
try:
|
| 661 |
+
# =========================================================
|
| 662 |
+
# CRITICAL: Start Ollama INSIDE @spaces.GPU context
|
| 663 |
+
# This ensures Ollama detects and uses the GPU!
|
| 664 |
+
# =========================================================
|
| 665 |
+
logger.info("=" * 50)
|
| 666 |
+
logger.info("Starting Ollama server with GPU support...")
|
| 667 |
+
logger.info("=" * 50)
|
| 668 |
+
|
| 669 |
+
ensure_ollama_ready_gpu(vlm_model_name)
|
| 670 |
+
|
| 671 |
+
logger.info("Ollama is running with GPU. Processing inputs...")
|
| 672 |
+
|
| 673 |
+
# Process input frames
|
| 674 |
+
temp_dir = tempfile.mkdtemp()
|
| 675 |
+
frames_dir, _ = process_inputs_to_frames(input_files, temp_dir)
|
| 676 |
+
|
| 677 |
+
logger.info(f"Initializing GenericCategorySegmenter with VLM: {vlm_model_name}")
|
| 678 |
+
segmenter = GenericCategorySegmenter(
|
| 679 |
+
device="cuda",
|
| 680 |
+
vlm_model=vlm_model_name
|
| 681 |
+
)
|
| 682 |
+
|
| 683 |
+
logger.info(f"Detecting category: {category}")
|
| 684 |
+
result = segmenter.segment(
|
| 685 |
+
frames_path=frames_dir,
|
| 686 |
+
category=category,
|
| 687 |
+
accept_threshold=accept_thresh,
|
| 688 |
+
reject_threshold=reject_thresh,
|
| 689 |
+
save_debug=False
|
| 690 |
+
)
|
| 691 |
+
|
| 692 |
+
output_vid = os.path.join(OUTPUT_BASE_DIR, "generic_output.mp4")
|
| 693 |
+
total_detections = sum(len(d) for d in result.metadata['detections'].values())
|
| 694 |
+
|
| 695 |
+
return create_video_overlay(frames_dir, result.masks, output_vid), f"Completed! Total detections: {total_detections}"
|
| 696 |
+
|
| 697 |
+
except Exception as e:
|
| 698 |
+
import traceback
|
| 699 |
+
traceback.print_exc()
|
| 700 |
+
logger.error(f"Generic segmentation error: {e}")
|
| 701 |
+
if isinstance(e, gr.Error):
|
| 702 |
+
raise e
|
| 703 |
+
return None, f"Error: {e}"
|
| 704 |
+
|
| 705 |
+
|
| 706 |
+
# ===========================================
|
| 707 |
+
# GRADIO UI
|
| 708 |
+
# ===========================================
|
| 709 |
+
with gr.Blocks(title="ENEAS: Embedding-guided Neural Ensemble for Adaptive Segmentation") as demo:
|
| 710 |
+
gr.Markdown(
|
| 711 |
+
f"""
|
| 712 |
+
# ⚡ ENEAS: Embedding-guided Neural Ensemble for Adaptive Segmentation
|
| 713 |
+
|
| 714 |
+
**⚠️ IMPORTANT LIMITS:**
|
| 715 |
+
- Maximum **{MAX_FRAMES} FRAMES** to prevent ZeroGPU timeouts
|
| 716 |
+
- Videos are sampled at **1 FPS** → Max **{MAX_FRAMES} seconds** of video
|
| 717 |
+
- Exceeding these limits will stop execution
|
| 718 |
+
|
| 719 |
+
**💡 Note:** Generic Category detection uses Ollama VLM with GPU acceleration.
|
| 720 |
+
First request may take ~15-20 seconds to initialize the server.
|
| 721 |
+
"""
|
| 722 |
+
)
|
| 723 |
+
|
| 724 |
+
with gr.Tabs():
|
| 725 |
+
# ===========================================
|
| 726 |
+
# TAB 1: UNIQUE INSTANCE SEGMENTATION
|
| 727 |
+
# ===========================================
|
| 728 |
+
with gr.Tab("🎯 Unique Instance"):
|
| 729 |
+
gr.Markdown("Track a specific object. Upload Video (1 FPS extraction) OR Images.")
|
| 730 |
+
|
| 731 |
+
with gr.Row():
|
| 732 |
+
with gr.Column(scale=1):
|
| 733 |
+
u_file = gr.File(
|
| 734 |
+
label="Input (Video or Images)",
|
| 735 |
+
file_count="multiple",
|
| 736 |
+
file_types=["video", "image"]
|
| 737 |
+
)
|
| 738 |
+
u_btn_proc = gr.Button("▶️ 1. Process Input (Extract 1 FPS)", variant="secondary")
|
| 739 |
+
u_slider = gr.Slider(label="Frame Selector", visible=False)
|
| 740 |
+
|
| 741 |
+
with gr.Accordion("Advanced Options", open=False):
|
| 742 |
+
u_enc = gr.Dropdown(
|
| 743 |
+
["long-large", "long-small"],
|
| 744 |
+
value="long-small",
|
| 745 |
+
label="SAM2 Encoder"
|
| 746 |
+
)
|
| 747 |
+
u_offload = gr.Checkbox(label="GPU Memory Offload", value=False)
|
| 748 |
+
|
| 749 |
+
with gr.Column(scale=2):
|
| 750 |
+
u_path_frames_cpu = gr.Textbox(visible=False)
|
| 751 |
+
points_state = gr.State([])
|
| 752 |
+
|
| 753 |
+
u_img = gr.Image(
|
| 754 |
+
label="Reference Frame (Click to add points)",
|
| 755 |
+
interactive=True
|
| 756 |
+
)
|
| 757 |
+
u_txt = gr.Textbox(
|
| 758 |
+
label="Text Description (Grounding)",
|
| 759 |
+
placeholder="Points are ignored if text is provided."
|
| 760 |
+
)
|
| 761 |
+
u_btn_run = gr.Button("🚀 2. Run Segmentation", variant="primary")
|
| 762 |
+
u_out = gr.Video(label="Result")
|
| 763 |
+
u_status = gr.Textbox(label="Status", interactive=False)
|
| 764 |
+
|
| 765 |
+
# Event handlers
|
| 766 |
+
u_btn_proc.click(
|
| 767 |
+
process_unique_upload,
|
| 768 |
+
[u_file],
|
| 769 |
+
[u_img, u_path_frames_cpu, points_state, u_status, u_slider]
|
| 770 |
+
)
|
| 771 |
+
u_slider.change(
|
| 772 |
+
update_canvas_from_slider,
|
| 773 |
+
inputs=[u_slider, u_path_frames_cpu],
|
| 774 |
+
outputs=[u_img, points_state]
|
| 775 |
+
)
|
| 776 |
+
u_img.select(add_point, [u_img, points_state], [u_img, points_state])
|
| 777 |
+
u_btn_run.click(
|
| 778 |
+
run_unique_segmentation,
|
| 779 |
+
[u_file, points_state, u_txt, u_enc, u_offload, gr.Number(10, visible=False), u_slider],
|
| 780 |
+
[u_out, u_status]
|
| 781 |
+
)
|
| 782 |
+
|
| 783 |
+
# ===========================================
|
| 784 |
+
# TAB 2: GENERIC CATEGORY SEGMENTATION
|
| 785 |
+
# ===========================================
|
| 786 |
+
with gr.Tab("🔮 Generic Category"):
|
| 787 |
+
gr.Markdown(
|
| 788 |
+
f"""
|
| 789 |
+
Detect all instances of a category in every frame (Max {MAX_FRAMES} frames).
|
| 790 |
+
|
| 791 |
+
**🚀 GPU-Accelerated:** Ollama VLM runs on GPU for fast inference.
|
| 792 |
+
First request includes ~15-20s server startup time.
|
| 793 |
+
"""
|
| 794 |
+
)
|
| 795 |
+
|
| 796 |
+
with gr.Row():
|
| 797 |
+
g_file = gr.File(
|
| 798 |
+
label="Input (Video or Images)",
|
| 799 |
+
file_count="multiple",
|
| 800 |
+
file_types=["video", "image"]
|
| 801 |
+
)
|
| 802 |
+
g_cat = gr.Textbox(
|
| 803 |
+
label="Category to Detect",
|
| 804 |
+
placeholder="e.g., person, chair, car, dog"
|
| 805 |
+
)
|
| 806 |
+
g_btn = gr.Button("🔍 Run Detection", variant="primary")
|
| 807 |
+
|
| 808 |
+
with gr.Accordion("Detection Settings", open=True):
|
| 809 |
+
g_accept = gr.Slider(
|
| 810 |
+
0.0, 1.0,
|
| 811 |
+
value=0.30,
|
| 812 |
+
label="Accept Threshold",
|
| 813 |
+
info="Higher = more confident detections only"
|
| 814 |
+
)
|
| 815 |
+
g_reject = gr.Slider(
|
| 816 |
+
0.0, 1.0,
|
| 817 |
+
value=0.1,
|
| 818 |
+
label="Reject Threshold",
|
| 819 |
+
info="Lower = filter out more false positives"
|
| 820 |
+
)
|
| 821 |
+
g_vlm = gr.Dropdown(
|
| 822 |
+
choices=VLM_MODELS,
|
| 823 |
+
value=VLM_MODELS[0],
|
| 824 |
+
label="VLM Model",
|
| 825 |
+
info="Larger models are more accurate but slower"
|
| 826 |
+
)
|
| 827 |
+
|
| 828 |
+
g_out = gr.Video(label="Result")
|
| 829 |
+
g_stat = gr.Textbox(label="Detection Statistics", interactive=False)
|
| 830 |
+
|
| 831 |
+
g_btn.click(
|
| 832 |
+
run_generic_segmentation,
|
| 833 |
+
[g_file, g_cat, g_accept, g_reject, g_vlm],
|
| 834 |
+
[g_out, g_stat]
|
| 835 |
+
)
|
| 836 |
+
|
| 837 |
+
|
| 838 |
+
# ===========================================
|
| 839 |
+
# MAIN ENTRY POINT
|
| 840 |
+
# ===========================================
|
| 841 |
+
if __name__ == "__main__":
|
| 842 |
+
demo.launch()
|
eneas/__init__.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
ENEAS - Embedding-guided Neural Ensemble for Adaptive Segmentation
|
| 3 |
+
|
| 4 |
+
Frame sequence segmentation library with temporal tracking and category detection.
|
| 5 |
+
|
| 6 |
+
Provides tools for:
|
| 7 |
+
- Unique instance segmentation with temporal tracking
|
| 8 |
+
- Generic category segmentation across frames
|
| 9 |
+
"""
|
| 10 |
+
|
| 11 |
+
__version__ = "0.1.0"
|
| 12 |
+
|
| 13 |
+
from .segmentation import (
|
| 14 |
+
GenericCategorySegmenter,
|
| 15 |
+
SegmentationResult,
|
| 16 |
+
UniqueInstanceSegmenter,
|
| 17 |
+
)
|
| 18 |
+
|
| 19 |
+
__all__ = [
|
| 20 |
+
"GenericCategorySegmenter",
|
| 21 |
+
"SegmentationResult",
|
| 22 |
+
"UniqueInstanceSegmenter",
|
| 23 |
+
]
|
eneas/__main__.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
Entry point for running eneas as a module: python -m eneas
|
| 3 |
+
"""
|
| 4 |
+
|
| 5 |
+
from eneas.cli import main
|
| 6 |
+
|
| 7 |
+
if __name__ == "__main__":
|
| 8 |
+
main()
|
eneas/__pycache__/__init__.cpython-312.pyc
ADDED
|
Binary file (651 Bytes). View file
|
|
|
eneas/__pycache__/__init__.cpython-313.pyc
ADDED
|
Binary file (559 Bytes). View file
|
|
|
eneas/__pycache__/__main__.cpython-312.pyc
ADDED
|
Binary file (354 Bytes). View file
|
|
|
eneas/__pycache__/cli.cpython-312.pyc
ADDED
|
Binary file (21.8 kB). View file
|
|
|
eneas/cli.py
ADDED
|
@@ -0,0 +1,576 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
ENEAS CLI - Embedding-guided Neural Ensemble for Adaptive Segmentation
|
| 3 |
+
|
| 4 |
+
Command-line interface for frame sequence segmentation.
|
| 5 |
+
"""
|
| 6 |
+
|
| 7 |
+
import logging
|
| 8 |
+
import time
|
| 9 |
+
from pathlib import Path
|
| 10 |
+
from typing import Annotated
|
| 11 |
+
|
| 12 |
+
import typer
|
| 13 |
+
|
| 14 |
+
from eneas.segmentation import GenericCategorySegmenter, UniqueInstanceSegmenter
|
| 15 |
+
|
| 16 |
+
app = typer.Typer(
|
| 17 |
+
name="eneas",
|
| 18 |
+
help="ENEAS - Embedding-guided Neural Ensemble for Adaptive Segmentation",
|
| 19 |
+
add_completion=False,
|
| 20 |
+
)
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
def setup_logging(verbose: bool) -> None:
|
| 24 |
+
"""Configure logging."""
|
| 25 |
+
level = logging.DEBUG if verbose else logging.INFO
|
| 26 |
+
logging.basicConfig(
|
| 27 |
+
level=level,
|
| 28 |
+
format="%(levelname)s: %(message)s",
|
| 29 |
+
)
|
| 30 |
+
# Also configure eneas loggers
|
| 31 |
+
logging.getLogger("eneas").setLevel(level)
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
def parse_points(points_str: list[str]) -> list[tuple[int, int]]:
|
| 35 |
+
"""Parse point coordinates from CLI arguments."""
|
| 36 |
+
result = []
|
| 37 |
+
for i, point in enumerate(points_str):
|
| 38 |
+
parts = point.split(",")
|
| 39 |
+
if len(parts) != 2:
|
| 40 |
+
typer.echo(f"Error: Point {i + 1} must be in format 'x,y', got '{point}'", err=True)
|
| 41 |
+
raise typer.Exit(code=1)
|
| 42 |
+
try:
|
| 43 |
+
x, y = int(parts[0].strip()), int(parts[1].strip())
|
| 44 |
+
result.append((x, y))
|
| 45 |
+
except ValueError:
|
| 46 |
+
typer.echo(
|
| 47 |
+
f"Error: Point {i + 1} coordinates must be integers, got '{point}'", err=True
|
| 48 |
+
)
|
| 49 |
+
raise typer.Exit(code=1) from None
|
| 50 |
+
return result
|
| 51 |
+
|
| 52 |
+
|
| 53 |
+
def parse_labels(labels_str: list[str] | None, num_points: int) -> list[int]:
|
| 54 |
+
"""Parse point labels from CLI arguments."""
|
| 55 |
+
if not labels_str:
|
| 56 |
+
# Default: all positive points
|
| 57 |
+
return [1] * num_points
|
| 58 |
+
|
| 59 |
+
if len(labels_str) != num_points:
|
| 60 |
+
typer.echo(
|
| 61 |
+
f"Error: Number of labels ({len(labels_str)}) must match number of points ({num_points})",
|
| 62 |
+
err=True,
|
| 63 |
+
)
|
| 64 |
+
raise typer.Exit(code=1)
|
| 65 |
+
|
| 66 |
+
result = []
|
| 67 |
+
for i, label in enumerate(labels_str):
|
| 68 |
+
try:
|
| 69 |
+
val = int(label.strip())
|
| 70 |
+
if val not in (0, 1):
|
| 71 |
+
raise ValueError
|
| 72 |
+
result.append(val)
|
| 73 |
+
except ValueError:
|
| 74 |
+
typer.echo(f"Error: Label {i + 1} must be 0 or 1, got '{label}'", err=True)
|
| 75 |
+
raise typer.Exit(code=1) from None
|
| 76 |
+
return result
|
| 77 |
+
|
| 78 |
+
|
| 79 |
+
def validate_paths(frames_path: Path, annotation_frame: str | None) -> None:
|
| 80 |
+
"""Validate input paths exist."""
|
| 81 |
+
if not frames_path.exists():
|
| 82 |
+
typer.echo(f"Error: Frames path does not exist: {frames_path}", err=True)
|
| 83 |
+
raise typer.Exit(code=1)
|
| 84 |
+
|
| 85 |
+
if not frames_path.is_dir():
|
| 86 |
+
typer.echo(f"Error: Frames path is not a directory: {frames_path}", err=True)
|
| 87 |
+
raise typer.Exit(code=1)
|
| 88 |
+
|
| 89 |
+
# Check for image files
|
| 90 |
+
image_extensions = {".jpg", ".jpeg", ".png", ".bmp", ".tiff", ".tif"}
|
| 91 |
+
image_files = [f for f in frames_path.iterdir() if f.suffix.lower() in image_extensions]
|
| 92 |
+
if not image_files:
|
| 93 |
+
typer.echo(f"Error: No image files found in: {frames_path}", err=True)
|
| 94 |
+
raise typer.Exit(code=1)
|
| 95 |
+
|
| 96 |
+
# Validate annotation frame if specified
|
| 97 |
+
if annotation_frame:
|
| 98 |
+
annotation_path = frames_path / annotation_frame
|
| 99 |
+
if not annotation_path.exists():
|
| 100 |
+
typer.echo(f"Error: Annotation frame not found: {annotation_path}", err=True)
|
| 101 |
+
raise typer.Exit(code=1)
|
| 102 |
+
|
| 103 |
+
|
| 104 |
+
def print_banner():
|
| 105 |
+
"""Print welcome banner."""
|
| 106 |
+
typer.echo("\n" + "=" * 70)
|
| 107 |
+
typer.echo(" eneas - Frame Sequence Segmentation with Temporal Tracking")
|
| 108 |
+
typer.echo("=" * 70 + "\n")
|
| 109 |
+
|
| 110 |
+
|
| 111 |
+
def print_config(config: dict):
|
| 112 |
+
"""Print configuration table."""
|
| 113 |
+
typer.echo("Configuration:")
|
| 114 |
+
typer.echo("-" * 70)
|
| 115 |
+
for key, value in config.items():
|
| 116 |
+
typer.echo(f" {key:<30} {value}")
|
| 117 |
+
typer.echo("-" * 70 + "\n")
|
| 118 |
+
|
| 119 |
+
|
| 120 |
+
def print_summary_unique_instance(result, elapsed_time: float) -> None:
|
| 121 |
+
"""Print unique instance segmentation results summary."""
|
| 122 |
+
typer.echo("\n" + "=" * 70)
|
| 123 |
+
typer.echo(" SEGMENTATION RESULTS")
|
| 124 |
+
typer.echo("=" * 70)
|
| 125 |
+
typer.echo(f" Processed Frames: {result.num_frames}")
|
| 126 |
+
typer.echo(
|
| 127 |
+
f" Processing Time: {elapsed_time:.2f}s ({result.num_frames / elapsed_time:.1f} fps)"
|
| 128 |
+
)
|
| 129 |
+
typer.echo(f" Output Directory: {result.output_dir}")
|
| 130 |
+
|
| 131 |
+
if result.initial_mask_path:
|
| 132 |
+
typer.echo(f" Initial Mask Visualization: {result.initial_mask_path}")
|
| 133 |
+
|
| 134 |
+
if result.mask_paths:
|
| 135 |
+
typer.echo(f" Saved Mask Files: {len(result.mask_paths)}")
|
| 136 |
+
typer.echo(f" First Mask File: {result.mask_paths[0]}")
|
| 137 |
+
|
| 138 |
+
# Metadata
|
| 139 |
+
metadata = result.metadata
|
| 140 |
+
typer.echo(f"\n Annotation Frame: {metadata['annotation_frame']}")
|
| 141 |
+
typer.echo(f" Segmentation Mode: {metadata['mode']}")
|
| 142 |
+
|
| 143 |
+
# Show mode-specific information
|
| 144 |
+
if metadata["mode"] == "text-based":
|
| 145 |
+
typer.echo(f" Text Description: {metadata['text']}")
|
| 146 |
+
typer.echo(f" Detected Bounding Box: {metadata['bbox']}")
|
| 147 |
+
else: # point-based
|
| 148 |
+
typer.echo(f" Annotation Points: {metadata['points']}")
|
| 149 |
+
typer.echo(f" Point Labels: {metadata['labels']}")
|
| 150 |
+
|
| 151 |
+
typer.echo("=" * 70 + "\n")
|
| 152 |
+
|
| 153 |
+
|
| 154 |
+
def print_summary_generic_category(result, elapsed_time: float) -> None:
|
| 155 |
+
"""Print generic category detection results summary."""
|
| 156 |
+
typer.echo("\n" + "=" * 70)
|
| 157 |
+
typer.echo(" DETECTION RESULTS")
|
| 158 |
+
typer.echo("=" * 70)
|
| 159 |
+
typer.echo(f" Processed Frames: {result.num_frames}")
|
| 160 |
+
typer.echo(
|
| 161 |
+
f" Processing Time: {elapsed_time:.2f}s ({result.num_frames / elapsed_time:.1f} fps)"
|
| 162 |
+
)
|
| 163 |
+
typer.echo(f" Output Directory: {result.output_dir}")
|
| 164 |
+
|
| 165 |
+
# Metadata
|
| 166 |
+
metadata = result.metadata
|
| 167 |
+
typer.echo(f"\n Category: {metadata['category']}")
|
| 168 |
+
typer.echo(f" Accept Threshold: {metadata['accept_threshold']}")
|
| 169 |
+
typer.echo(f" Reject Threshold: {metadata['reject_threshold']}")
|
| 170 |
+
|
| 171 |
+
# Count total detections
|
| 172 |
+
total_detections = sum(len(dets) for dets in metadata["detections"].values())
|
| 173 |
+
typer.echo(f" Total Detections: {total_detections}")
|
| 174 |
+
|
| 175 |
+
# VLM usage statistics
|
| 176 |
+
typer.echo(
|
| 177 |
+
f"\n VLM Validation Usage: {metadata['vlm_usage_count']}/{metadata['num_frames_total']} frames ({metadata['vlm_usage_percentage']:.1f}%)"
|
| 178 |
+
)
|
| 179 |
+
|
| 180 |
+
typer.echo("=" * 70 + "\n")
|
| 181 |
+
|
| 182 |
+
|
| 183 |
+
@app.command(name="unique_instance")
|
| 184 |
+
def unique_instance(
|
| 185 |
+
frames_path: Annotated[
|
| 186 |
+
Path,
|
| 187 |
+
typer.Option(
|
| 188 |
+
"--frames-path",
|
| 189 |
+
"-i",
|
| 190 |
+
help="Directory containing frame sequence (images)",
|
| 191 |
+
exists=True,
|
| 192 |
+
file_okay=False,
|
| 193 |
+
dir_okay=True,
|
| 194 |
+
resolve_path=True,
|
| 195 |
+
),
|
| 196 |
+
],
|
| 197 |
+
points: Annotated[
|
| 198 |
+
list[str] | None,
|
| 199 |
+
typer.Option(
|
| 200 |
+
"--points",
|
| 201 |
+
"-p",
|
| 202 |
+
help="Annotation points in format 'x,y'. Can specify multiple times. Example: -p 400,300 -p 350,280",
|
| 203 |
+
),
|
| 204 |
+
] = None,
|
| 205 |
+
labels: Annotated[
|
| 206 |
+
list[str] | None,
|
| 207 |
+
typer.Option(
|
| 208 |
+
"--labels",
|
| 209 |
+
"-l",
|
| 210 |
+
help="Point labels: 1 (positive/foreground) or 0 (negative/background). Must match number of points",
|
| 211 |
+
),
|
| 212 |
+
] = None,
|
| 213 |
+
text: Annotated[
|
| 214 |
+
str | None,
|
| 215 |
+
typer.Option(
|
| 216 |
+
"--text",
|
| 217 |
+
"-t",
|
| 218 |
+
help="Text description of the object to segment (mutually exclusive with --points)",
|
| 219 |
+
),
|
| 220 |
+
] = None,
|
| 221 |
+
annotation_frame: Annotated[
|
| 222 |
+
str | None,
|
| 223 |
+
typer.Option(
|
| 224 |
+
"--annotation-frame",
|
| 225 |
+
"-f",
|
| 226 |
+
help="Frame filename to use for annotation. If not specified, uses first frame",
|
| 227 |
+
),
|
| 228 |
+
] = None,
|
| 229 |
+
output_dir: Annotated[
|
| 230 |
+
Path | None,
|
| 231 |
+
typer.Option(
|
| 232 |
+
"--output-dir",
|
| 233 |
+
"-o",
|
| 234 |
+
help="Output directory for results",
|
| 235 |
+
),
|
| 236 |
+
] = None,
|
| 237 |
+
save_masks: Annotated[
|
| 238 |
+
bool,
|
| 239 |
+
typer.Option(
|
| 240 |
+
"--save-masks",
|
| 241 |
+
help="Save binary masks (including initial_mask.jpg visualization) as PNG files to disk",
|
| 242 |
+
),
|
| 243 |
+
] = False,
|
| 244 |
+
offload_frames_to_gpu: Annotated[
|
| 245 |
+
bool,
|
| 246 |
+
typer.Option(
|
| 247 |
+
"--offload-frames-to-gpu",
|
| 248 |
+
help="Keep frames in GPU memory (faster but uses MUCH more VRAM). Default: False (CPU)",
|
| 249 |
+
),
|
| 250 |
+
] = False,
|
| 251 |
+
sam_encoder: Annotated[
|
| 252 |
+
str,
|
| 253 |
+
typer.Option(
|
| 254 |
+
"--sam-encoder",
|
| 255 |
+
"-s",
|
| 256 |
+
help="SAM encoder variant. LongSAM (long-*) best for temporal tracking. Options: long-large (default), long-small, long-tiny, small, tiny, etc.",
|
| 257 |
+
),
|
| 258 |
+
] = "long-large",
|
| 259 |
+
memory_cleanup_interval: Annotated[
|
| 260 |
+
int,
|
| 261 |
+
typer.Option(
|
| 262 |
+
"--memory-cleanup-interval",
|
| 263 |
+
help="CUDA memory cleanup interval (frames). Lower = less memory, slower",
|
| 264 |
+
),
|
| 265 |
+
] = 10,
|
| 266 |
+
optimize_cuda_memory: Annotated[
|
| 267 |
+
bool,
|
| 268 |
+
typer.Option(
|
| 269 |
+
"--optimize-cuda-memory",
|
| 270 |
+
help="Enable CUDA memory optimization. Useful for low-memory GPUs",
|
| 271 |
+
),
|
| 272 |
+
] = False,
|
| 273 |
+
verbose: Annotated[
|
| 274 |
+
bool,
|
| 275 |
+
typer.Option(
|
| 276 |
+
"--verbose",
|
| 277 |
+
"-v",
|
| 278 |
+
help="Enable verbose logging",
|
| 279 |
+
),
|
| 280 |
+
] = False,
|
| 281 |
+
save_debug: Annotated[
|
| 282 |
+
bool,
|
| 283 |
+
typer.Option(
|
| 284 |
+
"--save-debug",
|
| 285 |
+
help="Save debug visualizations (sam_debug/)",
|
| 286 |
+
),
|
| 287 |
+
] = False,
|
| 288 |
+
):
|
| 289 |
+
"""
|
| 290 |
+
Segment a unique object instance across frame sequences.
|
| 291 |
+
|
| 292 |
+
NOTE: Requires a CUDA-capable GPU. CPU and MPS are not supported.
|
| 293 |
+
"""
|
| 294 |
+
|
| 295 |
+
setup_logging(verbose)
|
| 296 |
+
|
| 297 |
+
print_banner()
|
| 298 |
+
|
| 299 |
+
try:
|
| 300 |
+
if text is not None and points is not None:
|
| 301 |
+
typer.echo("Error: --text and --points are mutually exclusive", err=True)
|
| 302 |
+
raise typer.Exit(code=1)
|
| 303 |
+
|
| 304 |
+
if text is None and points is None:
|
| 305 |
+
typer.echo("Error: Either --text or --points must be provided", err=True)
|
| 306 |
+
raise typer.Exit(code=1)
|
| 307 |
+
|
| 308 |
+
if text is not None and labels is not None:
|
| 309 |
+
typer.echo("Error: --labels cannot be used with --text", err=True)
|
| 310 |
+
raise typer.Exit(code=1)
|
| 311 |
+
|
| 312 |
+
validate_paths(frames_path, annotation_frame)
|
| 313 |
+
|
| 314 |
+
if output_dir is None:
|
| 315 |
+
output_dir = Path("./outputs")
|
| 316 |
+
|
| 317 |
+
valid_encoders = [
|
| 318 |
+
"tiny",
|
| 319 |
+
"small",
|
| 320 |
+
"base",
|
| 321 |
+
"large",
|
| 322 |
+
"long-tiny",
|
| 323 |
+
"long-small",
|
| 324 |
+
"long-base",
|
| 325 |
+
"long-large",
|
| 326 |
+
"legacy-tiny",
|
| 327 |
+
"legacy-small",
|
| 328 |
+
"legacy-base",
|
| 329 |
+
"legacy-large",
|
| 330 |
+
]
|
| 331 |
+
if sam_encoder not in valid_encoders:
|
| 332 |
+
typer.echo(f"Error: Invalid sam_encoder '{sam_encoder}'", err=True)
|
| 333 |
+
raise typer.Exit(code=1)
|
| 334 |
+
|
| 335 |
+
config = {
|
| 336 |
+
"Frames Path": str(frames_path),
|
| 337 |
+
"Mode": "Text-based" if text else "Point-based",
|
| 338 |
+
"Annotation Frame": annotation_frame or "[first frame]",
|
| 339 |
+
"Output Directory": str(output_dir),
|
| 340 |
+
"Save Masks to Disk": "Yes" if save_masks else "No",
|
| 341 |
+
"Frames Location": "GPU (faster, more VRAM)"
|
| 342 |
+
if offload_frames_to_gpu
|
| 343 |
+
else "CPU (slower, less VRAM)",
|
| 344 |
+
"SAM Encoder": sam_encoder,
|
| 345 |
+
"Memory Cleanup Interval": str(memory_cleanup_interval),
|
| 346 |
+
"CUDA Optimization": "Enabled" if optimize_cuda_memory else "Disabled",
|
| 347 |
+
}
|
| 348 |
+
|
| 349 |
+
if text:
|
| 350 |
+
config["Text"] = text
|
| 351 |
+
else:
|
| 352 |
+
parsed_points = parse_points(points)
|
| 353 |
+
parsed_labels = parse_labels(labels, len(parsed_points))
|
| 354 |
+
config["Points"] = str(parsed_points)
|
| 355 |
+
config["Labels"] = str(parsed_labels)
|
| 356 |
+
|
| 357 |
+
print_config(config)
|
| 358 |
+
|
| 359 |
+
typer.echo("Initializing segmenter (requires CUDA GPU)...")
|
| 360 |
+
segmenter = UniqueInstanceSegmenter(
|
| 361 |
+
sam_encoder=sam_encoder,
|
| 362 |
+
memory_cleanup_interval=memory_cleanup_interval,
|
| 363 |
+
)
|
| 364 |
+
|
| 365 |
+
if optimize_cuda_memory:
|
| 366 |
+
segmenter.optimize_cuda_memory()
|
| 367 |
+
typer.echo("✓ CUDA memory optimization enabled")
|
| 368 |
+
|
| 369 |
+
typer.echo("✓ Segmenter initialized\n")
|
| 370 |
+
|
| 371 |
+
typer.echo("Processing frames...")
|
| 372 |
+
start_time = time.time()
|
| 373 |
+
|
| 374 |
+
if text:
|
| 375 |
+
result = segmenter.segment(
|
| 376 |
+
frames_path=str(frames_path),
|
| 377 |
+
text=text,
|
| 378 |
+
annotation_frame=annotation_frame,
|
| 379 |
+
output_dir=str(output_dir),
|
| 380 |
+
offload_frames_to_gpu=offload_frames_to_gpu,
|
| 381 |
+
save_masks=save_masks,
|
| 382 |
+
save_debug=save_debug,
|
| 383 |
+
)
|
| 384 |
+
else:
|
| 385 |
+
result = segmenter.segment(
|
| 386 |
+
frames_path=str(frames_path),
|
| 387 |
+
points=parsed_points,
|
| 388 |
+
labels=parsed_labels,
|
| 389 |
+
annotation_frame=annotation_frame,
|
| 390 |
+
output_dir=str(output_dir),
|
| 391 |
+
offload_frames_to_gpu=offload_frames_to_gpu,
|
| 392 |
+
save_masks=save_masks,
|
| 393 |
+
save_debug=save_debug,
|
| 394 |
+
)
|
| 395 |
+
|
| 396 |
+
elapsed_time = time.time() - start_time
|
| 397 |
+
|
| 398 |
+
typer.echo("✓ Segmentation complete!\n")
|
| 399 |
+
|
| 400 |
+
print_summary_unique_instance(result, elapsed_time)
|
| 401 |
+
|
| 402 |
+
except typer.Exit:
|
| 403 |
+
raise
|
| 404 |
+
except Exception as e:
|
| 405 |
+
typer.echo(f"\n✗ Error: {e}\n", err=True)
|
| 406 |
+
if verbose:
|
| 407 |
+
import traceback
|
| 408 |
+
|
| 409 |
+
traceback.print_exc()
|
| 410 |
+
raise typer.Exit(code=1) from None
|
| 411 |
+
|
| 412 |
+
|
| 413 |
+
@app.command(name="generic_category")
|
| 414 |
+
def generic_category(
|
| 415 |
+
frames_path: Annotated[
|
| 416 |
+
Path,
|
| 417 |
+
typer.Option(
|
| 418 |
+
"--frames-path",
|
| 419 |
+
"-i",
|
| 420 |
+
help="Directory containing frame sequence (images)",
|
| 421 |
+
exists=True,
|
| 422 |
+
file_okay=False,
|
| 423 |
+
dir_okay=True,
|
| 424 |
+
resolve_path=True,
|
| 425 |
+
),
|
| 426 |
+
],
|
| 427 |
+
category: Annotated[
|
| 428 |
+
str,
|
| 429 |
+
typer.Option(
|
| 430 |
+
"--category",
|
| 431 |
+
"-c",
|
| 432 |
+
help="Category to detect (e.g., 'person', 'chair', 'car')",
|
| 433 |
+
),
|
| 434 |
+
],
|
| 435 |
+
output_dir: Annotated[
|
| 436 |
+
Path | None,
|
| 437 |
+
typer.Option(
|
| 438 |
+
"--output-dir",
|
| 439 |
+
"-o",
|
| 440 |
+
help="Output directory for results",
|
| 441 |
+
),
|
| 442 |
+
] = None,
|
| 443 |
+
accept_threshold: Annotated[
|
| 444 |
+
float,
|
| 445 |
+
typer.Option(
|
| 446 |
+
"--accept-threshold",
|
| 447 |
+
help="Image-text similarity threshold for auto-accepting boxes (0.0-1.0)",
|
| 448 |
+
),
|
| 449 |
+
] = 0.90,
|
| 450 |
+
reject_threshold: Annotated[
|
| 451 |
+
float,
|
| 452 |
+
typer.Option(
|
| 453 |
+
"--reject-threshold",
|
| 454 |
+
help="Image-text similarity threshold for auto-rejecting boxes (0.0-1.0)",
|
| 455 |
+
),
|
| 456 |
+
] = 0.10,
|
| 457 |
+
verbose: Annotated[
|
| 458 |
+
bool,
|
| 459 |
+
typer.Option(
|
| 460 |
+
"--verbose",
|
| 461 |
+
"-v",
|
| 462 |
+
help="Enable verbose logging",
|
| 463 |
+
),
|
| 464 |
+
] = False,
|
| 465 |
+
save_debug: Annotated[
|
| 466 |
+
bool,
|
| 467 |
+
typer.Option(
|
| 468 |
+
"--save-debug",
|
| 469 |
+
help="Save debug visualizations (grounding_debug/, image_text_debug/, vlm_debug/, sam_debug/, detections_debug/)",
|
| 470 |
+
),
|
| 471 |
+
] = False,
|
| 472 |
+
save_masks: Annotated[
|
| 473 |
+
bool,
|
| 474 |
+
typer.Option(
|
| 475 |
+
"--save-masks",
|
| 476 |
+
help="Save binary segmentation masks as PNG files to disk",
|
| 477 |
+
),
|
| 478 |
+
] = False,
|
| 479 |
+
vlm_model: Annotated[
|
| 480 |
+
str,
|
| 481 |
+
typer.Option(
|
| 482 |
+
"--vlm-model",
|
| 483 |
+
help="VLM model for validation. Options: 'qwen3-vl:2b-instruct-q8_0' (default, faster), 'qwen3-vl:4b-instruct-q8_0' (better quality)",
|
| 484 |
+
),
|
| 485 |
+
] = "qwen3-vl:2b-instruct-q8_0",
|
| 486 |
+
):
|
| 487 |
+
"""
|
| 488 |
+
Detect and segment instances of a category across frame sequences.
|
| 489 |
+
"""
|
| 490 |
+
|
| 491 |
+
setup_logging(verbose)
|
| 492 |
+
|
| 493 |
+
print_banner()
|
| 494 |
+
|
| 495 |
+
try:
|
| 496 |
+
validate_paths(frames_path, annotation_frame=None)
|
| 497 |
+
|
| 498 |
+
if output_dir is None:
|
| 499 |
+
output_dir = Path("./outputs")
|
| 500 |
+
|
| 501 |
+
# Validate thresholds
|
| 502 |
+
if not 0.0 <= accept_threshold <= 1.0:
|
| 503 |
+
typer.echo(
|
| 504 |
+
f"Error: accept_threshold must be between 0.0 and 1.0, got {accept_threshold}",
|
| 505 |
+
err=True,
|
| 506 |
+
)
|
| 507 |
+
raise typer.Exit(code=1)
|
| 508 |
+
|
| 509 |
+
if not 0.0 <= reject_threshold <= 1.0:
|
| 510 |
+
typer.echo(
|
| 511 |
+
f"Error: reject_threshold must be between 0.0 and 1.0, got {reject_threshold}",
|
| 512 |
+
err=True,
|
| 513 |
+
)
|
| 514 |
+
raise typer.Exit(code=1)
|
| 515 |
+
|
| 516 |
+
if reject_threshold >= accept_threshold:
|
| 517 |
+
typer.echo(
|
| 518 |
+
f"Error: reject_threshold ({reject_threshold}) must be < accept_threshold ({accept_threshold})",
|
| 519 |
+
err=True,
|
| 520 |
+
)
|
| 521 |
+
raise typer.Exit(code=1)
|
| 522 |
+
|
| 523 |
+
config = {
|
| 524 |
+
"Frames Path": str(frames_path),
|
| 525 |
+
"Category": category,
|
| 526 |
+
"Output Directory": str(output_dir),
|
| 527 |
+
"Accept Threshold": f"{accept_threshold}",
|
| 528 |
+
"Reject Threshold": f"{reject_threshold}",
|
| 529 |
+
"Save Masks to Disk": "Yes" if save_masks else "No",
|
| 530 |
+
"VLM Model": vlm_model,
|
| 531 |
+
}
|
| 532 |
+
|
| 533 |
+
print_config(config)
|
| 534 |
+
|
| 535 |
+
typer.echo("Initializing detector (requires CUDA GPU)...")
|
| 536 |
+
segmenter = GenericCategorySegmenter(vlm_model=vlm_model)
|
| 537 |
+
|
| 538 |
+
typer.echo("✓ Detector initialized\n")
|
| 539 |
+
|
| 540 |
+
typer.echo("Processing frames...")
|
| 541 |
+
start_time = time.time()
|
| 542 |
+
|
| 543 |
+
result = segmenter.segment(
|
| 544 |
+
frames_path=str(frames_path),
|
| 545 |
+
category=category,
|
| 546 |
+
output_dir=str(output_dir),
|
| 547 |
+
accept_threshold=accept_threshold,
|
| 548 |
+
reject_threshold=reject_threshold,
|
| 549 |
+
save_debug=save_debug,
|
| 550 |
+
save_masks=save_masks,
|
| 551 |
+
)
|
| 552 |
+
|
| 553 |
+
elapsed_time = time.time() - start_time
|
| 554 |
+
|
| 555 |
+
typer.echo("✓ Segmentation complete!\n")
|
| 556 |
+
|
| 557 |
+
print_summary_generic_category(result, elapsed_time)
|
| 558 |
+
|
| 559 |
+
except typer.Exit:
|
| 560 |
+
raise
|
| 561 |
+
except Exception as e:
|
| 562 |
+
typer.echo(f"\n✗ Error: {e}\n", err=True)
|
| 563 |
+
if verbose:
|
| 564 |
+
import traceback
|
| 565 |
+
|
| 566 |
+
traceback.print_exc()
|
| 567 |
+
raise typer.Exit(code=1) from None
|
| 568 |
+
|
| 569 |
+
|
| 570 |
+
def main():
|
| 571 |
+
"""Main entry point for the CLI."""
|
| 572 |
+
app()
|
| 573 |
+
|
| 574 |
+
|
| 575 |
+
if __name__ == "__main__":
|
| 576 |
+
main()
|
eneas/segmentation/__init__.py
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
eneas Segmentation Module
|
| 3 |
+
|
| 4 |
+
Provides frame sequence segmentation tools for unique instance tracking
|
| 5 |
+
and generic category detection.
|
| 6 |
+
"""
|
| 7 |
+
|
| 8 |
+
from .generic_category import GenericCategorySegmenter
|
| 9 |
+
from .types import SegmentationResult
|
| 10 |
+
from .unique_instance import UniqueInstanceSegmenter
|
| 11 |
+
|
| 12 |
+
__all__ = [
|
| 13 |
+
"UniqueInstanceSegmenter",
|
| 14 |
+
"GenericCategorySegmenter",
|
| 15 |
+
"SegmentationResult",
|
| 16 |
+
]
|
eneas/segmentation/__pycache__/__init__.cpython-312.pyc
ADDED
|
Binary file (556 Bytes). View file
|
|
|
eneas/segmentation/__pycache__/__init__.cpython-313.pyc
ADDED
|
Binary file (557 Bytes). View file
|
|
|
eneas/segmentation/__pycache__/generic_category.cpython-312.pyc
ADDED
|
Binary file (44.1 kB). View file
|
|
|
eneas/segmentation/__pycache__/generic_category.cpython-313.pyc
ADDED
|
Binary file (21.7 kB). View file
|
|
|
eneas/segmentation/__pycache__/model_manager.cpython-312.pyc
ADDED
|
Binary file (4.92 kB). View file
|
|
|
eneas/segmentation/__pycache__/model_manager.cpython-313.pyc
ADDED
|
Binary file (7.15 kB). View file
|
|
|
eneas/segmentation/__pycache__/types.cpython-312.pyc
ADDED
|
Binary file (1.35 kB). View file
|
|
|
eneas/segmentation/__pycache__/types.cpython-313.pyc
ADDED
|
Binary file (1.38 kB). View file
|
|
|
eneas/segmentation/__pycache__/unique_instance.cpython-312.pyc
ADDED
|
Binary file (39.9 kB). View file
|
|
|
eneas/segmentation/__pycache__/unique_instance.cpython-313.pyc
ADDED
|
Binary file (36.9 kB). View file
|
|
|
eneas/segmentation/__pycache__/utils.cpython-312.pyc
ADDED
|
Binary file (15.1 kB). View file
|
|
|
eneas/segmentation/__pycache__/utils.cpython-313.pyc
ADDED
|
Binary file (10.4 kB). View file
|
|
|
eneas/segmentation/generic_category.py
ADDED
|
@@ -0,0 +1,1072 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
GenericCategorySegmenter - Generic category segmentation for multiple instances.
|
| 3 |
+
|
| 4 |
+
Based on Florence-2 for object detection and grounding.
|
| 5 |
+
"""
|
| 6 |
+
|
| 7 |
+
import base64
|
| 8 |
+
import io
|
| 9 |
+
import logging
|
| 10 |
+
import os
|
| 11 |
+
import shutil
|
| 12 |
+
import time
|
| 13 |
+
from pathlib import Path
|
| 14 |
+
|
| 15 |
+
import cv2
|
| 16 |
+
import numpy as np
|
| 17 |
+
import torch
|
| 18 |
+
from PIL import Image
|
| 19 |
+
|
| 20 |
+
from .model_manager import ModelManager
|
| 21 |
+
from .types import SegmentationResult
|
| 22 |
+
from .utils import (
|
| 23 |
+
draw_bboxes,
|
| 24 |
+
expand_crop_to_minimum_size,
|
| 25 |
+
mask_overlapping_boxes,
|
| 26 |
+
non_max_suppression,
|
| 27 |
+
smart_convert_to_plural,
|
| 28 |
+
smart_convert_to_singular,
|
| 29 |
+
)
|
| 30 |
+
|
| 31 |
+
logger = logging.getLogger(__name__)
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
class GenericCategorySegmenter:
|
| 35 |
+
"""
|
| 36 |
+
Segmenter for generic categories (multiple instances per frame).
|
| 37 |
+
|
| 38 |
+
Use cases:
|
| 39 |
+
- "all chairs"
|
| 40 |
+
- "all cars"
|
| 41 |
+
- "all people"
|
| 42 |
+
|
| 43 |
+
Multiple different instances, can vary frame by frame.
|
| 44 |
+
No temporal tracking - each frame is processed independently.
|
| 45 |
+
|
| 46 |
+
Returns binary masks (black & white) for each detected instance.
|
| 47 |
+
|
| 48 |
+
Example:
|
| 49 |
+
>>> from eneas.segmentation import GenericCategorySegmenter
|
| 50 |
+
>>> segmenter = GenericCategorySegmenter()
|
| 51 |
+
>>> result = segmenter.segment(
|
| 52 |
+
... frames_path="/path/to/frames",
|
| 53 |
+
... category="chair"
|
| 54 |
+
... )
|
| 55 |
+
>>> print(f"Detected {result.num_frames} frames")
|
| 56 |
+
>>> # Access masks for first frame
|
| 57 |
+
>>> frame_0_masks = result.masks[0] # List of masks for frame 0
|
| 58 |
+
"""
|
| 59 |
+
|
| 60 |
+
SUPPORTED_IMAGE_FORMATS = (".jpg", ".jpeg", ".png")
|
| 61 |
+
|
| 62 |
+
def __init__(
|
| 63 |
+
self,
|
| 64 |
+
grounding_model_path: str | None = None,
|
| 65 |
+
image_text_model_path: str | None = None,
|
| 66 |
+
sam2_model_path: str | None = None,
|
| 67 |
+
device: str | None = None,
|
| 68 |
+
default_output_dir: str = "./outputs",
|
| 69 |
+
vlm_model: str = "qwen3-vl:2b-instruct-q8_0",
|
| 70 |
+
):
|
| 71 |
+
"""
|
| 72 |
+
Initialize the segmenter.
|
| 73 |
+
|
| 74 |
+
Args:
|
| 75 |
+
grounding_model_path: Path to Florence-2 model directory. If None, auto-downloads from HuggingFace
|
| 76 |
+
image_text_model_path: Path to image-text model (SigLIP) directory. If None, auto-downloads from HuggingFace
|
| 77 |
+
sam2_model_path: Path to SAM2 checkpoint file (.pt). If None, auto-downloads SAM2.1 large model
|
| 78 |
+
device: Device to use ('cuda' or 'cpu'). If None, auto-detects CUDA availability
|
| 79 |
+
default_output_dir: Default directory for segmentation outputs
|
| 80 |
+
vlm_model: Ollama model name for VLM validation. Default: "qwen3-vl:2b-instruct-q8_0"
|
| 81 |
+
Alternative: "qwen3-vl:4b-instruct-q8_0" (higher quality, more VRAM)
|
| 82 |
+
|
| 83 |
+
Environment Variables:
|
| 84 |
+
HF_HOME: HuggingFace cache directory (default: ~/.cache/huggingface)
|
| 85 |
+
|
| 86 |
+
Examples:
|
| 87 |
+
>>> segmenter = GenericCategorySegmenter()
|
| 88 |
+
>>> segmenter = GenericCategorySegmenter(device="cuda")
|
| 89 |
+
>>> segmenter = GenericCategorySegmenter(grounding_model_path="/path/to/Florence-2")
|
| 90 |
+
>>> segmenter = GenericCategorySegmenter(sam2_model_path="/path/to/sam2.1_hiera_large.pt")
|
| 91 |
+
>>> # Use larger VLM for better quality
|
| 92 |
+
>>> segmenter = GenericCategorySegmenter(vlm_model="qwen3-vl:4b-instruct-q8_0")
|
| 93 |
+
"""
|
| 94 |
+
|
| 95 |
+
if grounding_model_path is not None:
|
| 96 |
+
self.grounding_model_path = grounding_model_path
|
| 97 |
+
self._auto_download_grounding_model = False
|
| 98 |
+
logger.info(f"Using grounding model from: {grounding_model_path}")
|
| 99 |
+
else:
|
| 100 |
+
self.grounding_model_path = None
|
| 101 |
+
self._auto_download_grounding_model = True
|
| 102 |
+
logger.info("Grounding model will auto-download on first use")
|
| 103 |
+
|
| 104 |
+
if image_text_model_path is not None:
|
| 105 |
+
self.image_text_model_path = image_text_model_path
|
| 106 |
+
self._auto_download_image_text_model = False
|
| 107 |
+
logger.info(f"Using image-text model from: {image_text_model_path}")
|
| 108 |
+
else:
|
| 109 |
+
self.image_text_model_path = None
|
| 110 |
+
self._auto_download_image_text_model = True
|
| 111 |
+
logger.info("Image-text model will auto-download on first use")
|
| 112 |
+
|
| 113 |
+
# Store VLM model name for Ollama
|
| 114 |
+
self.vlm_model_name = vlm_model
|
| 115 |
+
|
| 116 |
+
# Warn if using untested model
|
| 117 |
+
supported_vlm_models = ["qwen3-vl:2b-instruct-q8_0", "qwen3-vl:4b-instruct-q8_0"]
|
| 118 |
+
if vlm_model not in supported_vlm_models:
|
| 119 |
+
logger.warning(
|
| 120 |
+
f"VLM model '{vlm_model}' has not been tested. "
|
| 121 |
+
f"Supported models: {', '.join(supported_vlm_models)}"
|
| 122 |
+
)
|
| 123 |
+
|
| 124 |
+
logger.info(f"VLM model (Ollama): {vlm_model}")
|
| 125 |
+
|
| 126 |
+
if sam2_model_path is not None:
|
| 127 |
+
self.sam2_model_path = sam2_model_path
|
| 128 |
+
self._auto_download_sam2_model = False
|
| 129 |
+
logger.info(f"Using SAM2 model from: {sam2_model_path}")
|
| 130 |
+
else:
|
| 131 |
+
self.sam2_model_path = None
|
| 132 |
+
self._auto_download_sam2_model = True
|
| 133 |
+
logger.info("SAM2 model will auto-download on first use")
|
| 134 |
+
|
| 135 |
+
if device is not None:
|
| 136 |
+
self.device = device
|
| 137 |
+
else:
|
| 138 |
+
self.device = "cuda" if torch.cuda.is_available() else "cpu"
|
| 139 |
+
|
| 140 |
+
self.default_output_dir = default_output_dir
|
| 141 |
+
|
| 142 |
+
self.grounding_model = None
|
| 143 |
+
self.grounding_processor = None
|
| 144 |
+
self.image_text_model = None
|
| 145 |
+
self.image_text_processor = None
|
| 146 |
+
self.image_text_logit_bias = -10.0
|
| 147 |
+
self.vlm_model = None
|
| 148 |
+
|
| 149 |
+
self.sam2_predictor = None
|
| 150 |
+
self.sam_model_cfg = "configs/sam2.1/sam2.1_hiera_l.yaml"
|
| 151 |
+
self.sam2_vendor_path = os.path.join(os.path.dirname(__file__), "..", "vendor", "sam2")
|
| 152 |
+
|
| 153 |
+
# Initialize model manager for auto-downloads
|
| 154 |
+
self.model_manager = ModelManager()
|
| 155 |
+
|
| 156 |
+
logger.info(f"GenericCategorySegmenter initialized with device: {self.device}")
|
| 157 |
+
|
| 158 |
+
def _load_grounding_model(self):
|
| 159 |
+
"""Load Florence-2 grounding model lazily on first use.
|
| 160 |
+
|
| 161 |
+
Raises:
|
| 162 |
+
ImportError: If transformers cannot be imported
|
| 163 |
+
RuntimeError: If auto-download fails
|
| 164 |
+
"""
|
| 165 |
+
if self.grounding_model is not None:
|
| 166 |
+
return
|
| 167 |
+
|
| 168 |
+
grounding_model_id = "microsoft/Florence-2-large"
|
| 169 |
+
|
| 170 |
+
if self._auto_download_grounding_model:
|
| 171 |
+
logger.info(
|
| 172 |
+
f"Auto-downloading grounding model ({grounding_model_id}) from HuggingFace..."
|
| 173 |
+
)
|
| 174 |
+
try:
|
| 175 |
+
model_manager = ModelManager()
|
| 176 |
+
downloaded_path = model_manager.download(grounding_model_id)
|
| 177 |
+
self.grounding_model_path = str(downloaded_path)
|
| 178 |
+
logger.info(f"Grounding model ready at: {downloaded_path}")
|
| 179 |
+
except Exception as e:
|
| 180 |
+
raise RuntimeError(
|
| 181 |
+
f"Auto-download failed: {e}\n\n"
|
| 182 |
+
"You can manually download the model:\n"
|
| 183 |
+
f" 1. Visit: https://huggingface.co/{grounding_model_id}\n"
|
| 184 |
+
" 2. Download and extract\n"
|
| 185 |
+
" 3. Pass: GenericCategorySegmenter(grounding_model_path='/path/to/model')"
|
| 186 |
+
) from e
|
| 187 |
+
|
| 188 |
+
logger.info(f"Loading grounding model from {self.grounding_model_path}...")
|
| 189 |
+
|
| 190 |
+
from transformers import AutoModelForCausalLM, AutoProcessor
|
| 191 |
+
|
| 192 |
+
self.grounding_model = (
|
| 193 |
+
AutoModelForCausalLM.from_pretrained(self.grounding_model_path, trust_remote_code=True)
|
| 194 |
+
.to(self.device)
|
| 195 |
+
.eval()
|
| 196 |
+
)
|
| 197 |
+
|
| 198 |
+
self.grounding_processor = AutoProcessor.from_pretrained(
|
| 199 |
+
self.grounding_model_path, trust_remote_code=True
|
| 200 |
+
)
|
| 201 |
+
|
| 202 |
+
logger.info("Grounding model loaded successfully")
|
| 203 |
+
|
| 204 |
+
def _load_image_text_model(self):
|
| 205 |
+
"""Load SigLIP image-text model lazily on first use.
|
| 206 |
+
|
| 207 |
+
Raises:
|
| 208 |
+
ImportError: If transformers cannot be imported
|
| 209 |
+
RuntimeError: If auto-download fails
|
| 210 |
+
"""
|
| 211 |
+
if self.image_text_model is not None:
|
| 212 |
+
return
|
| 213 |
+
|
| 214 |
+
image_text_model_id = "google/siglip2-base-patch16-naflex"
|
| 215 |
+
|
| 216 |
+
if self._auto_download_image_text_model:
|
| 217 |
+
logger.info(
|
| 218 |
+
f"Auto-downloading image-text model ({image_text_model_id}) from HuggingFace..."
|
| 219 |
+
)
|
| 220 |
+
try:
|
| 221 |
+
model_manager = ModelManager()
|
| 222 |
+
downloaded_path = model_manager.download(image_text_model_id)
|
| 223 |
+
self.image_text_model_path = str(downloaded_path)
|
| 224 |
+
logger.info(f"Image-text model ready at: {downloaded_path}")
|
| 225 |
+
except Exception as e:
|
| 226 |
+
raise RuntimeError(
|
| 227 |
+
f"Auto-download failed: {e}\n\n"
|
| 228 |
+
"You can manually download the model:\n"
|
| 229 |
+
f" 1. Visit: https://huggingface.co/{image_text_model_id}\n"
|
| 230 |
+
" 2. Download and extract\n"
|
| 231 |
+
" 3. Pass: GenericCategorySegmenter(image_text_model_path='/path/to/model')"
|
| 232 |
+
) from e
|
| 233 |
+
|
| 234 |
+
logger.info(f"Loading image-text model from {self.image_text_model_path}...")
|
| 235 |
+
|
| 236 |
+
import torch.nn as nn
|
| 237 |
+
from transformers import AutoModel, AutoProcessor
|
| 238 |
+
|
| 239 |
+
if self.device == "cuda":
|
| 240 |
+
self.image_text_model = AutoModel.from_pretrained(
|
| 241 |
+
self.image_text_model_path, device_map="auto"
|
| 242 |
+
).eval()
|
| 243 |
+
else:
|
| 244 |
+
self.image_text_model = (
|
| 245 |
+
AutoModel.from_pretrained(self.image_text_model_path).to(self.device).eval()
|
| 246 |
+
)
|
| 247 |
+
|
| 248 |
+
# Apply logit bias for probability calibration
|
| 249 |
+
self.image_text_model.logit_bias = nn.Parameter(torch.tensor([self.image_text_logit_bias]))
|
| 250 |
+
logger.info(f"Image-text logit bias applied: {self.image_text_logit_bias}")
|
| 251 |
+
|
| 252 |
+
self.image_text_processor = AutoProcessor.from_pretrained(self.image_text_model_path)
|
| 253 |
+
|
| 254 |
+
logger.info("Image-text model loaded successfully")
|
| 255 |
+
|
| 256 |
+
def _load_vlm_model(self):
|
| 257 |
+
"""Verify Ollama VLM model is available.
|
| 258 |
+
|
| 259 |
+
Raises:
|
| 260 |
+
ImportError: If ollama cannot be imported
|
| 261 |
+
RuntimeError: If Ollama server is not running or model not available
|
| 262 |
+
"""
|
| 263 |
+
if self.vlm_model is not None:
|
| 264 |
+
return
|
| 265 |
+
|
| 266 |
+
try:
|
| 267 |
+
import ollama
|
| 268 |
+
except ImportError as e:
|
| 269 |
+
raise ImportError(
|
| 270 |
+
"ollama is required for VLM validation.\n"
|
| 271 |
+
"Install it with: pip install ollama\n"
|
| 272 |
+
"And ensure Ollama server is running: ollama serve"
|
| 273 |
+
) from e
|
| 274 |
+
|
| 275 |
+
logger.info(f"Checking Ollama model: {self.vlm_model_name}")
|
| 276 |
+
|
| 277 |
+
try:
|
| 278 |
+
# Try to pull/verify model exists
|
| 279 |
+
ollama.pull(self.vlm_model_name)
|
| 280 |
+
logger.info(f"VLM model ready: {self.vlm_model_name}")
|
| 281 |
+
except Exception as e:
|
| 282 |
+
logger.warning(f"Could not pull model (server may be down or model unavailable): {e}")
|
| 283 |
+
logger.info("Will attempt to use model anyway (may already be cached)")
|
| 284 |
+
|
| 285 |
+
# Mark VLM model as loaded and ready for inference
|
| 286 |
+
self.vlm_model = True
|
| 287 |
+
|
| 288 |
+
logger.info("Ollama VLM ready")
|
| 289 |
+
|
| 290 |
+
def _load_sam2_model(self):
|
| 291 |
+
"""Load SAM2.1 model lazily on first use.
|
| 292 |
+
|
| 293 |
+
Raises:
|
| 294 |
+
ImportError: If sam2 cannot be imported
|
| 295 |
+
RuntimeError: If auto-download fails or model loading fails
|
| 296 |
+
"""
|
| 297 |
+
if self.sam2_predictor is not None:
|
| 298 |
+
return
|
| 299 |
+
|
| 300 |
+
if self._auto_download_sam2_model:
|
| 301 |
+
logger.info("Auto-downloading SAM2.1 checkpoint from direct URL...")
|
| 302 |
+
try:
|
| 303 |
+
sam2_url = (
|
| 304 |
+
"https://dl.fbaipublicfiles.com/segment_anything_2/092824/sam2.1_hiera_large.pt"
|
| 305 |
+
)
|
| 306 |
+
checkpoint_path = self.model_manager.download_url(sam2_url, "sam2.1_hiera_large.pt")
|
| 307 |
+
logger.info(f"SAM2 model ready at: {checkpoint_path}")
|
| 308 |
+
except Exception as e:
|
| 309 |
+
raise RuntimeError(
|
| 310 |
+
f"Auto-download failed: {e}\n\n"
|
| 311 |
+
"You can manually download the model:\n"
|
| 312 |
+
f" 1. Visit: https://dl.fbaipublicfiles.com/segment_anything_2/092824/sam2.1_hiera_large.pt\n"
|
| 313 |
+
" 2. Save as sam2.1_hiera_large.pt\n"
|
| 314 |
+
" 3. Pass: GenericCategorySegmenter(sam2_model_path='/path/to/sam2.1_hiera_large.pt')"
|
| 315 |
+
) from e
|
| 316 |
+
else:
|
| 317 |
+
# User provided path to checkpoint file
|
| 318 |
+
checkpoint_path = Path(self.sam2_model_path)
|
| 319 |
+
if not checkpoint_path.exists():
|
| 320 |
+
raise RuntimeError(f"SAM2 checkpoint not found: {checkpoint_path}")
|
| 321 |
+
logger.info(f"Using SAM2 checkpoint from: {checkpoint_path}")
|
| 322 |
+
|
| 323 |
+
# Config is always in vendor
|
| 324 |
+
config_path = Path(self.sam2_vendor_path) / self.sam_model_cfg
|
| 325 |
+
|
| 326 |
+
if not config_path.exists():
|
| 327 |
+
raise RuntimeError(f"SAM2 config not found: {config_path}")
|
| 328 |
+
|
| 329 |
+
# Load SAM2 model
|
| 330 |
+
from eneas.vendor.sam2.build_sam import build_sam2
|
| 331 |
+
from eneas.vendor.sam2.sam2_image_predictor import SAM2ImagePredictor
|
| 332 |
+
|
| 333 |
+
# Build SAM2 model
|
| 334 |
+
sam2_model = build_sam2(str(self.sam_model_cfg), str(checkpoint_path), device=self.device)
|
| 335 |
+
|
| 336 |
+
# Create predictor
|
| 337 |
+
self.sam2_predictor = SAM2ImagePredictor(sam2_model)
|
| 338 |
+
|
| 339 |
+
logger.info("SAM2 model loaded successfully")
|
| 340 |
+
|
| 341 |
+
def _segment_bboxes_in_frame(
|
| 342 |
+
self,
|
| 343 |
+
frame_image: Image.Image,
|
| 344 |
+
bboxes: list,
|
| 345 |
+
) -> list[np.ndarray]:
|
| 346 |
+
"""
|
| 347 |
+
Segment multiple bounding boxes in a single frame using SAM2.1.
|
| 348 |
+
|
| 349 |
+
Args:
|
| 350 |
+
frame_image: PIL Image of the frame (RGB format)
|
| 351 |
+
bboxes: List of bounding boxes [[x1, y1, x2, y2], ...]
|
| 352 |
+
|
| 353 |
+
Returns:
|
| 354 |
+
List of binary masks (H, W) with values 0 or 255 for each bbox
|
| 355 |
+
"""
|
| 356 |
+
if len(bboxes) == 0:
|
| 357 |
+
return []
|
| 358 |
+
|
| 359 |
+
# Convert PIL to numpy array
|
| 360 |
+
frame_image_np = np.array(frame_image)
|
| 361 |
+
|
| 362 |
+
# Set image in predictor
|
| 363 |
+
self.sam2_predictor.set_image(frame_image_np)
|
| 364 |
+
|
| 365 |
+
# Convert bboxes to numpy array
|
| 366 |
+
input_boxes = np.array(bboxes)
|
| 367 |
+
|
| 368 |
+
# Predict masks
|
| 369 |
+
masks, scores, _ = self.sam2_predictor.predict(
|
| 370 |
+
point_coords=None,
|
| 371 |
+
point_labels=None,
|
| 372 |
+
box=input_boxes,
|
| 373 |
+
multimask_output=False,
|
| 374 |
+
)
|
| 375 |
+
|
| 376 |
+
# Handle mask shape
|
| 377 |
+
if len(masks.shape) == 4 and masks.shape[1] == 1:
|
| 378 |
+
masks = masks.squeeze(1)
|
| 379 |
+
# Now masks is (num_boxes, H, W) bool
|
| 380 |
+
|
| 381 |
+
# Convert to list of binary numpy masks (0 or 255)
|
| 382 |
+
result_masks = []
|
| 383 |
+
for mask in masks:
|
| 384 |
+
# Fill small holes in mask (area <= 8 pixels)
|
| 385 |
+
mask_tensor = torch.from_numpy(mask.astype(np.float32))
|
| 386 |
+
from eneas.vendor.SeC.inference.sam2.utils.misc import fill_holes_in_mask_scores
|
| 387 |
+
mask_filled = fill_holes_in_mask_scores(mask_tensor, max_area=8)
|
| 388 |
+
mask_filled_np = mask_filled.numpy()
|
| 389 |
+
|
| 390 |
+
# Convert to binary (0 or 255)
|
| 391 |
+
mask_binary = (mask_filled_np > 0).astype(np.uint8) * 255
|
| 392 |
+
result_masks.append(mask_binary)
|
| 393 |
+
|
| 394 |
+
return result_masks
|
| 395 |
+
|
| 396 |
+
def _vlm_validate_single_crop(
|
| 397 |
+
self,
|
| 398 |
+
crop_image: Image.Image,
|
| 399 |
+
target_text: str,
|
| 400 |
+
num_predict: int = 8000,
|
| 401 |
+
max_retries: int = 3,
|
| 402 |
+
) -> bool:
|
| 403 |
+
"""Validate a single crop using Ollama VLM with structured outputs.
|
| 404 |
+
|
| 405 |
+
Args:
|
| 406 |
+
crop_image: PIL Image of the crop (clean, no annotations)
|
| 407 |
+
target_text: Target concept to validate (singular form, e.g., "person")
|
| 408 |
+
num_predict: Maximum tokens for VLM response (default: 8000)
|
| 409 |
+
max_retries: Maximum retry attempts if validation fails (default: 3)
|
| 410 |
+
|
| 411 |
+
Returns:
|
| 412 |
+
True if crop is validated as target, False otherwise
|
| 413 |
+
"""
|
| 414 |
+
import ollama
|
| 415 |
+
from pydantic import BaseModel
|
| 416 |
+
|
| 417 |
+
# Define structured output schema
|
| 418 |
+
class ValidationResult(BaseModel):
|
| 419 |
+
reasoning: str
|
| 420 |
+
is_target: bool
|
| 421 |
+
|
| 422 |
+
# Convert image to base64
|
| 423 |
+
img_byte_arr = io.BytesIO()
|
| 424 |
+
crop_image.save(img_byte_arr, format="JPEG", quality=95)
|
| 425 |
+
img_bytes = img_byte_arr.getvalue()
|
| 426 |
+
img_base64 = base64.b64encode(img_bytes).decode("utf-8")
|
| 427 |
+
|
| 428 |
+
# Construct validation prompt
|
| 429 |
+
prompt = f"""You are validating an object detection result.
|
| 430 |
+
|
| 431 |
+
TASK: Analyze the image and determine if it shows a **{target_text}**.
|
| 432 |
+
|
| 433 |
+
The image shows a cropped region from a larger scene. This region was detected by an AI system as possibly containing "{target_text}", but it may be a false positive.
|
| 434 |
+
|
| 435 |
+
CRITICAL THINKING QUESTIONS:
|
| 436 |
+
- What do you actually see in this image?
|
| 437 |
+
- Does it visually match the concept of "{target_text}"?
|
| 438 |
+
- Are you absolutely certain?
|
| 439 |
+
- Could this be a false positive (wrong detection)?
|
| 440 |
+
|
| 441 |
+
⚠️ IMPORTANT NOTES:
|
| 442 |
+
- The object may be partially visible or occluded (covered by other things) - this is still VALID if you can identify it
|
| 443 |
+
- Focus on what you SEE, not what the AI claimed to detect
|
| 444 |
+
- If detecting "person": ONLY real living humans count as TRUE. Statues, mannequins, dolls, paintings, photos, posters, or any artificial representations are FALSE.
|
| 445 |
+
|
| 446 |
+
Provide your response in JSON format with:
|
| 447 |
+
- "reasoning": Brief explanation of what you see and why it is/isn't {target_text}
|
| 448 |
+
- "is_target": true or false
|
| 449 |
+
|
| 450 |
+
Example responses:
|
| 451 |
+
{{"reasoning": "I see a real living person - natural skin texture, subtle movements or natural pose, wearing actual clothing.", "is_target": true}}
|
| 452 |
+
{{"reasoning": "This is clearly not a person - it's a wall with an electrical outlet and no human figure present.", "is_target": false}}
|
| 453 |
+
{{"reasoning": "This appears to be a statue or mannequin - rigid pose, uniform painted/plastic surface, artificial appearance, no signs of life.", "is_target": false}}
|
| 454 |
+
{{"reasoning": "I see a person in a photo/poster on the wall - this is a 2D image of a person, not an actual person in the scene.", "is_target": false}}"""
|
| 455 |
+
|
| 456 |
+
for attempt in range(max_retries):
|
| 457 |
+
try:
|
| 458 |
+
logger.debug(f"VLM validation attempt {attempt + 1}/{max_retries}")
|
| 459 |
+
|
| 460 |
+
messages = [{"role": "user", "content": prompt, "images": [img_base64]}]
|
| 461 |
+
|
| 462 |
+
# Use structured outputs with Pydantic schema
|
| 463 |
+
response = ollama.chat(
|
| 464 |
+
model=self.vlm_model_name,
|
| 465 |
+
messages=messages,
|
| 466 |
+
format=ValidationResult.model_json_schema(),
|
| 467 |
+
options={"temperature": 0.0, "num_predict": num_predict},
|
| 468 |
+
keep_alive=-1,
|
| 469 |
+
)
|
| 470 |
+
|
| 471 |
+
# Parse and validate response using Pydantic
|
| 472 |
+
result = ValidationResult.model_validate_json(response.message.content)
|
| 473 |
+
|
| 474 |
+
logger.debug(f"VLM result: is_target={result.is_target}")
|
| 475 |
+
logger.debug(f"VLM reasoning: {result.reasoning}")
|
| 476 |
+
|
| 477 |
+
return result.is_target
|
| 478 |
+
|
| 479 |
+
except Exception as e:
|
| 480 |
+
logger.warning(f"VLM validation error (attempt {attempt + 1}/{max_retries}): {e}")
|
| 481 |
+
if attempt < max_retries - 1:
|
| 482 |
+
continue
|
| 483 |
+
else:
|
| 484 |
+
# Default: accept on failure to avoid blocking pipeline
|
| 485 |
+
logger.warning("VLM validation failed after all retries, defaulting to accept")
|
| 486 |
+
return True
|
| 487 |
+
|
| 488 |
+
return True
|
| 489 |
+
|
| 490 |
+
def _text_to_bbox(
|
| 491 |
+
self,
|
| 492 |
+
text: str,
|
| 493 |
+
frame_image: Image.Image,
|
| 494 |
+
accept_threshold: float = 0.90,
|
| 495 |
+
reject_threshold: float = 0.10,
|
| 496 |
+
save_debug: bool = False,
|
| 497 |
+
output_dir: str = "",
|
| 498 |
+
frame_name: str = "",
|
| 499 |
+
) -> tuple[list, list, bool]:
|
| 500 |
+
"""Detect and filter objects using multi-stage pipeline.
|
| 501 |
+
|
| 502 |
+
Pipeline:
|
| 503 |
+
1. Convert text to plural (once, for Florence)
|
| 504 |
+
2. Detect with Florence-2 CAPTION_TO_PHRASE_GROUNDING
|
| 505 |
+
3. Apply NMS to remove duplicates
|
| 506 |
+
4. Convert text to singular (once, for SigLIP)
|
| 507 |
+
5. Filter with image-text model semantic similarity
|
| 508 |
+
6. VLM validation for uncertain boxes
|
| 509 |
+
7. Return accepted + VLM-approved boxes
|
| 510 |
+
|
| 511 |
+
Args:
|
| 512 |
+
text: Text description of the object category
|
| 513 |
+
frame_image: PIL Image of the frame
|
| 514 |
+
accept_threshold: Threshold for accepting boxes automatically (default: 0.90)
|
| 515 |
+
reject_threshold: Threshold for rejecting boxes automatically (default: 0.10)
|
| 516 |
+
|
| 517 |
+
Returns:
|
| 518 |
+
Tuple of (bboxes, labels, vlm_used) where vlm_used is True if VLM was called
|
| 519 |
+
"""
|
| 520 |
+
# Stage 1: Convert to plural once (for Florence)
|
| 521 |
+
text_plural = smart_convert_to_plural(text)
|
| 522 |
+
logger.debug(f"Florence query: '{text}' → '{text_plural}'")
|
| 523 |
+
|
| 524 |
+
# Stage 2: Florence-2 detection
|
| 525 |
+
task_prompt = "<CAPTION_TO_PHRASE_GROUNDING>"
|
| 526 |
+
prompt = task_prompt + text_plural
|
| 527 |
+
|
| 528 |
+
inputs = self.grounding_processor(text=prompt, images=frame_image, return_tensors="pt").to(
|
| 529 |
+
self.device
|
| 530 |
+
)
|
| 531 |
+
|
| 532 |
+
generated_ids = self.grounding_model.generate(
|
| 533 |
+
input_ids=inputs["input_ids"],
|
| 534 |
+
pixel_values=inputs["pixel_values"],
|
| 535 |
+
max_new_tokens=1024,
|
| 536 |
+
early_stopping=False,
|
| 537 |
+
do_sample=False,
|
| 538 |
+
num_beams=3,
|
| 539 |
+
)
|
| 540 |
+
|
| 541 |
+
generated_text = self.grounding_processor.batch_decode(
|
| 542 |
+
generated_ids, skip_special_tokens=False
|
| 543 |
+
)[0]
|
| 544 |
+
|
| 545 |
+
parsed_answer = self.grounding_processor.post_process_generation(
|
| 546 |
+
generated_text, task=task_prompt, image_size=(frame_image.width, frame_image.height)
|
| 547 |
+
)
|
| 548 |
+
|
| 549 |
+
grounding_results = parsed_answer["<CAPTION_TO_PHRASE_GROUNDING>"]
|
| 550 |
+
bboxes = grounding_results.get("bboxes", [])
|
| 551 |
+
labels = grounding_results.get("labels", [])
|
| 552 |
+
|
| 553 |
+
if not bboxes:
|
| 554 |
+
logger.warning(f"No objects detected for text: '{text}'")
|
| 555 |
+
return bboxes, labels, False
|
| 556 |
+
|
| 557 |
+
logger.info(f"Florence detected {len(bboxes)} instances")
|
| 558 |
+
|
| 559 |
+
# Save grounding debug (before NMS)
|
| 560 |
+
if save_debug and len(bboxes) > 0:
|
| 561 |
+
grounding_debug_dir = os.path.join(output_dir, "grounding_debug")
|
| 562 |
+
grounding_img = draw_bboxes(frame_image.copy(), bboxes)
|
| 563 |
+
grounding_path = os.path.join(grounding_debug_dir, f"{frame_name}.jpg")
|
| 564 |
+
grounding_img.save(grounding_path, quality=95)
|
| 565 |
+
logger.debug(f"Saved grounding debug: {grounding_path}")
|
| 566 |
+
|
| 567 |
+
# Stage 3: Apply NMS
|
| 568 |
+
if len(bboxes) > 1:
|
| 569 |
+
original_count = len(bboxes)
|
| 570 |
+
bboxes, labels = non_max_suppression(bboxes, labels, iou_threshold=0.70)
|
| 571 |
+
removed_count = original_count - len(bboxes)
|
| 572 |
+
if removed_count > 0:
|
| 573 |
+
logger.info(f"NMS: Removed {removed_count} overlapping boxes")
|
| 574 |
+
logger.info(f"After NMS: {len(bboxes)} instances")
|
| 575 |
+
|
| 576 |
+
# Stage 4: Convert to singular once (for SigLIP)
|
| 577 |
+
text_singular = smart_convert_to_singular(text)
|
| 578 |
+
logger.debug(f"Image-text query: '{text}' → '{text_singular}'")
|
| 579 |
+
|
| 580 |
+
# Stage 5: Image-text filtering
|
| 581 |
+
if len(bboxes) > 0:
|
| 582 |
+
accepted, rejected, uncertain, scores = self._image_text_filter_boxes(
|
| 583 |
+
frame_image,
|
| 584 |
+
bboxes,
|
| 585 |
+
labels,
|
| 586 |
+
text_singular,
|
| 587 |
+
accept_threshold,
|
| 588 |
+
reject_threshold,
|
| 589 |
+
save_debug,
|
| 590 |
+
output_dir,
|
| 591 |
+
frame_name,
|
| 592 |
+
)
|
| 593 |
+
|
| 594 |
+
# Stage 6: VLM validation for uncertain boxes
|
| 595 |
+
vlm_accepted = []
|
| 596 |
+
vlm_used = False
|
| 597 |
+
if len(uncertain) > 0 and self.vlm_model is not None:
|
| 598 |
+
vlm_used = True
|
| 599 |
+
logger.info(f"VLM validating {len(uncertain)} uncertain boxes...")
|
| 600 |
+
|
| 601 |
+
for local_idx, global_idx in enumerate(uncertain):
|
| 602 |
+
bbox = bboxes[global_idx]
|
| 603 |
+
_label = labels[global_idx]
|
| 604 |
+
x1, y1, x2, y2 = [int(coord) for coord in bbox]
|
| 605 |
+
|
| 606 |
+
logger.debug(
|
| 607 |
+
f"VLM validating uncertain box {local_idx + 1}/{len(uncertain)} (global #{global_idx + 1})"
|
| 608 |
+
)
|
| 609 |
+
|
| 610 |
+
# Extract clean crop
|
| 611 |
+
crop = frame_image.crop((x1, y1, x2, y2))
|
| 612 |
+
|
| 613 |
+
# Mask overlapping regions
|
| 614 |
+
crop = mask_overlapping_boxes(crop, bbox, bboxes, global_idx, (x1, y1, x2, y2))
|
| 615 |
+
|
| 616 |
+
# Expand crop to minimum size (Qwen3-VL requires 32x32)
|
| 617 |
+
crop = expand_crop_to_minimum_size(crop, bbox, frame_image, min_size=32)
|
| 618 |
+
|
| 619 |
+
# Save VLM debug crop
|
| 620 |
+
if save_debug:
|
| 621 |
+
vlm_debug_dir = os.path.join(output_dir, "vlm_debug")
|
| 622 |
+
crop_path = os.path.join(
|
| 623 |
+
vlm_debug_dir, f"{frame_name}_vlm_crop_{global_idx + 1}.jpg"
|
| 624 |
+
)
|
| 625 |
+
crop.save(crop_path, quality=95)
|
| 626 |
+
|
| 627 |
+
# Validate with VLM
|
| 628 |
+
is_target = self._vlm_validate_single_crop(crop, text_singular)
|
| 629 |
+
|
| 630 |
+
if is_target:
|
| 631 |
+
logger.debug(f"VLM accepted box #{global_idx + 1}")
|
| 632 |
+
vlm_accepted.append(global_idx)
|
| 633 |
+
else:
|
| 634 |
+
logger.debug(f"VLM rejected box #{global_idx + 1}")
|
| 635 |
+
|
| 636 |
+
logger.info(
|
| 637 |
+
f"VLM validation: {len(vlm_accepted)} accepted, {len(uncertain) - len(vlm_accepted)} rejected"
|
| 638 |
+
)
|
| 639 |
+
|
| 640 |
+
# Stage 7: Combine accepted + VLM-approved uncertain (rejected + VLM-rejected discarded)
|
| 641 |
+
keep_indices = sorted(accepted + vlm_accepted)
|
| 642 |
+
bboxes = [bboxes[i] for i in keep_indices]
|
| 643 |
+
labels = [labels[i] for i in keep_indices]
|
| 644 |
+
|
| 645 |
+
logger.info(f"Final result: {len(bboxes)} instances")
|
| 646 |
+
|
| 647 |
+
return bboxes, labels, vlm_used
|
| 648 |
+
|
| 649 |
+
def _image_text_filter_boxes(
|
| 650 |
+
self,
|
| 651 |
+
image: Image.Image,
|
| 652 |
+
bboxes: list,
|
| 653 |
+
labels: list,
|
| 654 |
+
target_text: str,
|
| 655 |
+
accept_threshold: float = 0.90,
|
| 656 |
+
reject_threshold: float = 0.10,
|
| 657 |
+
save_debug: bool = False,
|
| 658 |
+
output_dir: str = "",
|
| 659 |
+
frame_name: str = "",
|
| 660 |
+
) -> tuple[list, list, list, list]:
|
| 661 |
+
"""Filter bounding boxes using image-text model semantic similarity.
|
| 662 |
+
|
| 663 |
+
Uses ensemble of prompts with MEAN strategy for robust filtering.
|
| 664 |
+
|
| 665 |
+
Args:
|
| 666 |
+
image: PIL Image (original, without boxes drawn)
|
| 667 |
+
bboxes: List of bounding boxes [[x1, y1, x2, y2], ...]
|
| 668 |
+
labels: List of labels from Florence
|
| 669 |
+
target_text: Target concept (singular form, e.g., "person")
|
| 670 |
+
accept_threshold: Threshold for accepting boxes automatically (default: 0.90)
|
| 671 |
+
reject_threshold: Threshold for rejecting boxes automatically (default: 0.10)
|
| 672 |
+
|
| 673 |
+
Returns:
|
| 674 |
+
Tuple of:
|
| 675 |
+
- accepted_indices: Indices of accepted boxes (score >= accept_threshold)
|
| 676 |
+
- rejected_indices: Indices of rejected boxes (score < reject_threshold)
|
| 677 |
+
- uncertain_indices: Indices of uncertain boxes (reject_threshold <= score < accept_threshold)
|
| 678 |
+
- scores: List of similarity scores for each box
|
| 679 |
+
"""
|
| 680 |
+
if len(bboxes) == 0:
|
| 681 |
+
return [], [], [], []
|
| 682 |
+
|
| 683 |
+
# Ensemble of prompt templates
|
| 684 |
+
prompt_templates = [
|
| 685 |
+
f"a photo of {target_text}",
|
| 686 |
+
f"a photo of a {target_text}",
|
| 687 |
+
f"This is a photo of {target_text}",
|
| 688 |
+
f"This is a photo of a {target_text}",
|
| 689 |
+
f"a cropped photo of {target_text}",
|
| 690 |
+
f"a cropped photo of a {target_text}",
|
| 691 |
+
f"an image of {target_text}",
|
| 692 |
+
f"an image of a {target_text}",
|
| 693 |
+
f"{target_text}",
|
| 694 |
+
f"a {target_text}",
|
| 695 |
+
]
|
| 696 |
+
|
| 697 |
+
# Remove duplicates maintaining order
|
| 698 |
+
texts = []
|
| 699 |
+
seen = set()
|
| 700 |
+
for t in prompt_templates:
|
| 701 |
+
if t not in seen:
|
| 702 |
+
texts.append(t)
|
| 703 |
+
seen.add(t)
|
| 704 |
+
|
| 705 |
+
logger.info(f"Image-text filtering with {len(texts)} prompt variants (MEAN strategy)")
|
| 706 |
+
logger.info(
|
| 707 |
+
f"Accept threshold: >={accept_threshold}, Reject threshold: <{reject_threshold}"
|
| 708 |
+
)
|
| 709 |
+
|
| 710 |
+
# Step 1: Prepare all crops first
|
| 711 |
+
all_crops = []
|
| 712 |
+
for idx, (bbox, _label) in enumerate(zip(bboxes, labels, strict=True)):
|
| 713 |
+
x1, y1, x2, y2 = [int(coord) for coord in bbox]
|
| 714 |
+
|
| 715 |
+
# Crop clean region
|
| 716 |
+
crop = image.crop((x1, y1, x2, y2))
|
| 717 |
+
|
| 718 |
+
# Mask overlapping regions
|
| 719 |
+
crop = mask_overlapping_boxes(crop, bbox, bboxes, idx, (x1, y1, x2, y2))
|
| 720 |
+
|
| 721 |
+
all_crops.append(crop)
|
| 722 |
+
|
| 723 |
+
# Save image_text debug crops
|
| 724 |
+
if save_debug:
|
| 725 |
+
image_text_debug_dir = os.path.join(output_dir, "image_text_debug")
|
| 726 |
+
crop_path = os.path.join(image_text_debug_dir, f"{frame_name}_crop_{idx + 1}.jpg")
|
| 727 |
+
crop.save(crop_path, quality=95)
|
| 728 |
+
|
| 729 |
+
# Step 2: Batch process all crops at once
|
| 730 |
+
with torch.no_grad():
|
| 731 |
+
inputs = self.image_text_processor(
|
| 732 |
+
text=texts,
|
| 733 |
+
images=all_crops, # Process ALL crops in one batch
|
| 734 |
+
padding="max_length",
|
| 735 |
+
max_length=64,
|
| 736 |
+
return_tensors="pt",
|
| 737 |
+
).to(self.device)
|
| 738 |
+
|
| 739 |
+
outputs = self.image_text_model(**inputs)
|
| 740 |
+
logits_per_image = outputs.logits_per_image # Shape: [num_crops, num_prompts]
|
| 741 |
+
probs = torch.sigmoid(logits_per_image) # Shape: [num_crops, num_prompts]
|
| 742 |
+
|
| 743 |
+
# Step 3: Process results for each crop individually
|
| 744 |
+
scores = []
|
| 745 |
+
accepted_indices = []
|
| 746 |
+
rejected_indices = []
|
| 747 |
+
uncertain_indices = []
|
| 748 |
+
|
| 749 |
+
for idx, (_bbox, label) in enumerate(zip(bboxes, labels, strict=True)):
|
| 750 |
+
# Extract scores for this specific crop
|
| 751 |
+
crop_probs = probs[idx].cpu().numpy() # Shape: [num_prompts]
|
| 752 |
+
|
| 753 |
+
# MEAN strategy (average of all prompts)
|
| 754 |
+
final_score = float(crop_probs.mean())
|
| 755 |
+
|
| 756 |
+
# Stats for logging
|
| 757 |
+
best_score = float(crop_probs.max())
|
| 758 |
+
worst_score = float(crop_probs.min())
|
| 759 |
+
best_prompt_idx = int(crop_probs.argmax())
|
| 760 |
+
best_prompt = texts[best_prompt_idx]
|
| 761 |
+
|
| 762 |
+
scores.append(final_score)
|
| 763 |
+
|
| 764 |
+
# Classify according to thresholds
|
| 765 |
+
if final_score >= accept_threshold:
|
| 766 |
+
accepted_indices.append(idx)
|
| 767 |
+
status = "ACCEPTED"
|
| 768 |
+
elif final_score < reject_threshold:
|
| 769 |
+
rejected_indices.append(idx)
|
| 770 |
+
status = "REJECTED"
|
| 771 |
+
else:
|
| 772 |
+
uncertain_indices.append(idx)
|
| 773 |
+
status = "UNCERTAIN"
|
| 774 |
+
|
| 775 |
+
logger.debug(
|
| 776 |
+
f"Box {idx + 1}: {label[:30]} | "
|
| 777 |
+
f"MEAN={final_score:.4f} | "
|
| 778 |
+
f"BEST='{best_prompt}'={best_score:.4f} | "
|
| 779 |
+
f"WORST={worst_score:.4f} | "
|
| 780 |
+
f"{status}"
|
| 781 |
+
)
|
| 782 |
+
|
| 783 |
+
logger.info(
|
| 784 |
+
f"Image-text results: {len(accepted_indices)} accepted, "
|
| 785 |
+
f"{len(rejected_indices)} rejected, {len(uncertain_indices)} uncertain"
|
| 786 |
+
)
|
| 787 |
+
|
| 788 |
+
return accepted_indices, rejected_indices, uncertain_indices, scores
|
| 789 |
+
|
| 790 |
+
def segment(
|
| 791 |
+
self,
|
| 792 |
+
frames_path: str | list[str],
|
| 793 |
+
category: str,
|
| 794 |
+
output_dir: str | None = None,
|
| 795 |
+
accept_threshold: float = 0.90,
|
| 796 |
+
reject_threshold: float = 0.10,
|
| 797 |
+
save_debug: bool = False,
|
| 798 |
+
save_masks: bool = False,
|
| 799 |
+
) -> SegmentationResult:
|
| 800 |
+
"""
|
| 801 |
+
Detect and segment instances of a category across multiple frames.
|
| 802 |
+
|
| 803 |
+
Args:
|
| 804 |
+
frames_path: Directory containing frames
|
| 805 |
+
category: Category to detect (e.g., "chair", "person", "car")
|
| 806 |
+
output_dir: Output directory for results
|
| 807 |
+
accept_threshold: Image-text similarity threshold for auto-accepting boxes (default: 0.90)
|
| 808 |
+
reject_threshold: Image-text similarity threshold for auto-rejecting boxes (default: 0.10)
|
| 809 |
+
save_debug: Save debug visualizations (grounding_debug/, image_text_debug/, vlm_debug/, detections_debug/)
|
| 810 |
+
save_masks: Save binary segmentation masks to disk (default: False)
|
| 811 |
+
|
| 812 |
+
Returns:
|
| 813 |
+
SegmentationResult with detection data and binary masks
|
| 814 |
+
|
| 815 |
+
Raises:
|
| 816 |
+
ValueError: If inputs are invalid
|
| 817 |
+
FileNotFoundError: If paths don't exist
|
| 818 |
+
RuntimeError: If detection fails
|
| 819 |
+
|
| 820 |
+
Examples:
|
| 821 |
+
>>> segmenter = GenericCategorySegmenter()
|
| 822 |
+
>>> result = segmenter.segment(
|
| 823 |
+
... frames_path="./frames",
|
| 824 |
+
... category="chair"
|
| 825 |
+
... )
|
| 826 |
+
>>> # With masks
|
| 827 |
+
>>> result = segmenter.segment(
|
| 828 |
+
... frames_path="./frames",
|
| 829 |
+
... category="person",
|
| 830 |
+
... save_masks=True
|
| 831 |
+
... )
|
| 832 |
+
>>> # Access masks: result.masks[frame_idx] returns list of masks
|
| 833 |
+
"""
|
| 834 |
+
if output_dir is None:
|
| 835 |
+
output_dir = self.default_output_dir
|
| 836 |
+
|
| 837 |
+
# Validate frames_path
|
| 838 |
+
if isinstance(frames_path, str):
|
| 839 |
+
if not os.path.isdir(frames_path):
|
| 840 |
+
raise FileNotFoundError(f"Frames directory not found: {frames_path}")
|
| 841 |
+
else:
|
| 842 |
+
raise NotImplementedError(
|
| 843 |
+
"List of frame paths is not yet implemented. "
|
| 844 |
+
"Please provide a directory path containing ordered frames."
|
| 845 |
+
)
|
| 846 |
+
|
| 847 |
+
# Load models
|
| 848 |
+
self._load_grounding_model()
|
| 849 |
+
self._load_image_text_model()
|
| 850 |
+
self._load_vlm_model()
|
| 851 |
+
|
| 852 |
+
# Load SAM2 model for segmentation
|
| 853 |
+
self._load_sam2_model()
|
| 854 |
+
|
| 855 |
+
# Start pure inference timer (after all model loading)
|
| 856 |
+
logger.info("Models loaded. Starting pure inference timer...")
|
| 857 |
+
inference_start_time = time.time()
|
| 858 |
+
|
| 859 |
+
frames_dir = frames_path
|
| 860 |
+
frame_names = self._get_frame_names(frames_dir)
|
| 861 |
+
logger.info(f"Found {len(frame_names)} images")
|
| 862 |
+
logger.info(f"Detecting category: '{category}'")
|
| 863 |
+
|
| 864 |
+
# Create debug directories if needed
|
| 865 |
+
if save_debug:
|
| 866 |
+
grounding_debug_dir = os.path.join(output_dir, "grounding_debug")
|
| 867 |
+
image_text_debug_dir = os.path.join(output_dir, "image_text_debug")
|
| 868 |
+
vlm_debug_dir = os.path.join(output_dir, "vlm_debug")
|
| 869 |
+
sam_debug_dir = os.path.join(output_dir, "sam_debug")
|
| 870 |
+
detections_debug_dir = os.path.join(output_dir, "detections_debug")
|
| 871 |
+
|
| 872 |
+
# Clean existing debug directories to avoid confusion with old files
|
| 873 |
+
for debug_dir in [
|
| 874 |
+
grounding_debug_dir,
|
| 875 |
+
image_text_debug_dir,
|
| 876 |
+
vlm_debug_dir,
|
| 877 |
+
sam_debug_dir,
|
| 878 |
+
detections_debug_dir,
|
| 879 |
+
]:
|
| 880 |
+
if os.path.exists(debug_dir):
|
| 881 |
+
shutil.rmtree(debug_dir)
|
| 882 |
+
logger.info(f"Cleaned existing debug directory: {debug_dir}")
|
| 883 |
+
|
| 884 |
+
os.makedirs(grounding_debug_dir, exist_ok=True)
|
| 885 |
+
os.makedirs(image_text_debug_dir, exist_ok=True)
|
| 886 |
+
os.makedirs(vlm_debug_dir, exist_ok=True)
|
| 887 |
+
os.makedirs(sam_debug_dir, exist_ok=True)
|
| 888 |
+
os.makedirs(detections_debug_dir, exist_ok=True)
|
| 889 |
+
|
| 890 |
+
logger.info("Debug mode enabled - saving visualizations")
|
| 891 |
+
|
| 892 |
+
# Process each frame independently
|
| 893 |
+
all_detections = {}
|
| 894 |
+
all_masks = {}
|
| 895 |
+
vlm_usage_count = 0
|
| 896 |
+
|
| 897 |
+
for frame_idx, frame_name in enumerate(frame_names):
|
| 898 |
+
frame_path = os.path.join(frames_dir, frame_name)
|
| 899 |
+
frame_image = Image.open(frame_path).convert("RGB")
|
| 900 |
+
|
| 901 |
+
logger.info(f"Processing frame {frame_idx + 1}/{len(frame_names)}: {frame_name}")
|
| 902 |
+
|
| 903 |
+
# Get frame stem (without extension) for debug filenames
|
| 904 |
+
frame_stem = Path(frame_name).stem
|
| 905 |
+
|
| 906 |
+
# Detect and filter objects using full pipeline
|
| 907 |
+
bboxes, labels, vlm_used = self._text_to_bbox(
|
| 908 |
+
category,
|
| 909 |
+
frame_image,
|
| 910 |
+
accept_threshold,
|
| 911 |
+
reject_threshold,
|
| 912 |
+
save_debug,
|
| 913 |
+
output_dir,
|
| 914 |
+
frame_stem,
|
| 915 |
+
)
|
| 916 |
+
|
| 917 |
+
# Track VLM usage
|
| 918 |
+
if vlm_used:
|
| 919 |
+
vlm_usage_count += 1
|
| 920 |
+
|
| 921 |
+
# Store detections for this frame
|
| 922 |
+
frame_detections = []
|
| 923 |
+
for bbox, label in zip(bboxes, labels, strict=True):
|
| 924 |
+
frame_detections.append(
|
| 925 |
+
{
|
| 926 |
+
"bbox": bbox,
|
| 927 |
+
"label": label,
|
| 928 |
+
}
|
| 929 |
+
)
|
| 930 |
+
|
| 931 |
+
all_detections[frame_idx] = frame_detections
|
| 932 |
+
|
| 933 |
+
# Segment bboxes using SAM2
|
| 934 |
+
frame_masks = self._segment_bboxes_in_frame(frame_image, bboxes)
|
| 935 |
+
all_masks[frame_idx] = frame_masks
|
| 936 |
+
|
| 937 |
+
logger.info(f" Segmented {len(frame_masks)} objects")
|
| 938 |
+
|
| 939 |
+
# Save SAM segmentation debug (overlay masks on image)
|
| 940 |
+
if save_debug and len(frame_masks) > 0:
|
| 941 |
+
sam_debug_dir = os.path.join(output_dir, "sam_debug")
|
| 942 |
+
|
| 943 |
+
# Convert PIL to numpy for overlay
|
| 944 |
+
img_array = np.array(frame_image)
|
| 945 |
+
|
| 946 |
+
# Create combined overlay with all masks
|
| 947 |
+
overlay = img_array.copy()
|
| 948 |
+
for mask in frame_masks:
|
| 949 |
+
overlay[mask > 0] = [0, 100, 255] # Blue where mask is present
|
| 950 |
+
|
| 951 |
+
# Blend original image with overlay (60% original, 40% overlay)
|
| 952 |
+
blended = cv2.addWeighted(img_array, 0.6, overlay, 0.4, 0)
|
| 953 |
+
|
| 954 |
+
# Convert back to PIL and save
|
| 955 |
+
blended_img = Image.fromarray(blended)
|
| 956 |
+
sam_path = os.path.join(sam_debug_dir, f"{frame_stem}.jpg")
|
| 957 |
+
blended_img.save(sam_path, quality=95)
|
| 958 |
+
|
| 959 |
+
logger.debug(f"Saved SAM debug visualization with {len(frame_masks)} masks")
|
| 960 |
+
|
| 961 |
+
# Save detections debug (final result - always save, even if no detections)
|
| 962 |
+
if save_debug:
|
| 963 |
+
detections_debug_dir = os.path.join(output_dir, "detections_debug")
|
| 964 |
+
if len(bboxes) > 0:
|
| 965 |
+
detections_img = draw_bboxes(frame_image.copy(), bboxes)
|
| 966 |
+
else:
|
| 967 |
+
# No detections found - save original image without annotations
|
| 968 |
+
detections_img = frame_image.copy()
|
| 969 |
+
detections_path = os.path.join(detections_debug_dir, f"{frame_stem}.jpg")
|
| 970 |
+
detections_img.save(detections_path, quality=95)
|
| 971 |
+
logger.debug(f"Saved detections debug: {detections_path}")
|
| 972 |
+
|
| 973 |
+
# Calculate and log pure inference stats
|
| 974 |
+
inference_end_time = time.time()
|
| 975 |
+
pure_inference_time = inference_end_time - inference_start_time
|
| 976 |
+
pure_fps = len(frame_names) / pure_inference_time if pure_inference_time > 0 else 0.0
|
| 977 |
+
|
| 978 |
+
logger.info("Detection and segmentation completed successfully!")
|
| 979 |
+
logger.info(f"Processed {len(frame_names)} frames")
|
| 980 |
+
logger.info(f"==================================================")
|
| 981 |
+
logger.info(f"Pure Inference Stats:")
|
| 982 |
+
logger.info(f" Total Time: {pure_inference_time:.4f}s")
|
| 983 |
+
logger.info(f" FPS: {pure_fps:.2f}")
|
| 984 |
+
logger.info(
|
| 985 |
+
f" Latency per frame: {1 / pure_fps:.4f}s"
|
| 986 |
+
if pure_fps > 0
|
| 987 |
+
else " Latency per frame: N/A"
|
| 988 |
+
)
|
| 989 |
+
logger.info(f"==================================================")
|
| 990 |
+
|
| 991 |
+
# Calculate VLM usage percentage
|
| 992 |
+
vlm_usage_percentage = (
|
| 993 |
+
(vlm_usage_count / len(frame_names) * 100) if len(frame_names) > 0 else 0.0
|
| 994 |
+
)
|
| 995 |
+
|
| 996 |
+
# Save binary masks to disk if requested
|
| 997 |
+
mask_paths = []
|
| 998 |
+
if save_masks:
|
| 999 |
+
masks_dir = os.path.join(output_dir, "masks")
|
| 1000 |
+
os.makedirs(masks_dir, exist_ok=True)
|
| 1001 |
+
|
| 1002 |
+
logger.info("Saving binary masks...")
|
| 1003 |
+
for frame_idx in sorted(all_masks.keys()):
|
| 1004 |
+
frame_masks_list = all_masks[frame_idx]
|
| 1005 |
+
|
| 1006 |
+
# Combine all masks for this frame using OR
|
| 1007 |
+
if len(frame_masks_list) > 0:
|
| 1008 |
+
# Start with first mask
|
| 1009 |
+
combined_mask = frame_masks_list[0].copy()
|
| 1010 |
+
# OR with remaining masks
|
| 1011 |
+
for mask in frame_masks_list[1:]:
|
| 1012 |
+
combined_mask = combined_mask | mask
|
| 1013 |
+
else:
|
| 1014 |
+
# No objects in this frame - create empty mask
|
| 1015 |
+
# Get image dimensions from first frame
|
| 1016 |
+
first_frame_path = os.path.join(frames_dir, frame_names[0])
|
| 1017 |
+
first_frame = Image.open(first_frame_path).convert("RGB")
|
| 1018 |
+
h, w = np.array(first_frame).shape[:2]
|
| 1019 |
+
combined_mask = np.zeros((h, w), dtype=np.uint8)
|
| 1020 |
+
|
| 1021 |
+
# Save as PNG (lossless, black & white)
|
| 1022 |
+
mask_filename = (
|
| 1023 |
+
frame_names[frame_idx].replace(".jpg", ".png").replace(".jpeg", ".png")
|
| 1024 |
+
)
|
| 1025 |
+
mask_path = os.path.join(masks_dir, mask_filename)
|
| 1026 |
+
cv2.imwrite(mask_path, combined_mask)
|
| 1027 |
+
mask_paths.append(mask_path)
|
| 1028 |
+
|
| 1029 |
+
logger.info(f"Masks saved to: {masks_dir}")
|
| 1030 |
+
|
| 1031 |
+
result = SegmentationResult(
|
| 1032 |
+
masks=all_masks,
|
| 1033 |
+
num_frames=len(frame_names),
|
| 1034 |
+
output_dir=output_dir,
|
| 1035 |
+
mask_paths=mask_paths,
|
| 1036 |
+
metadata={
|
| 1037 |
+
"category": category,
|
| 1038 |
+
"detections": all_detections,
|
| 1039 |
+
"num_frames_total": len(frame_names),
|
| 1040 |
+
"accept_threshold": accept_threshold,
|
| 1041 |
+
"reject_threshold": reject_threshold,
|
| 1042 |
+
"vlm_usage_count": vlm_usage_count,
|
| 1043 |
+
"vlm_usage_percentage": vlm_usage_percentage,
|
| 1044 |
+
},
|
| 1045 |
+
initial_mask_path=None,
|
| 1046 |
+
)
|
| 1047 |
+
|
| 1048 |
+
return result
|
| 1049 |
+
|
| 1050 |
+
def _get_frame_names(self, frames_dir: str) -> list[str]:
|
| 1051 |
+
"""Get sorted list of image files in directory.
|
| 1052 |
+
|
| 1053 |
+
Args:
|
| 1054 |
+
frames_dir: Directory containing image frames
|
| 1055 |
+
|
| 1056 |
+
Returns:
|
| 1057 |
+
Sorted list of frame filenames
|
| 1058 |
+
|
| 1059 |
+
Raises:
|
| 1060 |
+
ValueError: If no valid image files found
|
| 1061 |
+
"""
|
| 1062 |
+
frame_names = sorted(
|
| 1063 |
+
[f for f in os.listdir(frames_dir) if f.lower().endswith(self.SUPPORTED_IMAGE_FORMATS)]
|
| 1064 |
+
)
|
| 1065 |
+
|
| 1066 |
+
if not frame_names:
|
| 1067 |
+
raise ValueError(
|
| 1068 |
+
f"No image files found in {frames_dir}. "
|
| 1069 |
+
f"Supported formats: {self.SUPPORTED_IMAGE_FORMATS}"
|
| 1070 |
+
)
|
| 1071 |
+
|
| 1072 |
+
return frame_names
|
eneas/segmentation/model_manager.py
ADDED
|
@@ -0,0 +1,126 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
Model Manager - Simplified model download handling.
|
| 3 |
+
|
| 4 |
+
Handles downloading models from HuggingFace Hub and direct URLs.
|
| 5 |
+
Uses HuggingFace Hub's native caching system for all downloads.
|
| 6 |
+
"""
|
| 7 |
+
|
| 8 |
+
import logging
|
| 9 |
+
import urllib.request
|
| 10 |
+
from pathlib import Path
|
| 11 |
+
|
| 12 |
+
logger = logging.getLogger(__name__)
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
class ModelManager:
|
| 16 |
+
"""Manages model downloads for eneas.
|
| 17 |
+
|
| 18 |
+
Uses HuggingFace Hub's default cache (~/.cache/huggingface/hub/) for all models.
|
| 19 |
+
Respects HF_HOME environment variable for custom cache locations.
|
| 20 |
+
|
| 21 |
+
Examples:
|
| 22 |
+
>>> manager = ModelManager()
|
| 23 |
+
>>> # Download from HuggingFace Hub
|
| 24 |
+
>>> model_path = manager.download("microsoft/Florence-2-large")
|
| 25 |
+
>>> # Download from direct URL
|
| 26 |
+
>>> sam2_path = manager.download_url(
|
| 27 |
+
... "https://dl.fbaipublicfiles.com/.../sam2.1_hiera_large.pt",
|
| 28 |
+
... "sam2.1_hiera_large.pt"
|
| 29 |
+
... )
|
| 30 |
+
"""
|
| 31 |
+
|
| 32 |
+
def download(self, model_id: str) -> Path:
|
| 33 |
+
"""Download model from HuggingFace Hub.
|
| 34 |
+
|
| 35 |
+
Uses HuggingFace Hub's native caching and download resumption.
|
| 36 |
+
The model is cached automatically and reused on subsequent calls.
|
| 37 |
+
|
| 38 |
+
Args:
|
| 39 |
+
model_id: HuggingFace model ID (e.g., 'microsoft/Florence-2-large')
|
| 40 |
+
|
| 41 |
+
Returns:
|
| 42 |
+
Path to model directory
|
| 43 |
+
|
| 44 |
+
Raises:
|
| 45 |
+
ImportError: If huggingface_hub is not installed
|
| 46 |
+
RuntimeError: If download fails
|
| 47 |
+
|
| 48 |
+
Examples:
|
| 49 |
+
>>> manager = ModelManager()
|
| 50 |
+
>>> path = manager.download("microsoft/Florence-2-large")
|
| 51 |
+
"""
|
| 52 |
+
try:
|
| 53 |
+
from huggingface_hub import snapshot_download
|
| 54 |
+
except ImportError as e:
|
| 55 |
+
raise ImportError(
|
| 56 |
+
"huggingface_hub is required for model downloads.\n"
|
| 57 |
+
"Install with: pip install huggingface_hub"
|
| 58 |
+
) from e
|
| 59 |
+
|
| 60 |
+
try:
|
| 61 |
+
logger.info(f"Downloading {model_id} from HuggingFace Hub...")
|
| 62 |
+
|
| 63 |
+
# Use HuggingFace's native caching
|
| 64 |
+
# - Automatically uses ~/.cache/huggingface/hub/
|
| 65 |
+
# - Respects HF_HOME environment variable
|
| 66 |
+
# - Handles validation, resumable downloads, symlinks, etc.
|
| 67 |
+
model_path = snapshot_download(repo_id=model_id)
|
| 68 |
+
|
| 69 |
+
logger.info(f"Model ready at: {model_path}")
|
| 70 |
+
return Path(model_path)
|
| 71 |
+
|
| 72 |
+
except Exception as e:
|
| 73 |
+
raise RuntimeError(
|
| 74 |
+
f"Failed to download {model_id} from HuggingFace Hub: {e}\n\n"
|
| 75 |
+
f"Manual download: https://huggingface.co/{model_id}"
|
| 76 |
+
) from e
|
| 77 |
+
|
| 78 |
+
def download_url(self, url: str, filename: str) -> Path:
|
| 79 |
+
"""Download file from direct URL.
|
| 80 |
+
|
| 81 |
+
Downloads to HuggingFace cache directory for consistency with other models.
|
| 82 |
+
File is cached and reused on subsequent calls.
|
| 83 |
+
|
| 84 |
+
Args:
|
| 85 |
+
url: Direct download URL
|
| 86 |
+
filename: Name to save file as
|
| 87 |
+
|
| 88 |
+
Returns:
|
| 89 |
+
Path to downloaded file
|
| 90 |
+
|
| 91 |
+
Raises:
|
| 92 |
+
RuntimeError: If download fails
|
| 93 |
+
|
| 94 |
+
Examples:
|
| 95 |
+
>>> manager = ModelManager()
|
| 96 |
+
>>> path = manager.download_url(
|
| 97 |
+
... "https://example.com/model.pt",
|
| 98 |
+
... "model.pt"
|
| 99 |
+
... )
|
| 100 |
+
"""
|
| 101 |
+
try:
|
| 102 |
+
from huggingface_hub import HF_HOME
|
| 103 |
+
except ImportError:
|
| 104 |
+
# Fallback if huggingface_hub not available
|
| 105 |
+
HF_HOME = None
|
| 106 |
+
|
| 107 |
+
# Use HuggingFace cache directory for consistency
|
| 108 |
+
cache_dir = Path(HF_HOME or Path.home() / ".cache" / "huggingface")
|
| 109 |
+
file_path = cache_dir / "hub" / filename
|
| 110 |
+
|
| 111 |
+
# Return cached file if exists
|
| 112 |
+
if file_path.exists():
|
| 113 |
+
logger.info(f"Using cached file: {file_path}")
|
| 114 |
+
return file_path
|
| 115 |
+
|
| 116 |
+
# Download file
|
| 117 |
+
file_path.parent.mkdir(parents=True, exist_ok=True)
|
| 118 |
+
logger.info(f"Downloading {filename} from {url}...")
|
| 119 |
+
|
| 120 |
+
try:
|
| 121 |
+
urllib.request.urlretrieve(url, file_path)
|
| 122 |
+
logger.info(f"Download complete: {file_path}")
|
| 123 |
+
return file_path
|
| 124 |
+
|
| 125 |
+
except Exception as e:
|
| 126 |
+
raise RuntimeError(f"Failed to download from {url}: {e}") from e
|
eneas/segmentation/types.py
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
Shared types for segmentation operations.
|
| 3 |
+
"""
|
| 4 |
+
|
| 5 |
+
from dataclasses import dataclass
|
| 6 |
+
|
| 7 |
+
import numpy as np
|
| 8 |
+
|
| 9 |
+
|
| 10 |
+
@dataclass
|
| 11 |
+
class SegmentationResult:
|
| 12 |
+
"""Result of a segmentation operation.
|
| 13 |
+
|
| 14 |
+
Attributes:
|
| 15 |
+
masks: Dictionary mapping frame indices to binary masks (numpy arrays, 0=background, 255=foreground)
|
| 16 |
+
num_frames: Number of frames successfully segmented
|
| 17 |
+
output_dir: Directory where results were saved
|
| 18 |
+
mask_paths: List of paths to saved mask images (if save_masks=True)
|
| 19 |
+
metadata: Additional metadata about the segmentation
|
| 20 |
+
initial_mask_path: Path to the initial mask visualization (None for generic segmentation)
|
| 21 |
+
"""
|
| 22 |
+
|
| 23 |
+
masks: dict[int, np.ndarray]
|
| 24 |
+
num_frames: int
|
| 25 |
+
output_dir: str
|
| 26 |
+
mask_paths: list[str]
|
| 27 |
+
metadata: dict
|
| 28 |
+
initial_mask_path: str | None = None
|
eneas/segmentation/unique_instance.py
ADDED
|
@@ -0,0 +1,993 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
UniqueInstanceSegmenter - Unique instance segmentation with temporal tracking.
|
| 3 |
+
|
| 4 |
+
Based on SeC model for frame sequence object segmentation.
|
| 5 |
+
"""
|
| 6 |
+
|
| 7 |
+
import gc
|
| 8 |
+
import logging
|
| 9 |
+
import os
|
| 10 |
+
import time
|
| 11 |
+
from pathlib import Path
|
| 12 |
+
|
| 13 |
+
import cv2
|
| 14 |
+
import numpy as np
|
| 15 |
+
import torch
|
| 16 |
+
from PIL import Image
|
| 17 |
+
|
| 18 |
+
from .model_manager import ModelManager
|
| 19 |
+
from .types import SegmentationResult
|
| 20 |
+
|
| 21 |
+
logger = logging.getLogger(__name__)
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
class UniqueInstanceSegmenter:
|
| 25 |
+
"""
|
| 26 |
+
Segmenter for unique instances with temporal tracking.
|
| 27 |
+
|
| 28 |
+
Use cases:
|
| 29 |
+
- "THAT specific statue"
|
| 30 |
+
- "THAT red car"
|
| 31 |
+
- "THAT particular person"
|
| 32 |
+
|
| 33 |
+
A single instance that persists over time.
|
| 34 |
+
Can disappear/reappear but remains THE SAME object.
|
| 35 |
+
|
| 36 |
+
Returns binary masks (black & white) for each frame where:
|
| 37 |
+
- Black (0) = Background
|
| 38 |
+
- White (255) = Segmented object
|
| 39 |
+
|
| 40 |
+
Example:
|
| 41 |
+
>>> from eneas.segmentation import UniqueInstanceSegmenter
|
| 42 |
+
>>> segmenter = UniqueInstanceSegmenter() # Requires CUDA GPU
|
| 43 |
+
>>> result = segmenter.segment(
|
| 44 |
+
... frames_path="/path/to/frames",
|
| 45 |
+
... points=[(100, 200), (150, 250)],
|
| 46 |
+
... annotation_frame="frame_0050.jpg"
|
| 47 |
+
... )
|
| 48 |
+
>>> print(f"Segmented {result.num_frames} frames")
|
| 49 |
+
>>> # Access binary masks (always available in memory)
|
| 50 |
+
>>> mask_frame_0 = result.masks[0] # numpy array (H, W) with 0 and 255
|
| 51 |
+
>>> # Optionally save to disk
|
| 52 |
+
>>> result = segmenter.segment(..., save_masks=True)
|
| 53 |
+
>>> mask_image = cv2.imread(result.mask_paths[0], cv2.IMREAD_GRAYSCALE)
|
| 54 |
+
"""
|
| 55 |
+
|
| 56 |
+
SUPPORTED_IMAGE_FORMATS = (".jpg", ".jpeg", ".png")
|
| 57 |
+
DEFAULT_MEMORY_CLEANUP_INTERVAL = 10
|
| 58 |
+
DEFAULT_PROGRESS_LOG_INTERVAL = 20
|
| 59 |
+
|
| 60 |
+
# SAM encoder configurations
|
| 61 |
+
SAM_ENCODERS = {
|
| 62 |
+
# SAM 2.1 (Latest)
|
| 63 |
+
"tiny": "sam2.1/sam2.1_hiera_t.yaml",
|
| 64 |
+
"small": "sam2.1/sam2.1_hiera_s.yaml",
|
| 65 |
+
"base": "sam2.1/sam2.1_hiera_b+.yaml",
|
| 66 |
+
"large": "sam2.1/sam2.1_hiera_l.yaml",
|
| 67 |
+
# LongSAM 2.1 (Default, better temporal consistency for frame sequences)
|
| 68 |
+
"long-tiny": "longsam2.1/longsam2.1_hiera_t.yaml",
|
| 69 |
+
"long-small": "longsam2.1/longsam2.1_hiera_s.yaml",
|
| 70 |
+
"long-base": "longsam2.1/longsam2.1_hiera_b+.yaml",
|
| 71 |
+
"long-large": "longsam2.1/longsam2.1_hiera_l.yaml",
|
| 72 |
+
# SAM 2.0 (Legacy)
|
| 73 |
+
"legacy-tiny": "sam2/sam2_hiera_t.yaml",
|
| 74 |
+
"legacy-small": "sam2/sam2_hiera_s.yaml",
|
| 75 |
+
"legacy-base": "sam2/sam2_hiera_b+.yaml",
|
| 76 |
+
"legacy-large": "sam2/sam2_hiera_l.yaml",
|
| 77 |
+
}
|
| 78 |
+
|
| 79 |
+
def __init__(
|
| 80 |
+
self,
|
| 81 |
+
segmentation_model_path: str | None = None,
|
| 82 |
+
grounding_model_path: str | None = None,
|
| 83 |
+
sam_encoder: str = "long-large",
|
| 84 |
+
device: str | None = None,
|
| 85 |
+
default_output_dir: str = "./outputs",
|
| 86 |
+
model_config_overrides: dict[str, str] | None = None,
|
| 87 |
+
memory_cleanup_interval: int = 10,
|
| 88 |
+
):
|
| 89 |
+
"""
|
| 90 |
+
Initialize the segmenter.
|
| 91 |
+
|
| 92 |
+
Args:
|
| 93 |
+
segmentation_model_path: Path to SeC model directory. If None, auto-downloads from HuggingFace
|
| 94 |
+
grounding_model_path: Path to Florence-2 model directory. If None, auto-downloads when needed
|
| 95 |
+
sam_encoder: SAM encoder variant. Options:
|
| 96 |
+
- LongSAM 2.1 (best for temporal tracking): 'long-tiny', 'long-small', 'long-base', 'long-large' (default)
|
| 97 |
+
- SAM 2.1: 'tiny', 'small', 'base', 'large'
|
| 98 |
+
- SAM 2.0: 'legacy-tiny', 'legacy-small', 'legacy-base', 'legacy-large'
|
| 99 |
+
device: Device to use ('cuda' recommended). If None, auto-detects CUDA availability
|
| 100 |
+
default_output_dir: Default directory for segmentation outputs
|
| 101 |
+
model_config_overrides: Additional Hydra config overrides for the segmentation model
|
| 102 |
+
memory_cleanup_interval: Clean GPU memory every N frames (default: 10)
|
| 103 |
+
|
| 104 |
+
Environment Variables:
|
| 105 |
+
HF_HOME: HuggingFace cache directory (default: ~/.cache/huggingface)
|
| 106 |
+
|
| 107 |
+
Note:
|
| 108 |
+
Requires CUDA GPU with bfloat16 support. CPU inference is not supported.
|
| 109 |
+
|
| 110 |
+
Examples:
|
| 111 |
+
>>> segmenter = UniqueInstanceSegmenter()
|
| 112 |
+
>>> segmenter = UniqueInstanceSegmenter(sam_encoder="long-small")
|
| 113 |
+
>>> segmenter = UniqueInstanceSegmenter(segmentation_model_path="/path/to/SeC-4B")
|
| 114 |
+
>>> segmenter = UniqueInstanceSegmenter(device="cuda:1")
|
| 115 |
+
"""
|
| 116 |
+
if sam_encoder not in self.SAM_ENCODERS:
|
| 117 |
+
available = ", ".join(f"'{k}'" for k in self.SAM_ENCODERS.keys())
|
| 118 |
+
raise ValueError(
|
| 119 |
+
f"Invalid sam_encoder: '{sam_encoder}'. Available options: {available}"
|
| 120 |
+
)
|
| 121 |
+
|
| 122 |
+
self.sam_encoder = sam_encoder
|
| 123 |
+
self.sam_config_path = self.SAM_ENCODERS[sam_encoder]
|
| 124 |
+
logger.info(f"Using SAM encoder: {sam_encoder} ({self.sam_config_path})")
|
| 125 |
+
|
| 126 |
+
if segmentation_model_path is not None:
|
| 127 |
+
self.segmentation_model_path = segmentation_model_path
|
| 128 |
+
self._auto_download_segmentation_model = False
|
| 129 |
+
logger.info(f"Using segmentation model from: {segmentation_model_path}")
|
| 130 |
+
else:
|
| 131 |
+
self.segmentation_model_path = None
|
| 132 |
+
self._auto_download_segmentation_model = True
|
| 133 |
+
logger.info("Segmentation model will auto-download on first use")
|
| 134 |
+
|
| 135 |
+
if grounding_model_path is not None:
|
| 136 |
+
self.grounding_model_path = grounding_model_path
|
| 137 |
+
self._auto_download_grounding_model = False
|
| 138 |
+
logger.info(f"Using grounding model from: {grounding_model_path}")
|
| 139 |
+
else:
|
| 140 |
+
self.grounding_model_path = None
|
| 141 |
+
self._auto_download_grounding_model = True
|
| 142 |
+
|
| 143 |
+
if device is not None:
|
| 144 |
+
self.device = device
|
| 145 |
+
else:
|
| 146 |
+
self.device = "cuda" if torch.cuda.is_available() else "cpu"
|
| 147 |
+
if self.device == "cpu":
|
| 148 |
+
logger.warning(
|
| 149 |
+
"No CUDA device detected. SeC-4B requires CUDA GPU with bfloat16 support. "
|
| 150 |
+
"Inference will likely fail on CPU."
|
| 151 |
+
)
|
| 152 |
+
|
| 153 |
+
self.default_output_dir = default_output_dir
|
| 154 |
+
self.memory_cleanup_interval = memory_cleanup_interval
|
| 155 |
+
|
| 156 |
+
base_overrides = {
|
| 157 |
+
"++model.non_overlap_masks": "false",
|
| 158 |
+
"++model.grounding_encoder_config": self.sam_config_path,
|
| 159 |
+
}
|
| 160 |
+
if model_config_overrides:
|
| 161 |
+
base_overrides.update(model_config_overrides)
|
| 162 |
+
self.model_config_overrides = base_overrides
|
| 163 |
+
|
| 164 |
+
self.segmentation_model = None
|
| 165 |
+
self.segmentation_tokenizer = None
|
| 166 |
+
self.grounding_model = None
|
| 167 |
+
self.grounding_processor = None
|
| 168 |
+
|
| 169 |
+
logger.info(f"UniqueInstanceSegmenter initialized with device: {self.device}")
|
| 170 |
+
|
| 171 |
+
def optimize_cuda_memory(self) -> None:
|
| 172 |
+
"""
|
| 173 |
+
Optimize CUDA memory allocation to reduce fragmentation.
|
| 174 |
+
|
| 175 |
+
This method clears the CUDA cache and enables expandable memory segments,
|
| 176 |
+
which helps prevent Out-of-Memory errors when processing long frame sequences or
|
| 177 |
+
when GPU memory is limited. Only effective when using CUDA device.
|
| 178 |
+
|
| 179 |
+
Call this method before segmentation if you experience memory issues.
|
| 180 |
+
"""
|
| 181 |
+
if self.device == "cuda":
|
| 182 |
+
torch.cuda.empty_cache()
|
| 183 |
+
os.environ["PYTORCH_CUDA_ALLOC_CONF"] = "expandable_segments:True"
|
| 184 |
+
logger.info("CUDA memory optimizations applied")
|
| 185 |
+
|
| 186 |
+
def _validate_inputs(
|
| 187 |
+
self,
|
| 188 |
+
frames_path: str | list[str],
|
| 189 |
+
points: list[tuple[int, int]],
|
| 190 |
+
labels: list[int] | None,
|
| 191 |
+
) -> None:
|
| 192 |
+
"""
|
| 193 |
+
Validate all input parameters.
|
| 194 |
+
|
| 195 |
+
Args:
|
| 196 |
+
frames_path: Path to frames directory or list of frame paths
|
| 197 |
+
points: List of (x, y) coordinates
|
| 198 |
+
labels: List of point labels (1 or 0)
|
| 199 |
+
|
| 200 |
+
Raises:
|
| 201 |
+
ValueError: If any input is invalid
|
| 202 |
+
FileNotFoundError: If frames_path doesn't exist
|
| 203 |
+
"""
|
| 204 |
+
# Validate frames_path
|
| 205 |
+
if isinstance(frames_path, str):
|
| 206 |
+
if not os.path.isdir(frames_path):
|
| 207 |
+
raise FileNotFoundError(f"Frames directory not found: {frames_path}")
|
| 208 |
+
else:
|
| 209 |
+
raise NotImplementedError(
|
| 210 |
+
"List of frame paths is not yet implemented. "
|
| 211 |
+
"Please provide a directory path containing ordered frames."
|
| 212 |
+
)
|
| 213 |
+
|
| 214 |
+
# Validate points
|
| 215 |
+
if not points:
|
| 216 |
+
raise ValueError("At least one point must be provided")
|
| 217 |
+
|
| 218 |
+
if not all(isinstance(p, (tuple, list)) and len(p) == 2 for p in points):
|
| 219 |
+
raise ValueError("Each point must be a tuple or list of two integers (x, y)")
|
| 220 |
+
|
| 221 |
+
# Validate labels
|
| 222 |
+
if labels is not None:
|
| 223 |
+
if len(labels) != len(points):
|
| 224 |
+
raise ValueError(
|
| 225 |
+
f"Number of labels ({len(labels)}) must match number of points ({len(points)})"
|
| 226 |
+
)
|
| 227 |
+
if not all(label in (0, 1) for label in labels):
|
| 228 |
+
raise ValueError("Labels must be 0 (negative) or 1 (positive)")
|
| 229 |
+
|
| 230 |
+
def _load_segmentation_model(self):
|
| 231 |
+
"""Load SeC segmentation model lazily on first use.
|
| 232 |
+
|
| 233 |
+
Raises:
|
| 234 |
+
ImportError: If SeC modules cannot be imported
|
| 235 |
+
FileNotFoundError: If model path doesn't exist
|
| 236 |
+
RuntimeError: If auto-download fails
|
| 237 |
+
"""
|
| 238 |
+
if self.segmentation_model is not None:
|
| 239 |
+
return
|
| 240 |
+
|
| 241 |
+
if self._auto_download_segmentation_model:
|
| 242 |
+
logger.info("Auto-downloading SeC-4B model from HuggingFace...")
|
| 243 |
+
try:
|
| 244 |
+
model_manager = ModelManager()
|
| 245 |
+
downloaded_path = model_manager.download("OpenIXCLab/SeC-4B")
|
| 246 |
+
self.segmentation_model_path = str(downloaded_path)
|
| 247 |
+
logger.info(f"Model ready at: {downloaded_path}")
|
| 248 |
+
except Exception as e:
|
| 249 |
+
raise RuntimeError(
|
| 250 |
+
f"Auto-download failed: {e}\n\n"
|
| 251 |
+
"You can manually download the model:\n"
|
| 252 |
+
" 1. Visit: https://huggingface.co/OpenIXCLab/SeC-4B\n"
|
| 253 |
+
" 2. Download and extract\n"
|
| 254 |
+
" 3. Pass: UniqueInstanceSegmenter(segmentation_model_path='/path/to/SeC-4B')"
|
| 255 |
+
) from e
|
| 256 |
+
|
| 257 |
+
logger.info(f"Loading SeC model from {self.segmentation_model_path}...")
|
| 258 |
+
|
| 259 |
+
model_path = Path(self.segmentation_model_path)
|
| 260 |
+
if not model_path.exists():
|
| 261 |
+
raise FileNotFoundError(
|
| 262 |
+
f"Model path not found: {self.segmentation_model_path}\n\n"
|
| 263 |
+
"Options:\n"
|
| 264 |
+
" 1. Auto-download: UniqueInstanceSegmenter()\n"
|
| 265 |
+
" 2. Pass parameter: UniqueInstanceSegmenter(segmentation_model_path='/path/to/SeC-4B')\n"
|
| 266 |
+
" 3. Manual download: https://huggingface.co/OpenIXCLab/SeC-4B"
|
| 267 |
+
)
|
| 268 |
+
|
| 269 |
+
try:
|
| 270 |
+
from transformers import AutoTokenizer
|
| 271 |
+
|
| 272 |
+
from eneas.vendor.SeC.inference.configuration_sec import SeCConfig
|
| 273 |
+
from eneas.vendor.SeC.inference.modeling_sec import SeCModel
|
| 274 |
+
except ImportError as e:
|
| 275 |
+
raise ImportError(
|
| 276 |
+
f"Failed to import SeC modules: {e}. "
|
| 277 |
+
"This is an internal error with the vendored SeC code."
|
| 278 |
+
) from e
|
| 279 |
+
|
| 280 |
+
if self.device == "cuda":
|
| 281 |
+
torch.autocast("cuda", dtype=torch.bfloat16).__enter__()
|
| 282 |
+
|
| 283 |
+
config = SeCConfig.from_pretrained(str(model_path), trust_remote_code=True)
|
| 284 |
+
|
| 285 |
+
hydra_overrides = [
|
| 286 |
+
f"++model.{k.replace('++model.', '')}={v}"
|
| 287 |
+
for k, v in self.model_config_overrides.items()
|
| 288 |
+
]
|
| 289 |
+
config.hydra_overrides_extra = hydra_overrides
|
| 290 |
+
|
| 291 |
+
if hasattr(config, "vision_config"):
|
| 292 |
+
config.vision_config.use_flash_attn = False
|
| 293 |
+
|
| 294 |
+
self.segmentation_model = (
|
| 295 |
+
SeCModel.from_pretrained(
|
| 296 |
+
str(model_path), config=config, torch_dtype=torch.bfloat16, trust_remote_code=True
|
| 297 |
+
)
|
| 298 |
+
.eval()
|
| 299 |
+
.to(self.device)
|
| 300 |
+
)
|
| 301 |
+
|
| 302 |
+
self.segmentation_tokenizer = AutoTokenizer.from_pretrained(
|
| 303 |
+
str(model_path),
|
| 304 |
+
trust_remote_code=True,
|
| 305 |
+
)
|
| 306 |
+
|
| 307 |
+
logger.info("Model loaded successfully")
|
| 308 |
+
|
| 309 |
+
def _load_grounding_model(self):
|
| 310 |
+
"""Load grounding model lazily when needed for text-based segmentation.
|
| 311 |
+
|
| 312 |
+
Raises:
|
| 313 |
+
ImportError: If transformers cannot be imported
|
| 314 |
+
RuntimeError: If auto-download fails
|
| 315 |
+
"""
|
| 316 |
+
if self.grounding_model is not None:
|
| 317 |
+
return
|
| 318 |
+
|
| 319 |
+
grounding_model_id = "microsoft/Florence-2-large"
|
| 320 |
+
|
| 321 |
+
if self._auto_download_grounding_model:
|
| 322 |
+
logger.info(
|
| 323 |
+
f"Auto-downloading grounding model ({grounding_model_id}) from HuggingFace..."
|
| 324 |
+
)
|
| 325 |
+
try:
|
| 326 |
+
model_manager = ModelManager()
|
| 327 |
+
downloaded_path = model_manager.download(grounding_model_id)
|
| 328 |
+
self.grounding_model_path = str(downloaded_path)
|
| 329 |
+
logger.info(f"Grounding model ready at: {downloaded_path}")
|
| 330 |
+
except Exception as e:
|
| 331 |
+
raise RuntimeError(
|
| 332 |
+
f"Auto-download failed: {e}\n\n"
|
| 333 |
+
"You can manually download the model:\n"
|
| 334 |
+
f" 1. Visit: https://huggingface.co/{grounding_model_id}\n"
|
| 335 |
+
" 2. Download and extract\n"
|
| 336 |
+
" 3. Pass: UniqueInstanceSegmenter(grounding_model_path='/path/to/model')"
|
| 337 |
+
) from e
|
| 338 |
+
|
| 339 |
+
logger.info(f"Loading grounding model from {self.grounding_model_path}...")
|
| 340 |
+
|
| 341 |
+
from transformers import AutoModelForCausalLM, AutoProcessor
|
| 342 |
+
|
| 343 |
+
self.grounding_model = (
|
| 344 |
+
AutoModelForCausalLM.from_pretrained(
|
| 345 |
+
self.grounding_model_path, trust_remote_code=True, torch_dtype="auto"
|
| 346 |
+
)
|
| 347 |
+
.eval()
|
| 348 |
+
.to(self.device)
|
| 349 |
+
)
|
| 350 |
+
|
| 351 |
+
self.grounding_processor = AutoProcessor.from_pretrained(
|
| 352 |
+
self.grounding_model_path, trust_remote_code=True
|
| 353 |
+
)
|
| 354 |
+
|
| 355 |
+
logger.info("Grounding model loaded successfully")
|
| 356 |
+
|
| 357 |
+
def _text_to_bbox(self, text: str, frame_image: Image) -> list[float]:
|
| 358 |
+
"""Use grounding model to detect object bounding box from text description.
|
| 359 |
+
|
| 360 |
+
Args:
|
| 361 |
+
text: Text description of the object
|
| 362 |
+
frame_image: PIL Image of the frame
|
| 363 |
+
|
| 364 |
+
Returns:
|
| 365 |
+
Bounding box [x1, y1, x2, y2]
|
| 366 |
+
|
| 367 |
+
Raises:
|
| 368 |
+
ValueError: If no objects found for the text
|
| 369 |
+
"""
|
| 370 |
+
task_prompt = "<OPEN_VOCABULARY_DETECTION>"
|
| 371 |
+
prompt = task_prompt + text
|
| 372 |
+
|
| 373 |
+
inputs = self.grounding_processor(text=prompt, images=frame_image, return_tensors="pt").to(
|
| 374 |
+
self.device, torch.float16
|
| 375 |
+
)
|
| 376 |
+
|
| 377 |
+
generated_ids = self.grounding_model.generate(
|
| 378 |
+
input_ids=inputs["input_ids"],
|
| 379 |
+
pixel_values=inputs["pixel_values"],
|
| 380 |
+
max_new_tokens=1024,
|
| 381 |
+
early_stopping=False,
|
| 382 |
+
do_sample=False,
|
| 383 |
+
num_beams=3,
|
| 384 |
+
)
|
| 385 |
+
|
| 386 |
+
generated_text = self.grounding_processor.batch_decode(
|
| 387 |
+
generated_ids, skip_special_tokens=False
|
| 388 |
+
)[0]
|
| 389 |
+
|
| 390 |
+
parsed_answer = self.grounding_processor.post_process_generation(
|
| 391 |
+
generated_text, task=task_prompt, image_size=(frame_image.width, frame_image.height)
|
| 392 |
+
)
|
| 393 |
+
|
| 394 |
+
bboxes = parsed_answer["<OPEN_VOCABULARY_DETECTION>"]["bboxes"]
|
| 395 |
+
if not bboxes:
|
| 396 |
+
raise ValueError(f"Grounding model could not detect any objects for text: '{text}'")
|
| 397 |
+
|
| 398 |
+
bbox = bboxes[0]
|
| 399 |
+
logger.info(f"Grounding model detected bbox: {bbox} for text: '{text}'")
|
| 400 |
+
|
| 401 |
+
return bbox
|
| 402 |
+
|
| 403 |
+
def _get_frame_names(self, frames_dir: str) -> list[str]:
|
| 404 |
+
"""Get sorted list of image files in directory.
|
| 405 |
+
|
| 406 |
+
Args:
|
| 407 |
+
frames_dir: Directory containing image frames
|
| 408 |
+
|
| 409 |
+
Returns:
|
| 410 |
+
Sorted list of frame filenames
|
| 411 |
+
|
| 412 |
+
Raises:
|
| 413 |
+
ValueError: If no valid image files found
|
| 414 |
+
"""
|
| 415 |
+
frame_names = sorted(
|
| 416 |
+
[f for f in os.listdir(frames_dir) if f.lower().endswith(self.SUPPORTED_IMAGE_FORMATS)]
|
| 417 |
+
)
|
| 418 |
+
|
| 419 |
+
if not frame_names:
|
| 420 |
+
raise ValueError(
|
| 421 |
+
f"No image files found in {frames_dir}. "
|
| 422 |
+
f"Supported formats: {self.SUPPORTED_IMAGE_FORMATS}"
|
| 423 |
+
)
|
| 424 |
+
|
| 425 |
+
return frame_names
|
| 426 |
+
|
| 427 |
+
def _resolve_frame_index(
|
| 428 |
+
self, annotation_frame: str | None, frame_names: list[str]
|
| 429 |
+
) -> tuple[int, str]:
|
| 430 |
+
"""Resolve annotation frame name to index and full name.
|
| 431 |
+
|
| 432 |
+
Args:
|
| 433 |
+
annotation_frame: Name of annotation frame (or None for first frame)
|
| 434 |
+
frame_names: List of all available frame names
|
| 435 |
+
|
| 436 |
+
Returns:
|
| 437 |
+
Tuple of (frame_index, annotation_frame_name)
|
| 438 |
+
|
| 439 |
+
Raises:
|
| 440 |
+
ValueError: If annotation_frame is not found
|
| 441 |
+
"""
|
| 442 |
+
if annotation_frame is None:
|
| 443 |
+
return 0, frame_names[0]
|
| 444 |
+
|
| 445 |
+
frame_basename = os.path.basename(annotation_frame)
|
| 446 |
+
|
| 447 |
+
if frame_basename not in frame_names:
|
| 448 |
+
raise ValueError(
|
| 449 |
+
f"Annotation frame '{frame_basename}' not found in frames directory. "
|
| 450 |
+
f"Available frames: {frame_names[:5]}... "
|
| 451 |
+
f"(total: {len(frame_names)})"
|
| 452 |
+
)
|
| 453 |
+
|
| 454 |
+
return frame_names.index(frame_basename), frame_basename
|
| 455 |
+
|
| 456 |
+
def _validate_points_in_bounds(
|
| 457 |
+
self, points: list[tuple[int, int]], image_shape: tuple[int, int, int]
|
| 458 |
+
) -> None:
|
| 459 |
+
"""Validate that all points are within image bounds.
|
| 460 |
+
|
| 461 |
+
Args:
|
| 462 |
+
points: List of (x, y) coordinates
|
| 463 |
+
image_shape: Image shape (height, width, channels)
|
| 464 |
+
|
| 465 |
+
Raises:
|
| 466 |
+
ValueError: If any point is out of bounds
|
| 467 |
+
"""
|
| 468 |
+
height, width = image_shape[:2]
|
| 469 |
+
|
| 470 |
+
for i, (x, y) in enumerate(points):
|
| 471 |
+
if not (0 <= x < width and 0 <= y < height):
|
| 472 |
+
raise ValueError(
|
| 473 |
+
f"Point {i} at ({x}, {y}) is out of image bounds. Image size: {width}x{height}"
|
| 474 |
+
)
|
| 475 |
+
|
| 476 |
+
def segment(
|
| 477 |
+
self,
|
| 478 |
+
frames_path: str | list[str],
|
| 479 |
+
points: list[tuple[int, int]] | None = None,
|
| 480 |
+
annotation_frame: str | None = None,
|
| 481 |
+
labels: list[int] | None = None,
|
| 482 |
+
text: str | None = None,
|
| 483 |
+
output_dir: str | None = None,
|
| 484 |
+
offload_frames_to_gpu: bool = False,
|
| 485 |
+
save_masks: bool = False,
|
| 486 |
+
save_debug: bool = False,
|
| 487 |
+
) -> SegmentationResult:
|
| 488 |
+
"""
|
| 489 |
+
Segment a unique instance across multiple frames.
|
| 490 |
+
|
| 491 |
+
Args:
|
| 492 |
+
frames_path: Directory containing ordered frames
|
| 493 |
+
points: List of (x, y) coordinates (mutually exclusive with text)
|
| 494 |
+
annotation_frame: Frame to annotate (or None for first frame)
|
| 495 |
+
labels: Point labels 1=positive, 0=negative (only with points)
|
| 496 |
+
text: Text description of object (mutually exclusive with points)
|
| 497 |
+
output_dir: Output directory
|
| 498 |
+
offload_frames_to_gpu: Keep frames in GPU (faster, more VRAM)
|
| 499 |
+
save_masks: Save masks to disk
|
| 500 |
+
save_debug: Save debug visualizations (sam_debug/)
|
| 501 |
+
|
| 502 |
+
Returns:
|
| 503 |
+
SegmentationResult with binary masks
|
| 504 |
+
|
| 505 |
+
Raises:
|
| 506 |
+
ValueError: If inputs are invalid
|
| 507 |
+
FileNotFoundError: If paths don't exist
|
| 508 |
+
RuntimeError: If segmentation fails
|
| 509 |
+
"""
|
| 510 |
+
if text is not None and points is not None:
|
| 511 |
+
raise ValueError("'text' and 'points' are mutually exclusive")
|
| 512 |
+
if text is None and points is None:
|
| 513 |
+
raise ValueError("Either 'text' or 'points' must be provided")
|
| 514 |
+
if text is not None and labels is not None:
|
| 515 |
+
raise ValueError("'labels' cannot be used with 'text'")
|
| 516 |
+
|
| 517 |
+
if output_dir is None:
|
| 518 |
+
output_dir = self.default_output_dir
|
| 519 |
+
|
| 520 |
+
if points is not None:
|
| 521 |
+
self._validate_inputs(frames_path, points, labels)
|
| 522 |
+
else:
|
| 523 |
+
if isinstance(frames_path, str):
|
| 524 |
+
if not os.path.isdir(frames_path):
|
| 525 |
+
raise FileNotFoundError(f"Frames directory not found: {frames_path}")
|
| 526 |
+
|
| 527 |
+
frames_dir = frames_path
|
| 528 |
+
frame_names = self._get_frame_names(frames_dir)
|
| 529 |
+
logger.info(f"Found {len(frame_names)} images")
|
| 530 |
+
|
| 531 |
+
frame_idx, annotation_frame = self._resolve_frame_index(annotation_frame, frame_names)
|
| 532 |
+
|
| 533 |
+
initial_frame_path = os.path.join(frames_dir, annotation_frame)
|
| 534 |
+
initial_frame = Image.open(initial_frame_path)
|
| 535 |
+
initial_frame_np = np.array(initial_frame)
|
| 536 |
+
|
| 537 |
+
logger.info(
|
| 538 |
+
f"Annotation frame: {annotation_frame} ({initial_frame_np.shape[1]}x{initial_frame_np.shape[0]})"
|
| 539 |
+
)
|
| 540 |
+
|
| 541 |
+
if text is not None:
|
| 542 |
+
logger.info(f"Using text-based grounding: '{text}'")
|
| 543 |
+
self._load_grounding_model()
|
| 544 |
+
|
| 545 |
+
bbox = self._text_to_bbox(text, initial_frame)
|
| 546 |
+
bbox_array = np.array(bbox, dtype=np.float32)
|
| 547 |
+
|
| 548 |
+
del self.grounding_model
|
| 549 |
+
del self.grounding_processor
|
| 550 |
+
self.grounding_model = None
|
| 551 |
+
self.grounding_processor = None
|
| 552 |
+
if self.device == "cuda":
|
| 553 |
+
torch.cuda.empty_cache()
|
| 554 |
+
logger.info("Grounding model unloaded from GPU")
|
| 555 |
+
|
| 556 |
+
self._load_segmentation_model()
|
| 557 |
+
|
| 558 |
+
# Start pure inference timer (after all model loading)
|
| 559 |
+
logger.info("Models loaded. Starting pure inference timer...")
|
| 560 |
+
inference_start_time = time.time()
|
| 561 |
+
|
| 562 |
+
if text is not None:
|
| 563 |
+
inference_state = self.segmentation_model.grounding_encoder.init_state(
|
| 564 |
+
video_path=frames_dir,
|
| 565 |
+
offload_video_to_cpu=not offload_frames_to_gpu,
|
| 566 |
+
offload_state_to_cpu=False,
|
| 567 |
+
)
|
| 568 |
+
|
| 569 |
+
logger.info("Processing bounding box...")
|
| 570 |
+
ann_obj_id = 1
|
| 571 |
+
_, out_obj_ids, out_mask_logits = (
|
| 572 |
+
self.segmentation_model.grounding_encoder.add_new_points_or_box(
|
| 573 |
+
inference_state=inference_state,
|
| 574 |
+
frame_idx=frame_idx,
|
| 575 |
+
obj_id=ann_obj_id,
|
| 576 |
+
box=bbox_array,
|
| 577 |
+
points=None,
|
| 578 |
+
labels=None,
|
| 579 |
+
clear_old_points=True,
|
| 580 |
+
)
|
| 581 |
+
)
|
| 582 |
+
|
| 583 |
+
init_mask = (out_mask_logits[0] > 0.0).cpu().numpy()
|
| 584 |
+
|
| 585 |
+
initial_mask_path = None
|
| 586 |
+
if save_masks:
|
| 587 |
+
os.makedirs(output_dir, exist_ok=True)
|
| 588 |
+
initial_mask_path = os.path.join(output_dir, "initial_mask.jpg")
|
| 589 |
+
self._save_initial_mask_with_bbox(
|
| 590 |
+
initial_frame_np, init_mask, bbox, text, frame_idx, initial_mask_path
|
| 591 |
+
)
|
| 592 |
+
logger.info(f"Initial mask saved: {initial_mask_path}")
|
| 593 |
+
|
| 594 |
+
metadata = {
|
| 595 |
+
"annotation_frame": annotation_frame,
|
| 596 |
+
"text": text,
|
| 597 |
+
"bbox": bbox,
|
| 598 |
+
"mode": "text-based",
|
| 599 |
+
"num_frames_total": len(frame_names),
|
| 600 |
+
"offload_frames_to_gpu": offload_frames_to_gpu,
|
| 601 |
+
}
|
| 602 |
+
else:
|
| 603 |
+
if labels is None:
|
| 604 |
+
labels = [1] * len(points)
|
| 605 |
+
|
| 606 |
+
logger.info(
|
| 607 |
+
f"Using {len(points)} points in frame '{annotation_frame}' (index {frame_idx})"
|
| 608 |
+
)
|
| 609 |
+
|
| 610 |
+
for i, ((x, y), label) in enumerate(zip(points, labels, strict=True)):
|
| 611 |
+
point_type = "POSITIVE" if label == 1 else "NEGATIVE"
|
| 612 |
+
logger.debug(f" Point {i + 1}: ({x}, {y}) - {point_type}")
|
| 613 |
+
|
| 614 |
+
self._validate_points_in_bounds(points, initial_frame_np.shape)
|
| 615 |
+
|
| 616 |
+
points_array = np.array(points, dtype=np.float32)
|
| 617 |
+
labels_array = np.array(labels, np.int32)
|
| 618 |
+
|
| 619 |
+
inference_state = self.segmentation_model.grounding_encoder.init_state(
|
| 620 |
+
video_path=frames_dir,
|
| 621 |
+
offload_video_to_cpu=not offload_frames_to_gpu,
|
| 622 |
+
offload_state_to_cpu=False,
|
| 623 |
+
)
|
| 624 |
+
|
| 625 |
+
logger.info("Processing initial points...")
|
| 626 |
+
ann_obj_id = 1
|
| 627 |
+
_, out_obj_ids, out_mask_logits = (
|
| 628 |
+
self.segmentation_model.grounding_encoder.add_new_points_or_box(
|
| 629 |
+
inference_state=inference_state,
|
| 630 |
+
frame_idx=frame_idx,
|
| 631 |
+
obj_id=ann_obj_id,
|
| 632 |
+
points=points_array,
|
| 633 |
+
labels=labels_array,
|
| 634 |
+
)
|
| 635 |
+
)
|
| 636 |
+
|
| 637 |
+
init_mask = (out_mask_logits[0] > 0.0).cpu().numpy()
|
| 638 |
+
|
| 639 |
+
initial_mask_path = None
|
| 640 |
+
if save_masks:
|
| 641 |
+
os.makedirs(output_dir, exist_ok=True)
|
| 642 |
+
initial_mask_path = os.path.join(output_dir, "initial_mask.jpg")
|
| 643 |
+
self._save_initial_mask(
|
| 644 |
+
initial_frame_np, init_mask, points, labels, frame_idx, initial_mask_path
|
| 645 |
+
)
|
| 646 |
+
logger.info(f"Initial mask saved: {initial_mask_path}")
|
| 647 |
+
|
| 648 |
+
metadata = {
|
| 649 |
+
"annotation_frame": annotation_frame,
|
| 650 |
+
"points": points,
|
| 651 |
+
"labels": labels,
|
| 652 |
+
"mode": "point-based",
|
| 653 |
+
"num_frames_total": len(frame_names),
|
| 654 |
+
"offload_frames_to_gpu": offload_frames_to_gpu,
|
| 655 |
+
}
|
| 656 |
+
|
| 657 |
+
# Propagate segmentation
|
| 658 |
+
frame_segments = self._propagate_segmentation(
|
| 659 |
+
inference_state, init_mask, frame_idx, len(frame_names)
|
| 660 |
+
)
|
| 661 |
+
|
| 662 |
+
logger.info(f"Propagation completed ({len(frame_segments)} frames)")
|
| 663 |
+
|
| 664 |
+
# Convert frame_segments to binary masks dictionary
|
| 665 |
+
binary_masks = {}
|
| 666 |
+
for frame_idx, segments in frame_segments.items():
|
| 667 |
+
# Get mask for object ID 1 (the single tracked instance)
|
| 668 |
+
mask = segments[1]
|
| 669 |
+
h, w = mask.shape[-2:]
|
| 670 |
+
mask_binary = mask.reshape(h, w).astype(np.uint8) * 255 # 0 or 255
|
| 671 |
+
binary_masks[frame_idx] = mask_binary
|
| 672 |
+
|
| 673 |
+
# Save SAM segmentation debug (overlay masks on images)
|
| 674 |
+
if save_debug:
|
| 675 |
+
sam_debug_dir = os.path.join(output_dir, "sam_debug")
|
| 676 |
+
os.makedirs(sam_debug_dir, exist_ok=True)
|
| 677 |
+
|
| 678 |
+
logger.info("Saving SAM debug visualizations...")
|
| 679 |
+
for frame_idx in sorted(binary_masks.keys()):
|
| 680 |
+
mask = binary_masks[frame_idx]
|
| 681 |
+
|
| 682 |
+
# Load original frame
|
| 683 |
+
frame_path = os.path.join(frames_dir, frame_names[frame_idx])
|
| 684 |
+
frame_img = cv2.imread(frame_path)
|
| 685 |
+
|
| 686 |
+
# Create overlay with blue color for mask
|
| 687 |
+
overlay = frame_img.copy()
|
| 688 |
+
overlay[mask > 0] = [255, 100, 0] # Blue in BGR
|
| 689 |
+
|
| 690 |
+
# Blend original image with overlay (60% original, 40% overlay)
|
| 691 |
+
blended = cv2.addWeighted(frame_img, 0.6, overlay, 0.4, 0)
|
| 692 |
+
|
| 693 |
+
# Save
|
| 694 |
+
debug_path = os.path.join(sam_debug_dir, frame_names[frame_idx])
|
| 695 |
+
cv2.imwrite(debug_path, blended)
|
| 696 |
+
|
| 697 |
+
logger.info(f"SAM debug visualizations saved to: {sam_debug_dir}")
|
| 698 |
+
|
| 699 |
+
# Save binary masks to disk if requested
|
| 700 |
+
mask_paths = []
|
| 701 |
+
if save_masks:
|
| 702 |
+
masks_dir = os.path.join(output_dir, "masks")
|
| 703 |
+
os.makedirs(masks_dir, exist_ok=True)
|
| 704 |
+
|
| 705 |
+
logger.info("Saving binary masks...")
|
| 706 |
+
for frame_idx in sorted(binary_masks.keys()):
|
| 707 |
+
mask = binary_masks[frame_idx]
|
| 708 |
+
mask_filename = (
|
| 709 |
+
frame_names[frame_idx].replace(".jpg", ".png").replace(".jpeg", ".png")
|
| 710 |
+
)
|
| 711 |
+
mask_path = os.path.join(masks_dir, mask_filename)
|
| 712 |
+
|
| 713 |
+
# Save as PNG (lossless, black & white)
|
| 714 |
+
cv2.imwrite(mask_path, mask)
|
| 715 |
+
mask_paths.append(mask_path)
|
| 716 |
+
|
| 717 |
+
logger.info(f"Masks saved to: {masks_dir}")
|
| 718 |
+
|
| 719 |
+
result = SegmentationResult(
|
| 720 |
+
masks=binary_masks,
|
| 721 |
+
num_frames=len(binary_masks),
|
| 722 |
+
output_dir=output_dir,
|
| 723 |
+
mask_paths=mask_paths,
|
| 724 |
+
metadata=metadata,
|
| 725 |
+
initial_mask_path=initial_mask_path,
|
| 726 |
+
)
|
| 727 |
+
|
| 728 |
+
# Calculate and log pure inference stats
|
| 729 |
+
inference_end_time = time.time()
|
| 730 |
+
pure_inference_time = inference_end_time - inference_start_time
|
| 731 |
+
pure_fps = len(binary_masks) / pure_inference_time if pure_inference_time > 0 else 0.0
|
| 732 |
+
|
| 733 |
+
logger.info("Segmentation completed successfully!")
|
| 734 |
+
logger.info(f"Generated {len(binary_masks)} binary masks")
|
| 735 |
+
logger.info("==================================================")
|
| 736 |
+
logger.info("Pure Inference Stats:")
|
| 737 |
+
logger.info(f" Total Time: {pure_inference_time:.4f}s")
|
| 738 |
+
logger.info(f" FPS: {pure_fps:.2f}")
|
| 739 |
+
logger.info(
|
| 740 |
+
f" Latency per frame: {1 / pure_fps:.4f}s"
|
| 741 |
+
if pure_fps > 0
|
| 742 |
+
else " Latency per frame: N/A"
|
| 743 |
+
)
|
| 744 |
+
logger.info("==================================================")
|
| 745 |
+
|
| 746 |
+
return result
|
| 747 |
+
|
| 748 |
+
def _propagate_segmentation(
|
| 749 |
+
self, inference_state, init_mask: np.ndarray, frame_idx: int, total_frames: int
|
| 750 |
+
) -> dict[int, dict[int, np.ndarray]]:
|
| 751 |
+
"""
|
| 752 |
+
Propagate segmentation bidirectionally from initial frame.
|
| 753 |
+
|
| 754 |
+
Args:
|
| 755 |
+
inference_state: SeC inference state
|
| 756 |
+
init_mask: Initial segmentation mask
|
| 757 |
+
frame_idx: Index of initial frame
|
| 758 |
+
total_frames: Total number of frames
|
| 759 |
+
|
| 760 |
+
Returns:
|
| 761 |
+
Dictionary mapping frame indices to segmentation masks
|
| 762 |
+
"""
|
| 763 |
+
logger.info(f"Propagating segmentation across {total_frames} frames...")
|
| 764 |
+
frame_segments = {}
|
| 765 |
+
|
| 766 |
+
# Forward propagation
|
| 767 |
+
logger.info(f" Forward propagation from frame {frame_idx}...")
|
| 768 |
+
frame_count = 0
|
| 769 |
+
|
| 770 |
+
for (
|
| 771 |
+
out_frame_idx,
|
| 772 |
+
out_obj_ids,
|
| 773 |
+
out_mask_logits,
|
| 774 |
+
) in self.segmentation_model.propagate_in_video(
|
| 775 |
+
inference_state,
|
| 776 |
+
start_frame_idx=frame_idx,
|
| 777 |
+
reverse=False,
|
| 778 |
+
init_mask=init_mask,
|
| 779 |
+
tokenizer=self.segmentation_tokenizer,
|
| 780 |
+
):
|
| 781 |
+
frame_segments[out_frame_idx] = {
|
| 782 |
+
out_obj_id: (out_mask_logits[i] > 0.0).cpu().numpy()
|
| 783 |
+
for i, out_obj_id in enumerate(out_obj_ids)
|
| 784 |
+
}
|
| 785 |
+
frame_count += 1
|
| 786 |
+
|
| 787 |
+
# Periodic cleanup
|
| 788 |
+
if frame_count % self.memory_cleanup_interval == 0:
|
| 789 |
+
torch.cuda.empty_cache()
|
| 790 |
+
gc.collect()
|
| 791 |
+
|
| 792 |
+
# Progress logging
|
| 793 |
+
if frame_count % self.DEFAULT_PROGRESS_LOG_INTERVAL == 0:
|
| 794 |
+
logger.info(f" Processed {frame_count} frames...")
|
| 795 |
+
|
| 796 |
+
logger.info(f" Forward propagation completed ({frame_count} frames)")
|
| 797 |
+
|
| 798 |
+
# Backward propagation
|
| 799 |
+
if frame_idx > 0:
|
| 800 |
+
logger.info(f" Backward propagation from frame {frame_idx - 1}...")
|
| 801 |
+
frame_count = 0
|
| 802 |
+
|
| 803 |
+
for (
|
| 804 |
+
out_frame_idx,
|
| 805 |
+
out_obj_ids,
|
| 806 |
+
out_mask_logits,
|
| 807 |
+
) in self.segmentation_model.propagate_in_video(
|
| 808 |
+
inference_state,
|
| 809 |
+
start_frame_idx=frame_idx - 1,
|
| 810 |
+
reverse=True,
|
| 811 |
+
init_mask=init_mask,
|
| 812 |
+
tokenizer=self.segmentation_tokenizer,
|
| 813 |
+
):
|
| 814 |
+
frame_segments[out_frame_idx] = {
|
| 815 |
+
out_obj_id: (out_mask_logits[i] > 0.0).cpu().numpy()
|
| 816 |
+
for i, out_obj_id in enumerate(out_obj_ids)
|
| 817 |
+
}
|
| 818 |
+
frame_count += 1
|
| 819 |
+
|
| 820 |
+
# Periodic cleanup
|
| 821 |
+
if frame_count % self.memory_cleanup_interval == 0:
|
| 822 |
+
torch.cuda.empty_cache()
|
| 823 |
+
gc.collect()
|
| 824 |
+
|
| 825 |
+
# Progress logging
|
| 826 |
+
if frame_count % self.DEFAULT_PROGRESS_LOG_INTERVAL == 0:
|
| 827 |
+
logger.info(f" Processed {frame_count} frames...")
|
| 828 |
+
|
| 829 |
+
logger.info(f" Backward propagation completed ({frame_count} frames)")
|
| 830 |
+
|
| 831 |
+
return frame_segments
|
| 832 |
+
|
| 833 |
+
def _save_initial_mask(
|
| 834 |
+
self,
|
| 835 |
+
frame: np.ndarray,
|
| 836 |
+
mask: np.ndarray,
|
| 837 |
+
points: list[tuple[int, int]],
|
| 838 |
+
labels: list[int],
|
| 839 |
+
frame_idx: int,
|
| 840 |
+
output_path: str,
|
| 841 |
+
) -> None:
|
| 842 |
+
"""Save visualization of initial mask with annotated points.
|
| 843 |
+
|
| 844 |
+
Args:
|
| 845 |
+
frame: Original frame image (RGB format)
|
| 846 |
+
mask: Segmentation mask
|
| 847 |
+
points: List of annotation points
|
| 848 |
+
labels: Point labels (1=positive, 0=negative)
|
| 849 |
+
frame_idx: Frame index
|
| 850 |
+
output_path: Path to save visualization
|
| 851 |
+
"""
|
| 852 |
+
# Convert RGB to BGR for OpenCV
|
| 853 |
+
vis_frame = cv2.cvtColor(frame, cv2.COLOR_RGB2BGR)
|
| 854 |
+
|
| 855 |
+
# Create mask overlay (blue color)
|
| 856 |
+
h, w = mask.shape[-2:]
|
| 857 |
+
mask_binary = mask.reshape(h, w).astype(bool)
|
| 858 |
+
overlay = vis_frame.copy()
|
| 859 |
+
overlay[mask_binary] = [255, 144, 30] # BGR: blue overlay
|
| 860 |
+
|
| 861 |
+
# Blend original and overlay (60% original, 40% overlay)
|
| 862 |
+
vis_frame = cv2.addWeighted(vis_frame, 0.6, overlay, 0.4, 0)
|
| 863 |
+
|
| 864 |
+
# Draw points
|
| 865 |
+
for (x, y), label in zip(points, labels, strict=True):
|
| 866 |
+
if label == 1:
|
| 867 |
+
# Green star for positive points
|
| 868 |
+
color = (0, 255, 0) # BGR
|
| 869 |
+
else:
|
| 870 |
+
# Red star for negative points
|
| 871 |
+
color = (0, 0, 255) # BGR
|
| 872 |
+
|
| 873 |
+
# Draw star marker
|
| 874 |
+
cv2.drawMarker(
|
| 875 |
+
vis_frame,
|
| 876 |
+
(int(x), int(y)),
|
| 877 |
+
color,
|
| 878 |
+
markerType=cv2.MARKER_STAR,
|
| 879 |
+
markerSize=15,
|
| 880 |
+
thickness=2,
|
| 881 |
+
)
|
| 882 |
+
|
| 883 |
+
# Add white border to marker for visibility
|
| 884 |
+
cv2.drawMarker(
|
| 885 |
+
vis_frame,
|
| 886 |
+
(int(x), int(y)),
|
| 887 |
+
(255, 255, 255),
|
| 888 |
+
markerType=cv2.MARKER_STAR,
|
| 889 |
+
markerSize=17,
|
| 890 |
+
thickness=1,
|
| 891 |
+
)
|
| 892 |
+
|
| 893 |
+
# Add title text
|
| 894 |
+
title = f"Initial Mask (Frame {frame_idx})"
|
| 895 |
+
font = cv2.FONT_HERSHEY_SIMPLEX
|
| 896 |
+
font_scale = 1.0
|
| 897 |
+
thickness = 2
|
| 898 |
+
|
| 899 |
+
# Get text size for background
|
| 900 |
+
(text_width, text_height), baseline = cv2.getTextSize(title, font, font_scale, thickness)
|
| 901 |
+
|
| 902 |
+
# Draw text background (semi-transparent black)
|
| 903 |
+
cv2.rectangle(
|
| 904 |
+
vis_frame,
|
| 905 |
+
(5, 5),
|
| 906 |
+
(15 + text_width, 15 + text_height + baseline),
|
| 907 |
+
(0, 0, 0),
|
| 908 |
+
-1,
|
| 909 |
+
)
|
| 910 |
+
|
| 911 |
+
# Draw text
|
| 912 |
+
cv2.putText(
|
| 913 |
+
vis_frame,
|
| 914 |
+
title,
|
| 915 |
+
(10, 10 + text_height),
|
| 916 |
+
font,
|
| 917 |
+
font_scale,
|
| 918 |
+
(255, 255, 255),
|
| 919 |
+
thickness,
|
| 920 |
+
cv2.LINE_AA,
|
| 921 |
+
)
|
| 922 |
+
|
| 923 |
+
cv2.imwrite(output_path, vis_frame)
|
| 924 |
+
|
| 925 |
+
def _save_initial_mask_with_bbox(
|
| 926 |
+
self,
|
| 927 |
+
frame: np.ndarray,
|
| 928 |
+
mask: np.ndarray,
|
| 929 |
+
bbox: list[float],
|
| 930 |
+
text: str,
|
| 931 |
+
frame_idx: int,
|
| 932 |
+
output_path: str,
|
| 933 |
+
) -> None:
|
| 934 |
+
"""Save visualization of initial mask with bounding box (text mode).
|
| 935 |
+
|
| 936 |
+
Args:
|
| 937 |
+
frame: Original frame (RGB)
|
| 938 |
+
mask: Segmentation mask
|
| 939 |
+
bbox: Bounding box [x1, y1, x2, y2]
|
| 940 |
+
text: Text description
|
| 941 |
+
frame_idx: Frame index
|
| 942 |
+
output_path: Save path
|
| 943 |
+
"""
|
| 944 |
+
vis_frame = cv2.cvtColor(frame, cv2.COLOR_RGB2BGR)
|
| 945 |
+
|
| 946 |
+
h, w = mask.shape[-2:]
|
| 947 |
+
mask_binary = mask.reshape(h, w).astype(bool)
|
| 948 |
+
overlay = vis_frame.copy()
|
| 949 |
+
overlay[mask_binary] = [255, 144, 30]
|
| 950 |
+
vis_frame = cv2.addWeighted(vis_frame, 0.6, overlay, 0.4, 0)
|
| 951 |
+
|
| 952 |
+
x1, y1, x2, y2 = map(int, bbox)
|
| 953 |
+
cv2.rectangle(vis_frame, (x1, y1), (x2, y2), (0, 255, 0), thickness=3)
|
| 954 |
+
|
| 955 |
+
label = f"'{text}'"
|
| 956 |
+
font = cv2.FONT_HERSHEY_SIMPLEX
|
| 957 |
+
font_scale = 0.7
|
| 958 |
+
thickness = 2
|
| 959 |
+
|
| 960 |
+
(text_width, text_height), baseline = cv2.getTextSize(label, font, font_scale, thickness)
|
| 961 |
+
text_y = max(y1 - 10, text_height + 5)
|
| 962 |
+
|
| 963 |
+
cv2.rectangle(
|
| 964 |
+
vis_frame,
|
| 965 |
+
(x1, text_y - text_height - 5),
|
| 966 |
+
(x1 + text_width + 5, text_y + baseline),
|
| 967 |
+
(0, 255, 0),
|
| 968 |
+
-1,
|
| 969 |
+
)
|
| 970 |
+
|
| 971 |
+
cv2.putText(
|
| 972 |
+
vis_frame,
|
| 973 |
+
label,
|
| 974 |
+
(x1 + 2, text_y - 2),
|
| 975 |
+
font,
|
| 976 |
+
font_scale,
|
| 977 |
+
(0, 0, 0),
|
| 978 |
+
thickness,
|
| 979 |
+
cv2.LINE_AA,
|
| 980 |
+
)
|
| 981 |
+
|
| 982 |
+
title = f"Initial Mask (Frame {frame_idx}) - Text-based"
|
| 983 |
+
(title_width, title_height), baseline = cv2.getTextSize(title, font, 1.0, 2)
|
| 984 |
+
|
| 985 |
+
cv2.rectangle(
|
| 986 |
+
vis_frame, (5, 5), (15 + title_width, 15 + title_height + baseline), (0, 0, 0), -1
|
| 987 |
+
)
|
| 988 |
+
|
| 989 |
+
cv2.putText(
|
| 990 |
+
vis_frame, title, (10, 10 + title_height), font, 1.0, (255, 255, 255), 2, cv2.LINE_AA
|
| 991 |
+
)
|
| 992 |
+
|
| 993 |
+
cv2.imwrite(output_path, vis_frame)
|
eneas/segmentation/utils.py
ADDED
|
@@ -0,0 +1,418 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
Utility functions for segmentation tasks.
|
| 3 |
+
|
| 4 |
+
Includes NMS, IoU calculation, text conversion utilities, and image masking.
|
| 5 |
+
"""
|
| 6 |
+
|
| 7 |
+
import base64
|
| 8 |
+
import io
|
| 9 |
+
import logging
|
| 10 |
+
|
| 11 |
+
import cv2
|
| 12 |
+
import inflect
|
| 13 |
+
import numpy as np
|
| 14 |
+
import spacy
|
| 15 |
+
from PIL import Image
|
| 16 |
+
|
| 17 |
+
logger = logging.getLogger(__name__)
|
| 18 |
+
|
| 19 |
+
# Load spacy model and inflect engine
|
| 20 |
+
_nlp = spacy.load("en_core_web_sm")
|
| 21 |
+
_inflect_engine = inflect.engine()
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
def smart_convert_to_singular(text: str) -> str:
|
| 25 |
+
"""
|
| 26 |
+
Convert ONLY nouns to singular, preserving articles, adjectives, etc.
|
| 27 |
+
Uses spaCy to detect nouns + inflect to convert.
|
| 28 |
+
|
| 29 |
+
Examples:
|
| 30 |
+
"people" → "person"
|
| 31 |
+
"real people" → "real person"
|
| 32 |
+
"the blue chairs" → "the blue chair"
|
| 33 |
+
"chairs/stool" → "chair/stool"
|
| 34 |
+
"windows & doors" → "window & door"
|
| 35 |
+
|
| 36 |
+
Args:
|
| 37 |
+
text: Text to convert (can contain multiple words and separators)
|
| 38 |
+
|
| 39 |
+
Returns:
|
| 40 |
+
Text with nouns in singular
|
| 41 |
+
"""
|
| 42 |
+
if not text:
|
| 43 |
+
return text
|
| 44 |
+
|
| 45 |
+
# Handle common separators (/, &, and)
|
| 46 |
+
for sep in ["/", " & ", " and "]:
|
| 47 |
+
if sep in text:
|
| 48 |
+
parts = [smart_convert_to_singular(part.strip()) for part in text.split(sep)]
|
| 49 |
+
return sep.join(parts)
|
| 50 |
+
|
| 51 |
+
# Process with spaCy: detect nouns
|
| 52 |
+
doc = _nlp(text)
|
| 53 |
+
result = []
|
| 54 |
+
|
| 55 |
+
for token in doc:
|
| 56 |
+
if token.pos_ == "NOUN": # Only nouns
|
| 57 |
+
# Detect if already singular
|
| 58 |
+
singular = _inflect_engine.singular_noun(token.text)
|
| 59 |
+
if singular: # Was plural → convert to singular
|
| 60 |
+
result.append(singular)
|
| 61 |
+
else: # Already singular → keep
|
| 62 |
+
result.append(token.text)
|
| 63 |
+
else:
|
| 64 |
+
result.append(token.text) # Articles, adjectives, etc. unchanged
|
| 65 |
+
|
| 66 |
+
return " ".join(result)
|
| 67 |
+
|
| 68 |
+
|
| 69 |
+
def smart_convert_to_plural(text: str) -> str:
|
| 70 |
+
"""
|
| 71 |
+
Convert ONLY nouns to plural, preserving articles, adjectives, etc.
|
| 72 |
+
Uses spaCy to detect nouns + inflect to convert.
|
| 73 |
+
|
| 74 |
+
Examples:
|
| 75 |
+
"person" → "people"
|
| 76 |
+
"real person" → "real people"
|
| 77 |
+
"the blue chair" → "the blue chairs"
|
| 78 |
+
"chair/stool" → "chairs/stools"
|
| 79 |
+
"window & door" → "windows & doors"
|
| 80 |
+
|
| 81 |
+
Args:
|
| 82 |
+
text: Text to convert (can contain multiple words and separators)
|
| 83 |
+
|
| 84 |
+
Returns:
|
| 85 |
+
Text with nouns in plural
|
| 86 |
+
"""
|
| 87 |
+
if not text:
|
| 88 |
+
return text
|
| 89 |
+
|
| 90 |
+
# Handle common separators (/, &, and)
|
| 91 |
+
for sep in ["/", " & ", " and "]:
|
| 92 |
+
if sep in text:
|
| 93 |
+
parts = [smart_convert_to_plural(part.strip()) for part in text.split(sep)]
|
| 94 |
+
return sep.join(parts)
|
| 95 |
+
|
| 96 |
+
# Process with spaCy: detect nouns
|
| 97 |
+
doc = _nlp(text)
|
| 98 |
+
result = []
|
| 99 |
+
|
| 100 |
+
for token in doc:
|
| 101 |
+
if token.pos_ == "NOUN": # Only nouns
|
| 102 |
+
# Detect if already plural
|
| 103 |
+
singular = _inflect_engine.singular_noun(token.text)
|
| 104 |
+
if singular: # Already plural → keep
|
| 105 |
+
result.append(token.text)
|
| 106 |
+
else: # Was singular → convert to plural
|
| 107 |
+
result.append(_inflect_engine.plural(token.text))
|
| 108 |
+
else:
|
| 109 |
+
result.append(token.text) # Articles, adjectives, etc. unchanged
|
| 110 |
+
|
| 111 |
+
return " ".join(result)
|
| 112 |
+
|
| 113 |
+
|
| 114 |
+
def calculate_iou(box1: list, box2: list) -> float:
|
| 115 |
+
"""Calculate Intersection over Union (IoU) between two bounding boxes.
|
| 116 |
+
|
| 117 |
+
Args:
|
| 118 |
+
box1: First bounding box [x1, y1, x2, y2]
|
| 119 |
+
box2: Second bounding box [x1, y1, x2, y2]
|
| 120 |
+
|
| 121 |
+
Returns:
|
| 122 |
+
IoU value between 0 and 1
|
| 123 |
+
"""
|
| 124 |
+
x1_min, y1_min, x1_max, y1_max = box1
|
| 125 |
+
x2_min, y2_min, x2_max, y2_max = box2
|
| 126 |
+
|
| 127 |
+
# Calculate intersection area
|
| 128 |
+
inter_x_min = max(x1_min, x2_min)
|
| 129 |
+
inter_y_min = max(y1_min, y2_min)
|
| 130 |
+
inter_x_max = min(x1_max, x2_max)
|
| 131 |
+
inter_y_max = min(y1_max, y2_max)
|
| 132 |
+
|
| 133 |
+
inter_width = max(0, inter_x_max - inter_x_min)
|
| 134 |
+
inter_height = max(0, inter_y_max - inter_y_min)
|
| 135 |
+
inter_area = inter_width * inter_height
|
| 136 |
+
|
| 137 |
+
# Calculate union area
|
| 138 |
+
box1_area = (x1_max - x1_min) * (y1_max - y1_min)
|
| 139 |
+
box2_area = (x2_max - x2_min) * (y2_max - y2_min)
|
| 140 |
+
union_area = box1_area + box2_area - inter_area
|
| 141 |
+
|
| 142 |
+
if union_area == 0:
|
| 143 |
+
return 0.0
|
| 144 |
+
|
| 145 |
+
return inter_area / union_area
|
| 146 |
+
|
| 147 |
+
|
| 148 |
+
def calculate_box_area(box: list) -> float:
|
| 149 |
+
"""Calculate area of a bounding box.
|
| 150 |
+
|
| 151 |
+
Args:
|
| 152 |
+
box: Bounding box [x1, y1, x2, y2]
|
| 153 |
+
|
| 154 |
+
Returns:
|
| 155 |
+
Area of the box
|
| 156 |
+
"""
|
| 157 |
+
x1, y1, x2, y2 = box
|
| 158 |
+
return (x2 - x1) * (y2 - y1)
|
| 159 |
+
|
| 160 |
+
|
| 161 |
+
def non_max_suppression(
|
| 162 |
+
bboxes: list, labels: list, iou_threshold: float = 0.70
|
| 163 |
+
) -> tuple[list, list]:
|
| 164 |
+
"""Apply Non-Maximum Suppression without scores.
|
| 165 |
+
|
| 166 |
+
When two boxes overlap (IoU > threshold), keep the larger box.
|
| 167 |
+
|
| 168 |
+
Args:
|
| 169 |
+
bboxes: List of bounding boxes [x1, y1, x2, y2]
|
| 170 |
+
labels: List of labels
|
| 171 |
+
iou_threshold: IoU threshold for considering boxes as duplicates (default: 0.70)
|
| 172 |
+
|
| 173 |
+
Returns:
|
| 174 |
+
Tuple of (filtered_bboxes, filtered_labels)
|
| 175 |
+
"""
|
| 176 |
+
if len(bboxes) <= 1:
|
| 177 |
+
return bboxes, labels
|
| 178 |
+
|
| 179 |
+
# Calculate areas for all boxes
|
| 180 |
+
areas = [calculate_box_area(box) for box in bboxes]
|
| 181 |
+
|
| 182 |
+
# Sort by area (largest first)
|
| 183 |
+
sorted_indices = sorted(range(len(bboxes)), key=lambda i: areas[i], reverse=True)
|
| 184 |
+
|
| 185 |
+
keep_indices = []
|
| 186 |
+
suppressed = set()
|
| 187 |
+
|
| 188 |
+
for idx in sorted_indices:
|
| 189 |
+
if idx in suppressed:
|
| 190 |
+
continue
|
| 191 |
+
|
| 192 |
+
keep_indices.append(idx)
|
| 193 |
+
|
| 194 |
+
# Suppress smaller boxes that overlap with this one
|
| 195 |
+
for other_idx in sorted_indices:
|
| 196 |
+
if other_idx == idx or other_idx in suppressed:
|
| 197 |
+
continue
|
| 198 |
+
|
| 199 |
+
iou = calculate_iou(bboxes[idx], bboxes[other_idx])
|
| 200 |
+
if iou > iou_threshold:
|
| 201 |
+
suppressed.add(other_idx)
|
| 202 |
+
logger.debug(
|
| 203 |
+
f"NMS: Suppressing box {other_idx} (area={areas[other_idx]:.1f}) "
|
| 204 |
+
f"due to overlap (IoU={iou:.3f}) with box {idx} (area={areas[idx]:.1f})"
|
| 205 |
+
)
|
| 206 |
+
|
| 207 |
+
# Return boxes in original order (keeping only non-suppressed ones)
|
| 208 |
+
keep_indices_sorted = sorted(keep_indices)
|
| 209 |
+
filtered_bboxes = [bboxes[i] for i in keep_indices_sorted]
|
| 210 |
+
filtered_labels = [labels[i] for i in keep_indices_sorted]
|
| 211 |
+
|
| 212 |
+
return filtered_bboxes, filtered_labels
|
| 213 |
+
|
| 214 |
+
|
| 215 |
+
def mask_overlapping_boxes(
|
| 216 |
+
crop_image: Image.Image,
|
| 217 |
+
current_bbox: list,
|
| 218 |
+
all_bboxes: list,
|
| 219 |
+
current_idx: int,
|
| 220 |
+
crop_coords: tuple,
|
| 221 |
+
max_mask_percentage: float = 60.0,
|
| 222 |
+
) -> Image.Image:
|
| 223 |
+
"""Mask overlapping regions from other boxes in the current crop.
|
| 224 |
+
|
| 225 |
+
Paints black the regions of other boxes that overlap with the current box.
|
| 226 |
+
If masking exceeds max_mask_percentage, returns original crop unmasked.
|
| 227 |
+
|
| 228 |
+
Args:
|
| 229 |
+
crop_image: PIL Image of the crop
|
| 230 |
+
current_bbox: Bbox of current box [x1, y1, x2, y2] in original coordinates
|
| 231 |
+
all_bboxes: List of all bboxes in original coordinates
|
| 232 |
+
current_idx: Index of the current box
|
| 233 |
+
crop_coords: Crop coordinates in original image (crop_x1, crop_y1, crop_x2, crop_y2)
|
| 234 |
+
max_mask_percentage: Maximum allowed masking percentage (default: 60.0)
|
| 235 |
+
|
| 236 |
+
Returns:
|
| 237 |
+
PIL Image with overlapping regions masked (or unmasked if exceeds threshold)
|
| 238 |
+
"""
|
| 239 |
+
crop_x1, crop_y1, crop_x2, crop_y2 = [int(c) for c in crop_coords]
|
| 240 |
+
curr_x1, curr_y1, curr_x2, curr_y2 = [int(c) for c in current_bbox]
|
| 241 |
+
|
| 242 |
+
crop_array = np.array(crop_image)
|
| 243 |
+
total_pixels = crop_array.shape[0] * crop_array.shape[1]
|
| 244 |
+
|
| 245 |
+
masked_crop_array = crop_array.copy()
|
| 246 |
+
masked_pixels_count = 0
|
| 247 |
+
|
| 248 |
+
for idx, other_bbox in enumerate(all_bboxes):
|
| 249 |
+
if idx == current_idx:
|
| 250 |
+
continue
|
| 251 |
+
|
| 252 |
+
other_x1, other_y1, other_x2, other_y2 = [int(coord) for coord in other_bbox]
|
| 253 |
+
|
| 254 |
+
# Check if there's overlap between current box and other box
|
| 255 |
+
if not (
|
| 256 |
+
other_x2 < curr_x1 or other_x1 > curr_x2 or other_y2 < curr_y1 or other_y1 > curr_y2
|
| 257 |
+
):
|
| 258 |
+
# Calculate intersection region
|
| 259 |
+
intersect_x1 = max(curr_x1, other_x1)
|
| 260 |
+
intersect_y1 = max(curr_y1, other_y1)
|
| 261 |
+
intersect_x2 = min(curr_x2, other_x2)
|
| 262 |
+
intersect_y2 = min(curr_y2, other_y2)
|
| 263 |
+
|
| 264 |
+
# Check if intersection falls within the crop
|
| 265 |
+
if not (
|
| 266 |
+
intersect_x2 < crop_x1
|
| 267 |
+
or intersect_x1 > crop_x2
|
| 268 |
+
or intersect_y2 < crop_y1
|
| 269 |
+
or intersect_y1 > crop_y2
|
| 270 |
+
):
|
| 271 |
+
# Convert to local crop coordinates
|
| 272 |
+
mask_x1 = int(max(0, intersect_x1 - crop_x1))
|
| 273 |
+
mask_y1 = int(max(0, intersect_y1 - crop_y1))
|
| 274 |
+
mask_x2 = int(min(masked_crop_array.shape[1], intersect_x2 - crop_x1))
|
| 275 |
+
mask_y2 = int(min(masked_crop_array.shape[0], intersect_y2 - crop_y1))
|
| 276 |
+
|
| 277 |
+
region_pixels = (mask_y2 - mask_y1) * (mask_x2 - mask_x1)
|
| 278 |
+
masked_pixels_count += region_pixels
|
| 279 |
+
|
| 280 |
+
# Paint black the overlapping region
|
| 281 |
+
masked_crop_array[mask_y1:mask_y2, mask_x1:mask_x2] = 0
|
| 282 |
+
|
| 283 |
+
mask_percentage = (masked_pixels_count / total_pixels) * 100 if total_pixels > 0 else 0
|
| 284 |
+
|
| 285 |
+
if mask_percentage > max_mask_percentage:
|
| 286 |
+
logger.debug(
|
| 287 |
+
f"Masking {mask_percentage:.1f}% > {max_mask_percentage}% - using unmasked crop"
|
| 288 |
+
)
|
| 289 |
+
return crop_image
|
| 290 |
+
elif mask_percentage > 0:
|
| 291 |
+
logger.debug(f"Masking {mask_percentage:.1f}% applied")
|
| 292 |
+
return Image.fromarray(masked_crop_array)
|
| 293 |
+
else:
|
| 294 |
+
return crop_image
|
| 295 |
+
|
| 296 |
+
|
| 297 |
+
def expand_crop_to_minimum_size(
|
| 298 |
+
crop_image: Image.Image, bbox: list, image_original: Image.Image, min_size: int = 32
|
| 299 |
+
) -> Image.Image:
|
| 300 |
+
"""Expand crop to minimum required size by taking pixels from original image.
|
| 301 |
+
|
| 302 |
+
Required for VLM models that need minimum dimensions (e.g., Qwen3-VL requires 32x32).
|
| 303 |
+
|
| 304 |
+
Args:
|
| 305 |
+
crop_image: PIL Image of the current crop
|
| 306 |
+
bbox: Original bbox [x1, y1, x2, y2]
|
| 307 |
+
image_original: Full original PIL Image
|
| 308 |
+
min_size: Minimum required size (default: 32)
|
| 309 |
+
|
| 310 |
+
Returns:
|
| 311 |
+
Expanded PIL Image that meets min_size × min_size
|
| 312 |
+
"""
|
| 313 |
+
width, height = crop_image.size
|
| 314 |
+
|
| 315 |
+
# If already meets minimum size, return unchanged
|
| 316 |
+
if width >= min_size and height >= min_size:
|
| 317 |
+
return crop_image
|
| 318 |
+
|
| 319 |
+
x1, y1, x2, y2 = bbox
|
| 320 |
+
img_width, img_height = image_original.size
|
| 321 |
+
|
| 322 |
+
# Calculate expansion needed
|
| 323 |
+
needed_width = max(0, min_size - width)
|
| 324 |
+
needed_height = max(0, min_size - height)
|
| 325 |
+
|
| 326 |
+
# Horizontal expansion (try symmetric, respect borders)
|
| 327 |
+
expand_left = needed_width // 2
|
| 328 |
+
expand_right = needed_width - expand_left
|
| 329 |
+
|
| 330 |
+
if x1 - expand_left < 0:
|
| 331 |
+
deficit = expand_left - x1
|
| 332 |
+
expand_left = x1
|
| 333 |
+
expand_right += deficit
|
| 334 |
+
|
| 335 |
+
if x2 + expand_right > img_width:
|
| 336 |
+
deficit = (x2 + expand_right) - img_width
|
| 337 |
+
expand_right = img_width - x2
|
| 338 |
+
expand_left += deficit
|
| 339 |
+
if x1 - expand_left < 0:
|
| 340 |
+
expand_left = x1
|
| 341 |
+
|
| 342 |
+
# Vertical expansion
|
| 343 |
+
expand_top = needed_height // 2
|
| 344 |
+
expand_bottom = needed_height - expand_top
|
| 345 |
+
|
| 346 |
+
if y1 - expand_top < 0:
|
| 347 |
+
deficit = expand_top - y1
|
| 348 |
+
expand_top = y1
|
| 349 |
+
expand_bottom += deficit
|
| 350 |
+
|
| 351 |
+
if y2 + expand_bottom > img_height:
|
| 352 |
+
deficit = (y2 + expand_bottom) - img_height
|
| 353 |
+
expand_bottom = img_height - y2
|
| 354 |
+
expand_top += deficit
|
| 355 |
+
if y1 - expand_top < 0:
|
| 356 |
+
expand_top = y1
|
| 357 |
+
|
| 358 |
+
# Calculate new coordinates
|
| 359 |
+
new_x1 = max(0, x1 - expand_left)
|
| 360 |
+
new_y1 = max(0, y1 - expand_top)
|
| 361 |
+
new_x2 = min(img_width, x2 + expand_right)
|
| 362 |
+
new_y2 = min(img_height, y2 + expand_bottom)
|
| 363 |
+
|
| 364 |
+
# Extract expanded crop
|
| 365 |
+
expanded_crop = image_original.crop((new_x1, new_y1, new_x2, new_y2))
|
| 366 |
+
|
| 367 |
+
logger.debug(
|
| 368 |
+
f"Crop expanded: {width}×{height} → {expanded_crop.size[0]}×{expanded_crop.size[1]}"
|
| 369 |
+
)
|
| 370 |
+
|
| 371 |
+
return expanded_crop
|
| 372 |
+
|
| 373 |
+
|
| 374 |
+
def image_to_base64_data_uri(image: Image.Image) -> str:
|
| 375 |
+
"""Convert PIL Image to base64 data URI for VLM.
|
| 376 |
+
|
| 377 |
+
Args:
|
| 378 |
+
image: PIL Image to convert
|
| 379 |
+
|
| 380 |
+
Returns:
|
| 381 |
+
Data URI string (data:image/jpeg;base64,...)
|
| 382 |
+
|
| 383 |
+
Example:
|
| 384 |
+
>>> from PIL import Image
|
| 385 |
+
>>> img = Image.new('RGB', (100, 100), color='red')
|
| 386 |
+
>>> uri = image_to_base64_data_uri(img)
|
| 387 |
+
>>> uri.startswith('data:image/jpeg;base64,')
|
| 388 |
+
True
|
| 389 |
+
"""
|
| 390 |
+
img_byte_arr = io.BytesIO()
|
| 391 |
+
image.save(img_byte_arr, format="JPEG", quality=95)
|
| 392 |
+
img_bytes = img_byte_arr.getvalue()
|
| 393 |
+
img_base64 = base64.b64encode(img_bytes).decode("utf-8")
|
| 394 |
+
return f"data:image/jpeg;base64,{img_base64}"
|
| 395 |
+
|
| 396 |
+
|
| 397 |
+
def draw_bboxes(image: Image.Image, bboxes: list) -> Image.Image:
|
| 398 |
+
"""Draw red bounding boxes on image.
|
| 399 |
+
|
| 400 |
+
Args:
|
| 401 |
+
image: PIL Image
|
| 402 |
+
bboxes: List of bounding boxes [[x1, y1, x2, y2], ...]
|
| 403 |
+
|
| 404 |
+
Returns:
|
| 405 |
+
PIL Image with bboxes drawn (new copy)
|
| 406 |
+
"""
|
| 407 |
+
# Convert PIL to cv2
|
| 408 |
+
img_array = np.array(image)
|
| 409 |
+
img_cv2 = cv2.cvtColor(img_array, cv2.COLOR_RGB2BGR)
|
| 410 |
+
|
| 411 |
+
# Draw red boxes
|
| 412 |
+
for bbox in bboxes:
|
| 413 |
+
x1, y1, x2, y2 = [int(coord) for coord in bbox]
|
| 414 |
+
cv2.rectangle(img_cv2, (x1, y1), (x2, y2), color=(0, 0, 255), thickness=3)
|
| 415 |
+
|
| 416 |
+
# Convert back to PIL
|
| 417 |
+
img_rgb = cv2.cvtColor(img_cv2, cv2.COLOR_BGR2RGB)
|
| 418 |
+
return Image.fromarray(img_rgb)
|
eneas/vendor/.DS_Store
ADDED
|
Binary file (6.15 kB). View file
|
|
|
eneas/vendor/SeC/.DS_Store
ADDED
|
Binary file (8.2 kB). View file
|
|
|
eneas/vendor/SeC/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Apache License
|
| 2 |
+
Version 2.0, January 2004
|
| 3 |
+
http://www.apache.org/licenses/
|
| 4 |
+
|
| 5 |
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
| 6 |
+
|
| 7 |
+
1. Definitions.
|
| 8 |
+
|
| 9 |
+
"License" shall mean the terms and conditions for use, reproduction,
|
| 10 |
+
and distribution as defined by Sections 1 through 9 of this document.
|
| 11 |
+
|
| 12 |
+
"Licensor" shall mean the copyright owner or entity authorized by
|
| 13 |
+
the copyright owner that is granting the License.
|
| 14 |
+
|
| 15 |
+
"Legal Entity" shall mean the union of the acting entity and all
|
| 16 |
+
other entities that control, are controlled by, or are under common
|
| 17 |
+
control with that entity. For the purposes of this definition,
|
| 18 |
+
"control" means (i) the power, direct or indirect, to cause the
|
| 19 |
+
direction or management of such entity, whether by contract or
|
| 20 |
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
| 21 |
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
| 22 |
+
|
| 23 |
+
"You" (or "Your") shall mean an individual or Legal Entity
|
| 24 |
+
exercising permissions granted by this License.
|
| 25 |
+
|
| 26 |
+
"Source" form shall mean the preferred form for making modifications,
|
| 27 |
+
including but not limited to software source code, documentation
|
| 28 |
+
source, and configuration files.
|
| 29 |
+
|
| 30 |
+
"Object" form shall mean any form resulting from mechanical
|
| 31 |
+
transformation or translation of a Source form, including but
|
| 32 |
+
not limited to compiled object code, generated documentation,
|
| 33 |
+
and conversions to other media types.
|
| 34 |
+
|
| 35 |
+
"Work" shall mean the work of authorship, whether in Source or
|
| 36 |
+
Object form, made available under the License, as indicated by a
|
| 37 |
+
copyright notice that is included in or attached to the work
|
| 38 |
+
(an example is provided in the Appendix below).
|
| 39 |
+
|
| 40 |
+
"Derivative Works" shall mean any work, whether in Source or Object
|
| 41 |
+
form, that is based on (or derived from) the Work and for which the
|
| 42 |
+
editorial revisions, annotations, elaborations, or other modifications
|
| 43 |
+
represent, as a whole, an original work of authorship. For the purposes
|
| 44 |
+
of this License, Derivative Works shall not include works that remain
|
| 45 |
+
separable from, or merely link (or bind by name) to the interfaces of,
|
| 46 |
+
the Work and Derivative Works thereof.
|
| 47 |
+
|
| 48 |
+
"Contribution" shall mean any work of authorship, including
|
| 49 |
+
the original version of the Work and any modifications or additions
|
| 50 |
+
to that Work or Derivative Works thereof, that is intentionally
|
| 51 |
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
| 52 |
+
or by an individual or Legal Entity authorized to submit on behalf of
|
| 53 |
+
the copyright owner. For the purposes of this definition, "submitted"
|
| 54 |
+
means any form of electronic, verbal, or written communication sent
|
| 55 |
+
to the Licensor or its representatives, including but not limited to
|
| 56 |
+
communication on electronic mailing lists, source code control systems,
|
| 57 |
+
and issue tracking systems that are managed by, or on behalf of, the
|
| 58 |
+
Licensor for the purpose of discussing and improving the Work, but
|
| 59 |
+
excluding communication that is conspicuously marked or otherwise
|
| 60 |
+
designated in writing by the copyright owner as "Not a Contribution."
|
| 61 |
+
|
| 62 |
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
| 63 |
+
on behalf of whom a Contribution has been received by Licensor and
|
| 64 |
+
subsequently incorporated within the Work.
|
| 65 |
+
|
| 66 |
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
| 67 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 68 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 69 |
+
copyright license to reproduce, prepare Derivative Works of,
|
| 70 |
+
publicly display, publicly perform, sublicense, and distribute the
|
| 71 |
+
Work and such Derivative Works in Source or Object form.
|
| 72 |
+
|
| 73 |
+
3. Grant of Patent License. Subject to the terms and conditions of
|
| 74 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 75 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 76 |
+
(except as stated in this section) patent license to make, have made,
|
| 77 |
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
| 78 |
+
where such license applies only to those patent claims licensable
|
| 79 |
+
by such Contributor that are necessarily infringed by their
|
| 80 |
+
Contribution(s) alone or by combination of their Contribution(s)
|
| 81 |
+
with the Work to which such Contribution(s) was submitted. If You
|
| 82 |
+
institute patent litigation against any entity (including a
|
| 83 |
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
| 84 |
+
or a Contribution incorporated within the Work constitutes direct
|
| 85 |
+
or contributory patent infringement, then any patent licenses
|
| 86 |
+
granted to You under this License for that Work shall terminate
|
| 87 |
+
as of the date such litigation is filed.
|
| 88 |
+
|
| 89 |
+
4. Redistribution. You may reproduce and distribute copies of the
|
| 90 |
+
Work or Derivative Works thereof in any medium, with or without
|
| 91 |
+
modifications, and in Source or Object form, provided that You
|
| 92 |
+
meet the following conditions:
|
| 93 |
+
|
| 94 |
+
(a) You must give any other recipients of the Work or
|
| 95 |
+
Derivative Works a copy of this License; and
|
| 96 |
+
|
| 97 |
+
(b) You must cause any modified files to carry prominent notices
|
| 98 |
+
stating that You changed the files; and
|
| 99 |
+
|
| 100 |
+
(c) You must retain, in the Source form of any Derivative Works
|
| 101 |
+
that You distribute, all copyright, patent, trademark, and
|
| 102 |
+
attribution notices from the Source form of the Work,
|
| 103 |
+
excluding those notices that do not pertain to any part of
|
| 104 |
+
the Derivative Works; and
|
| 105 |
+
|
| 106 |
+
(d) If the Work includes a "NOTICE" text file as part of its
|
| 107 |
+
distribution, then any Derivative Works that You distribute must
|
| 108 |
+
include a readable copy of the attribution notices contained
|
| 109 |
+
within such NOTICE file, excluding those notices that do not
|
| 110 |
+
pertain to any part of the Derivative Works, in at least one
|
| 111 |
+
of the following places: within a NOTICE text file distributed
|
| 112 |
+
as part of the Derivative Works; within the Source form or
|
| 113 |
+
documentation, if provided along with the Derivative Works; or,
|
| 114 |
+
within a display generated by the Derivative Works, if and
|
| 115 |
+
wherever such third-party notices normally appear. The contents
|
| 116 |
+
of the NOTICE file are for informational purposes only and
|
| 117 |
+
do not modify the License. You may add Your own attribution
|
| 118 |
+
notices within Derivative Works that You distribute, alongside
|
| 119 |
+
or as an addendum to the NOTICE text from the Work, provided
|
| 120 |
+
that such additional attribution notices cannot be construed
|
| 121 |
+
as modifying the License.
|
| 122 |
+
|
| 123 |
+
You may add Your own copyright statement to Your modifications and
|
| 124 |
+
may provide additional or different license terms and conditions
|
| 125 |
+
for use, reproduction, or distribution of Your modifications, or
|
| 126 |
+
for any such Derivative Works as a whole, provided Your use,
|
| 127 |
+
reproduction, and distribution of the Work otherwise complies with
|
| 128 |
+
the conditions stated in this License.
|
| 129 |
+
|
| 130 |
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
| 131 |
+
any Contribution intentionally submitted for inclusion in the Work
|
| 132 |
+
by You to the Licensor shall be under the terms and conditions of
|
| 133 |
+
this License, without any additional terms or conditions.
|
| 134 |
+
Notwithstanding the above, nothing herein shall supersede or modify
|
| 135 |
+
the terms of any separate license agreement you may have executed
|
| 136 |
+
with Licensor regarding such Contributions.
|
| 137 |
+
|
| 138 |
+
6. Trademarks. This License does not grant permission to use the trade
|
| 139 |
+
names, trademarks, service marks, or product names of the Licensor,
|
| 140 |
+
except as required for reasonable and customary use in describing the
|
| 141 |
+
origin of the Work and reproducing the content of the NOTICE file.
|
| 142 |
+
|
| 143 |
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
| 144 |
+
agreed to in writing, Licensor provides the Work (and each
|
| 145 |
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
| 146 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
| 147 |
+
implied, including, without limitation, any warranties or conditions
|
| 148 |
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
| 149 |
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
| 150 |
+
appropriateness of using or redistributing the Work and assume any
|
| 151 |
+
risks associated with Your exercise of permissions under this License.
|
| 152 |
+
|
| 153 |
+
8. Limitation of Liability. In no event and under no legal theory,
|
| 154 |
+
whether in tort (including negligence), contract, or otherwise,
|
| 155 |
+
unless required by applicable law (such as deliberate and grossly
|
| 156 |
+
negligent acts) or agreed to in writing, shall any Contributor be
|
| 157 |
+
liable to You for damages, including any direct, indirect, special,
|
| 158 |
+
incidental, or consequential damages of any character arising as a
|
| 159 |
+
result of this License or out of the use or inability to use the
|
| 160 |
+
Work (including but not limited to damages for loss of goodwill,
|
| 161 |
+
work stoppage, computer failure or malfunction, or any and all
|
| 162 |
+
other commercial damages or losses), even if such Contributor
|
| 163 |
+
has been advised of the possibility of such damages.
|
| 164 |
+
|
| 165 |
+
9. Accepting Warranty or Additional Liability. While redistributing
|
| 166 |
+
the Work or Derivative Works thereof, You may choose to offer,
|
| 167 |
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
| 168 |
+
or other liability obligations and/or rights consistent with this
|
| 169 |
+
License. However, in accepting such obligations, You may act only
|
| 170 |
+
on Your own behalf and on Your sole responsibility, not on behalf
|
| 171 |
+
of any other Contributor, and only if You agree to indemnify,
|
| 172 |
+
defend, and hold each Contributor harmless for any liability
|
| 173 |
+
incurred by, or claims asserted against, such Contributor by reason
|
| 174 |
+
of your accepting any such warranty or additional liability.
|
| 175 |
+
|
| 176 |
+
END OF TERMS AND CONDITIONS
|
| 177 |
+
|
| 178 |
+
APPENDIX: How to apply the Apache License to your work.
|
| 179 |
+
|
| 180 |
+
To apply the Apache License to your work, attach the following
|
| 181 |
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
| 182 |
+
replaced with your own identifying information. (Don't include
|
| 183 |
+
the brackets!) The text should be enclosed in the appropriate
|
| 184 |
+
comment syntax for the file format. We also recommend that a
|
| 185 |
+
file or class name and description of purpose be included on the
|
| 186 |
+
same "printed page" as the copyright notice for easier
|
| 187 |
+
identification within third-party archives.
|
| 188 |
+
|
| 189 |
+
Copyright [yyyy] [name of copyright owner]
|
| 190 |
+
|
| 191 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
| 192 |
+
you may not use this file except in compliance with the License.
|
| 193 |
+
You may obtain a copy of the License at
|
| 194 |
+
|
| 195 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
| 196 |
+
|
| 197 |
+
Unless required by applicable law or agreed to in writing, software
|
| 198 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
| 199 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 200 |
+
See the License for the specific language governing permissions and
|
| 201 |
+
limitations under the License.
|
eneas/vendor/SeC/inference/.DS_Store
ADDED
|
Binary file (6.15 kB). View file
|
|
|
eneas/vendor/SeC/inference/__pycache__/configuration_intern_vit.cpython-312.pyc
ADDED
|
Binary file (5.72 kB). View file
|
|
|
eneas/vendor/SeC/inference/__pycache__/configuration_internlm2.cpython-312.pyc
ADDED
|
Binary file (6.4 kB). View file
|
|
|
eneas/vendor/SeC/inference/__pycache__/configuration_sec.cpython-312.pyc
ADDED
|
Binary file (5.06 kB). View file
|
|
|
eneas/vendor/SeC/inference/__pycache__/flash_attention.cpython-312.pyc
ADDED
|
Binary file (3.81 kB). View file
|
|
|
eneas/vendor/SeC/inference/__pycache__/modeling_intern_vit.cpython-312.pyc
ADDED
|
Binary file (22.8 kB). View file
|
|
|
eneas/vendor/SeC/inference/__pycache__/modeling_internlm2.cpython-312.pyc
ADDED
|
Binary file (67.7 kB). View file
|
|
|
eneas/vendor/SeC/inference/__pycache__/modeling_sec.cpython-312.pyc
ADDED
|
Binary file (39.4 kB). View file
|
|
|
eneas/vendor/SeC/inference/__pycache__/sam2_video_predictor.cpython-312.pyc
ADDED
|
Binary file (15.4 kB). View file
|
|
|
eneas/vendor/SeC/inference/__pycache__/templates.cpython-312.pyc
ADDED
|
Binary file (4.57 kB). View file
|
|
|
eneas/vendor/SeC/inference/configuration_intern_vit.py
ADDED
|
@@ -0,0 +1,120 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# --------------------------------------------------------
|
| 2 |
+
# InternVL
|
| 3 |
+
# Copyright (c) 2024 OpenGVLab
|
| 4 |
+
# Licensed under The MIT License [see LICENSE for details]
|
| 5 |
+
# --------------------------------------------------------
|
| 6 |
+
|
| 7 |
+
import os
|
| 8 |
+
from typing import Union
|
| 9 |
+
|
| 10 |
+
from transformers.configuration_utils import PretrainedConfig
|
| 11 |
+
from transformers.utils import logging
|
| 12 |
+
|
| 13 |
+
logger = logging.get_logger(__name__)
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
class InternVisionConfig(PretrainedConfig):
|
| 17 |
+
r"""
|
| 18 |
+
This is the configuration class to store the configuration of a [`InternVisionModel`]. It is used to
|
| 19 |
+
instantiate a vision encoder according to the specified arguments, defining the model architecture.
|
| 20 |
+
|
| 21 |
+
Configuration objects inherit from [`PretrainedConfig`] and can be used to control the model outputs. Read the
|
| 22 |
+
documentation from [`PretrainedConfig`] for more information.
|
| 23 |
+
|
| 24 |
+
Args:
|
| 25 |
+
num_channels (`int`, *optional*, defaults to 3):
|
| 26 |
+
Number of color channels in the input images (e.g., 3 for RGB).
|
| 27 |
+
patch_size (`int`, *optional*, defaults to 14):
|
| 28 |
+
The size (resolution) of each patch.
|
| 29 |
+
image_size (`int`, *optional*, defaults to 224):
|
| 30 |
+
The size (resolution) of each image.
|
| 31 |
+
qkv_bias (`bool`, *optional*, defaults to `False`):
|
| 32 |
+
Whether to add a bias to the queries and values in the self-attention layers.
|
| 33 |
+
hidden_size (`int`, *optional*, defaults to 3200):
|
| 34 |
+
Dimensionality of the encoder layers and the pooler layer.
|
| 35 |
+
num_attention_heads (`int`, *optional*, defaults to 25):
|
| 36 |
+
Number of attention heads for each attention layer in the Transformer encoder.
|
| 37 |
+
intermediate_size (`int`, *optional*, defaults to 12800):
|
| 38 |
+
Dimensionality of the "intermediate" (i.e., feed-forward) layer in the Transformer encoder.
|
| 39 |
+
qk_normalization (`bool`, *optional*, defaults to `True`):
|
| 40 |
+
Whether to normalize the queries and keys in the self-attention layers.
|
| 41 |
+
num_hidden_layers (`int`, *optional*, defaults to 48):
|
| 42 |
+
Number of hidden layers in the Transformer encoder.
|
| 43 |
+
use_flash_attn (`bool`, *optional*, defaults to `True`):
|
| 44 |
+
Whether to use flash attention mechanism.
|
| 45 |
+
hidden_act (`str` or `function`, *optional*, defaults to `"gelu"`):
|
| 46 |
+
The non-linear activation function (function or string) in the encoder and pooler. If string, `"gelu"`,
|
| 47 |
+
`"relu"`, `"selu"` and `"gelu_new"` ``"gelu"` are supported.
|
| 48 |
+
layer_norm_eps (`float`, *optional*, defaults to 1e-6):
|
| 49 |
+
The epsilon used by the layer normalization layers.
|
| 50 |
+
dropout (`float`, *optional*, defaults to 0.0):
|
| 51 |
+
The dropout probability for all fully connected layers in the embeddings, encoder, and pooler.
|
| 52 |
+
drop_path_rate (`float`, *optional*, defaults to 0.0):
|
| 53 |
+
Dropout rate for stochastic depth.
|
| 54 |
+
attention_dropout (`float`, *optional*, defaults to 0.0):
|
| 55 |
+
The dropout ratio for the attention probabilities.
|
| 56 |
+
initializer_range (`float`, *optional*, defaults to 0.02):
|
| 57 |
+
The standard deviation of the truncated_normal_initializer for initializing all weight matrices.
|
| 58 |
+
initializer_factor (`float`, *optional*, defaults to 0.1):
|
| 59 |
+
A factor for layer scale.
|
| 60 |
+
"""
|
| 61 |
+
|
| 62 |
+
model_type = 'intern_vit_6b'
|
| 63 |
+
|
| 64 |
+
def __init__(
|
| 65 |
+
self,
|
| 66 |
+
num_channels=3,
|
| 67 |
+
patch_size=14,
|
| 68 |
+
image_size=224,
|
| 69 |
+
qkv_bias=False,
|
| 70 |
+
hidden_size=3200,
|
| 71 |
+
num_attention_heads=25,
|
| 72 |
+
intermediate_size=12800,
|
| 73 |
+
qk_normalization=True,
|
| 74 |
+
num_hidden_layers=48,
|
| 75 |
+
use_flash_attn=True,
|
| 76 |
+
hidden_act='gelu',
|
| 77 |
+
norm_type='rms_norm',
|
| 78 |
+
layer_norm_eps=1e-6,
|
| 79 |
+
dropout=0.0,
|
| 80 |
+
drop_path_rate=0.0,
|
| 81 |
+
attention_dropout=0.0,
|
| 82 |
+
initializer_range=0.02,
|
| 83 |
+
initializer_factor=0.1,
|
| 84 |
+
**kwargs,
|
| 85 |
+
):
|
| 86 |
+
super().__init__(**kwargs)
|
| 87 |
+
|
| 88 |
+
self.hidden_size = hidden_size
|
| 89 |
+
self.intermediate_size = intermediate_size
|
| 90 |
+
self.dropout = dropout
|
| 91 |
+
self.drop_path_rate = drop_path_rate
|
| 92 |
+
self.num_hidden_layers = num_hidden_layers
|
| 93 |
+
self.num_attention_heads = num_attention_heads
|
| 94 |
+
self.num_channels = num_channels
|
| 95 |
+
self.patch_size = patch_size
|
| 96 |
+
self.image_size = image_size
|
| 97 |
+
self.initializer_range = initializer_range
|
| 98 |
+
self.initializer_factor = initializer_factor
|
| 99 |
+
self.attention_dropout = attention_dropout
|
| 100 |
+
self.layer_norm_eps = layer_norm_eps
|
| 101 |
+
self.hidden_act = hidden_act
|
| 102 |
+
self.norm_type = norm_type
|
| 103 |
+
self.qkv_bias = qkv_bias
|
| 104 |
+
self.qk_normalization = qk_normalization
|
| 105 |
+
self.use_flash_attn = use_flash_attn
|
| 106 |
+
|
| 107 |
+
@classmethod
|
| 108 |
+
def from_pretrained(cls, pretrained_model_name_or_path: Union[str, os.PathLike], **kwargs) -> 'PretrainedConfig':
|
| 109 |
+
config_dict, kwargs = cls.get_config_dict(pretrained_model_name_or_path, **kwargs)
|
| 110 |
+
|
| 111 |
+
if 'vision_config' in config_dict:
|
| 112 |
+
config_dict = config_dict['vision_config']
|
| 113 |
+
|
| 114 |
+
if 'model_type' in config_dict and hasattr(cls, 'model_type') and config_dict['model_type'] != cls.model_type:
|
| 115 |
+
logger.warning(
|
| 116 |
+
f"You are using a model of type {config_dict['model_type']} to instantiate a model of type "
|
| 117 |
+
f'{cls.model_type}. This is not supported for all configurations of models and can yield errors.'
|
| 118 |
+
)
|
| 119 |
+
|
| 120 |
+
return cls.from_dict(config_dict, **kwargs)
|
eneas/vendor/SeC/inference/configuration_internlm2.py
ADDED
|
@@ -0,0 +1,150 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Copyright (c) The InternLM team and The HuggingFace Inc. team. All rights reserved.
|
| 2 |
+
#
|
| 3 |
+
# This code is based on transformers/src/transformers/models/llama/configuration_llama.py
|
| 4 |
+
#
|
| 5 |
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
| 6 |
+
# you may not use this file except in compliance with the License.
|
| 7 |
+
# You may obtain a copy of the License at
|
| 8 |
+
#
|
| 9 |
+
# http://www.apache.org/licenses/LICENSE-2.0
|
| 10 |
+
#
|
| 11 |
+
# Unless required by applicable law or agreed to in writing, software
|
| 12 |
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
| 13 |
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 14 |
+
# See the License for the specific language governing permissions and
|
| 15 |
+
# limitations under the License.
|
| 16 |
+
""" InternLM2 model configuration"""
|
| 17 |
+
|
| 18 |
+
from transformers.configuration_utils import PretrainedConfig
|
| 19 |
+
from transformers.utils import logging
|
| 20 |
+
|
| 21 |
+
logger = logging.get_logger(__name__)
|
| 22 |
+
|
| 23 |
+
INTERNLM2_PRETRAINED_CONFIG_ARCHIVE_MAP = {}
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
# Modified from transformers.model.llama.configuration_llama.LlamaConfig
|
| 27 |
+
class InternLM2Config(PretrainedConfig):
|
| 28 |
+
r"""
|
| 29 |
+
This is the configuration class to store the configuration of a [`InternLM2Model`]. It is used to instantiate
|
| 30 |
+
an InternLM2 model according to the specified arguments, defining the model architecture. Instantiating a
|
| 31 |
+
configuration with the defaults will yield a similar configuration to that of the InternLM2-7B.
|
| 32 |
+
|
| 33 |
+
Configuration objects inherit from [`PretrainedConfig`] and can be used to control the model outputs. Read the
|
| 34 |
+
documentation from [`PretrainedConfig`] for more information.
|
| 35 |
+
|
| 36 |
+
|
| 37 |
+
Args:
|
| 38 |
+
vocab_size (`int`, *optional*, defaults to 32000):
|
| 39 |
+
Vocabulary size of the InternLM2 model. Defines the number of different tokens that can be represented by the
|
| 40 |
+
`inputs_ids` passed when calling [`InternLM2Model`]
|
| 41 |
+
hidden_size (`int`, *optional*, defaults to 4096):
|
| 42 |
+
Dimension of the hidden representations.
|
| 43 |
+
intermediate_size (`int`, *optional*, defaults to 11008):
|
| 44 |
+
Dimension of the MLP representations.
|
| 45 |
+
num_hidden_layers (`int`, *optional*, defaults to 32):
|
| 46 |
+
Number of hidden layers in the Transformer encoder.
|
| 47 |
+
num_attention_heads (`int`, *optional*, defaults to 32):
|
| 48 |
+
Number of attention heads for each attention layer in the Transformer encoder.
|
| 49 |
+
num_key_value_heads (`int`, *optional*):
|
| 50 |
+
This is the number of key_value heads that should be used to implement Grouped Query Attention. If
|
| 51 |
+
`num_key_value_heads=num_attention_heads`, the model will use Multi Head Attention (MHA), if
|
| 52 |
+
`num_key_value_heads=1 the model will use Multi Query Attention (MQA) otherwise GQA is used. When
|
| 53 |
+
converting a multi-head checkpoint to a GQA checkpoint, each group key and value head should be constructed
|
| 54 |
+
by meanpooling all the original heads within that group. For more details checkout [this
|
| 55 |
+
paper](https://arxiv.org/pdf/2305.13245.pdf). If it is not specified, will default to
|
| 56 |
+
`num_attention_heads`.
|
| 57 |
+
hidden_act (`str` or `function`, *optional*, defaults to `"silu"`):
|
| 58 |
+
The non-linear activation function (function or string) in the decoder.
|
| 59 |
+
max_position_embeddings (`int`, *optional*, defaults to 2048):
|
| 60 |
+
The maximum sequence length that this model might ever be used with. Typically set this to something large
|
| 61 |
+
just in case (e.g., 512 or 1024 or 2048).
|
| 62 |
+
initializer_range (`float`, *optional*, defaults to 0.02):
|
| 63 |
+
The standard deviation of the truncated_normal_initializer for initializing all weight matrices.
|
| 64 |
+
rms_norm_eps (`float`, *optional*, defaults to 1e-12):
|
| 65 |
+
The epsilon used by the rms normalization layers.
|
| 66 |
+
use_cache (`bool`, *optional*, defaults to `True`):
|
| 67 |
+
Whether or not the model should return the last key/values attentions (not used by all models). Only
|
| 68 |
+
relevant if `config.is_decoder=True`.
|
| 69 |
+
tie_word_embeddings(`bool`, *optional*, defaults to `False`):
|
| 70 |
+
Whether to tie weight embeddings
|
| 71 |
+
Example:
|
| 72 |
+
|
| 73 |
+
"""
|
| 74 |
+
model_type = 'internlm2'
|
| 75 |
+
_auto_class = 'AutoConfig'
|
| 76 |
+
|
| 77 |
+
def __init__( # pylint: disable=W0102
|
| 78 |
+
self,
|
| 79 |
+
vocab_size=103168,
|
| 80 |
+
hidden_size=4096,
|
| 81 |
+
intermediate_size=11008,
|
| 82 |
+
num_hidden_layers=32,
|
| 83 |
+
num_attention_heads=32,
|
| 84 |
+
num_key_value_heads=None,
|
| 85 |
+
hidden_act='silu',
|
| 86 |
+
max_position_embeddings=2048,
|
| 87 |
+
initializer_range=0.02,
|
| 88 |
+
rms_norm_eps=1e-6,
|
| 89 |
+
use_cache=True,
|
| 90 |
+
pad_token_id=0,
|
| 91 |
+
bos_token_id=1,
|
| 92 |
+
eos_token_id=2,
|
| 93 |
+
tie_word_embeddings=False,
|
| 94 |
+
bias=True,
|
| 95 |
+
rope_theta=10000,
|
| 96 |
+
rope_scaling=None,
|
| 97 |
+
attn_implementation='eager',
|
| 98 |
+
**kwargs,
|
| 99 |
+
):
|
| 100 |
+
self.vocab_size = vocab_size
|
| 101 |
+
self.max_position_embeddings = max_position_embeddings
|
| 102 |
+
self.hidden_size = hidden_size
|
| 103 |
+
self.intermediate_size = intermediate_size
|
| 104 |
+
self.num_hidden_layers = num_hidden_layers
|
| 105 |
+
self.num_attention_heads = num_attention_heads
|
| 106 |
+
self.bias = bias
|
| 107 |
+
|
| 108 |
+
if num_key_value_heads is None:
|
| 109 |
+
num_key_value_heads = num_attention_heads
|
| 110 |
+
self.num_key_value_heads = num_key_value_heads
|
| 111 |
+
|
| 112 |
+
self.hidden_act = hidden_act
|
| 113 |
+
self.initializer_range = initializer_range
|
| 114 |
+
self.rms_norm_eps = rms_norm_eps
|
| 115 |
+
self.use_cache = use_cache
|
| 116 |
+
self.rope_theta = rope_theta
|
| 117 |
+
self.rope_scaling = rope_scaling
|
| 118 |
+
self._rope_scaling_validation()
|
| 119 |
+
|
| 120 |
+
self.attn_implementation = attn_implementation
|
| 121 |
+
if self.attn_implementation is None:
|
| 122 |
+
self.attn_implementation = 'eager'
|
| 123 |
+
super().__init__(
|
| 124 |
+
pad_token_id=pad_token_id,
|
| 125 |
+
bos_token_id=bos_token_id,
|
| 126 |
+
eos_token_id=eos_token_id,
|
| 127 |
+
tie_word_embeddings=tie_word_embeddings,
|
| 128 |
+
**kwargs,
|
| 129 |
+
)
|
| 130 |
+
|
| 131 |
+
def _rope_scaling_validation(self):
|
| 132 |
+
"""
|
| 133 |
+
Validate the `rope_scaling` configuration.
|
| 134 |
+
"""
|
| 135 |
+
if self.rope_scaling is None:
|
| 136 |
+
return
|
| 137 |
+
|
| 138 |
+
if not isinstance(self.rope_scaling, dict) or len(self.rope_scaling) != 2:
|
| 139 |
+
raise ValueError(
|
| 140 |
+
'`rope_scaling` must be a dictionary with with two fields, `type` and `factor`, '
|
| 141 |
+
f'got {self.rope_scaling}'
|
| 142 |
+
)
|
| 143 |
+
rope_scaling_type = self.rope_scaling.get('type', None)
|
| 144 |
+
rope_scaling_factor = self.rope_scaling.get('factor', None)
|
| 145 |
+
if rope_scaling_type is None or rope_scaling_type not in ['linear', 'dynamic']:
|
| 146 |
+
raise ValueError(
|
| 147 |
+
f"`rope_scaling`'s type field must be one of ['linear', 'dynamic'], got {rope_scaling_type}"
|
| 148 |
+
)
|
| 149 |
+
if rope_scaling_factor is None or not isinstance(rope_scaling_factor, float) or rope_scaling_factor < 1.0:
|
| 150 |
+
raise ValueError(f"`rope_scaling`'s factor field must be a float >= 1, got {rope_scaling_factor}")
|
eneas/vendor/SeC/inference/configuration_phi3.py
ADDED
|
@@ -0,0 +1,211 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Copyright 2024 Microsoft and the HuggingFace Inc. team. All rights reserved.
|
| 2 |
+
#
|
| 3 |
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
| 4 |
+
# you may not use this file except in compliance with the License.
|
| 5 |
+
# You may obtain a copy of the License atd
|
| 6 |
+
#
|
| 7 |
+
# http://www.apache.org/licenses/LICENSE-2.0
|
| 8 |
+
#
|
| 9 |
+
# Unless required by applicable law or agreed to in writing, software
|
| 10 |
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
| 11 |
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 12 |
+
# See the License for the specific language governing permissions and
|
| 13 |
+
# limitations under the License.
|
| 14 |
+
|
| 15 |
+
""" Phi-3 model configuration"""
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
from transformers.configuration_utils import PretrainedConfig
|
| 19 |
+
from transformers.utils import logging
|
| 20 |
+
|
| 21 |
+
logger = logging.get_logger(__name__)
|
| 22 |
+
|
| 23 |
+
PHI3_PRETRAINED_CONFIG_ARCHIVE_MAP = {
|
| 24 |
+
'microsoft/Phi-3-mini-4k-instruct': 'https://huggingface.co/microsoft/Phi-3-mini-4k-instruct/resolve/main/config.json',
|
| 25 |
+
'microsoft/Phi-3-mini-128k-instruct': 'https://huggingface.co/microsoft/Phi-3-mini-128k-instruct/resolve/main/config.json',
|
| 26 |
+
}
|
| 27 |
+
|
| 28 |
+
|
| 29 |
+
class Phi3Config(PretrainedConfig):
|
| 30 |
+
r"""
|
| 31 |
+
This is the configuration class to store the configuration of a [`Phi3Model`]. It is used to instantiate a Phi-3
|
| 32 |
+
model according to the specified arguments, defining the model architecture. Instantiating a configuration with the
|
| 33 |
+
defaults will yield a similar configuration to that of the
|
| 34 |
+
[microsoft/Phi-3-mini-4k-instruct](https://huggingface.co/microsoft/Phi-3-mini-4k-instruct).
|
| 35 |
+
|
| 36 |
+
Configuration objects inherit from [`PretrainedConfig`] and can be used to control the model outputs. Read the
|
| 37 |
+
documentation from [`PretrainedConfig`] for more information.
|
| 38 |
+
|
| 39 |
+
Args:
|
| 40 |
+
vocab_size (`int`, *optional*, defaults to 32064):
|
| 41 |
+
Vocabulary size of the Phi-3 model. Defines the number of different tokens that can be represented by the
|
| 42 |
+
`inputs_ids` passed when calling [`Phi3Model`].
|
| 43 |
+
hidden_size (`int`, *optional*, defaults to 3072):
|
| 44 |
+
Dimension of the hidden representations.
|
| 45 |
+
intermediate_size (`int`, *optional*, defaults to 8192):
|
| 46 |
+
Dimension of the MLP representations.
|
| 47 |
+
num_hidden_layers (`int`, *optional*, defaults to 32):
|
| 48 |
+
Number of hidden layers in the Transformer decoder.
|
| 49 |
+
num_attention_heads (`int`, *optional*, defaults to 32):
|
| 50 |
+
Number of attention heads for each attention layer in the Transformer decoder.
|
| 51 |
+
num_key_value_heads (`int`, *optional*):
|
| 52 |
+
This is the number of key_value heads that should be used to implement Grouped Query Attention. If
|
| 53 |
+
`num_key_value_heads=num_attention_heads`, the model will use Multi Head Attention (MHA), if
|
| 54 |
+
`num_key_value_heads=1 the model will use Multi Query Attention (MQA) otherwise GQA is used. When
|
| 55 |
+
converting a multi-head checkpoint to a GQA checkpoint, each group key and value head should be constructed
|
| 56 |
+
by meanpooling all the original heads within that group. For more details checkout [this
|
| 57 |
+
paper](https://arxiv.org/pdf/2305.13245.pdf). If it is not specified, will default to
|
| 58 |
+
`num_attention_heads`.
|
| 59 |
+
resid_pdrop (`float`, *optional*, defaults to 0.0):
|
| 60 |
+
Dropout probability for mlp outputs.
|
| 61 |
+
embd_pdrop (`int`, *optional*, defaults to 0.0):
|
| 62 |
+
The dropout ratio for the embeddings.
|
| 63 |
+
attention_dropout (`float`, *optional*, defaults to 0.0):
|
| 64 |
+
The dropout ratio after computing the attention scores.
|
| 65 |
+
hidden_act (`str` or `function`, *optional*, defaults to `"silu"`):
|
| 66 |
+
The non-linear activation function (function or string) in the decoder.
|
| 67 |
+
max_position_embeddings (`int`, *optional*, defaults to 4096):
|
| 68 |
+
The maximum sequence length that this model might ever be used with.
|
| 69 |
+
original_max_position_embeddings (`int`, *optional*, defaults to 4096):
|
| 70 |
+
The maximum sequence length that this model was trained with. This is used to determine the size of the
|
| 71 |
+
original RoPE embeddings when using long scaling.
|
| 72 |
+
initializer_range (`float`, *optional*, defaults to 0.02):
|
| 73 |
+
The standard deviation of the truncated_normal_initializer for initializing all weight matrices.
|
| 74 |
+
rms_norm_eps (`float`, *optional*, defaults to 1e-05):
|
| 75 |
+
The epsilon value used for the RMSNorm.
|
| 76 |
+
use_cache (`bool`, *optional*, defaults to `True`):
|
| 77 |
+
Whether or not the model should return the last key/values attentions (not used by all models). Only
|
| 78 |
+
relevant if `config.is_decoder=True`. Whether to tie weight embeddings or not.
|
| 79 |
+
tie_word_embeddings (`bool`, *optional*, defaults to `False`):
|
| 80 |
+
Whether to tie weight embeddings
|
| 81 |
+
rope_theta (`float`, *optional*, defaults to 10000.0):
|
| 82 |
+
The base period of the RoPE embeddings.
|
| 83 |
+
rope_scaling (`dict`, *optional*):
|
| 84 |
+
The scaling strategy for the RoPE embeddings. If `None`, no scaling is applied. If a dictionary, it must
|
| 85 |
+
contain the following keys: `type`, `short_factor` and `long_factor`. The `type` must be either `su` or `yarn` and
|
| 86 |
+
the `short_factor` and `long_factor` must be lists of numbers with the same length as the hidden size
|
| 87 |
+
divided by the number of attention heads divided by 2.
|
| 88 |
+
bos_token_id (`int`, *optional*, defaults to 1):
|
| 89 |
+
The id of the "beginning-of-sequence" token.
|
| 90 |
+
eos_token_id (`int`, *optional*, defaults to 32000):
|
| 91 |
+
The id of the "end-of-sequence" token.
|
| 92 |
+
pad_token_id (`int`, *optional*, defaults to 32000):
|
| 93 |
+
The id of the padding token.
|
| 94 |
+
sliding_window (`int`, *optional*):
|
| 95 |
+
Sliding window attention window size. If `None`, no sliding window is applied.
|
| 96 |
+
|
| 97 |
+
Example:
|
| 98 |
+
|
| 99 |
+
```python
|
| 100 |
+
>>> from transformers import Phi3Model, Phi3Config
|
| 101 |
+
|
| 102 |
+
>>> # Initializing a Phi-3 style configuration
|
| 103 |
+
>>> configuration = Phi3Config.from_pretrained("microsoft/Phi-3-mini-4k-instruct")
|
| 104 |
+
|
| 105 |
+
>>> # Initializing a model from the configuration
|
| 106 |
+
>>> model = Phi3Model(configuration)
|
| 107 |
+
|
| 108 |
+
>>> # Accessing the model configuration
|
| 109 |
+
>>> configuration = model.config
|
| 110 |
+
```"""
|
| 111 |
+
|
| 112 |
+
model_type = 'phi3'
|
| 113 |
+
keys_to_ignore_at_inference = ['past_key_values']
|
| 114 |
+
|
| 115 |
+
def __init__(
|
| 116 |
+
self,
|
| 117 |
+
vocab_size=32064,
|
| 118 |
+
hidden_size=3072,
|
| 119 |
+
intermediate_size=8192,
|
| 120 |
+
num_hidden_layers=32,
|
| 121 |
+
num_attention_heads=32,
|
| 122 |
+
num_key_value_heads=None,
|
| 123 |
+
resid_pdrop=0.0,
|
| 124 |
+
embd_pdrop=0.0,
|
| 125 |
+
attention_dropout=0.0,
|
| 126 |
+
hidden_act='silu',
|
| 127 |
+
max_position_embeddings=4096,
|
| 128 |
+
original_max_position_embeddings=4096,
|
| 129 |
+
initializer_range=0.02,
|
| 130 |
+
rms_norm_eps=1e-5,
|
| 131 |
+
use_cache=True,
|
| 132 |
+
tie_word_embeddings=False,
|
| 133 |
+
rope_theta=10000.0,
|
| 134 |
+
rope_scaling=None,
|
| 135 |
+
bos_token_id=1,
|
| 136 |
+
eos_token_id=32000,
|
| 137 |
+
pad_token_id=32000,
|
| 138 |
+
sliding_window=None,
|
| 139 |
+
**kwargs,
|
| 140 |
+
):
|
| 141 |
+
self.vocab_size = vocab_size
|
| 142 |
+
self.hidden_size = hidden_size
|
| 143 |
+
self.intermediate_size = intermediate_size
|
| 144 |
+
self.num_hidden_layers = num_hidden_layers
|
| 145 |
+
self.num_attention_heads = num_attention_heads
|
| 146 |
+
|
| 147 |
+
if num_key_value_heads is None:
|
| 148 |
+
num_key_value_heads = num_attention_heads
|
| 149 |
+
|
| 150 |
+
self.num_key_value_heads = num_key_value_heads
|
| 151 |
+
self.resid_pdrop = resid_pdrop
|
| 152 |
+
self.embd_pdrop = embd_pdrop
|
| 153 |
+
self.attention_dropout = attention_dropout
|
| 154 |
+
self.hidden_act = hidden_act
|
| 155 |
+
self.max_position_embeddings = max_position_embeddings
|
| 156 |
+
self.original_max_position_embeddings = original_max_position_embeddings
|
| 157 |
+
self.initializer_range = initializer_range
|
| 158 |
+
self.rms_norm_eps = rms_norm_eps
|
| 159 |
+
self.use_cache = use_cache
|
| 160 |
+
self.rope_theta = rope_theta
|
| 161 |
+
self.rope_scaling = rope_scaling
|
| 162 |
+
self._rope_scaling_validation()
|
| 163 |
+
self.sliding_window = sliding_window
|
| 164 |
+
|
| 165 |
+
super().__init__(
|
| 166 |
+
bos_token_id=bos_token_id,
|
| 167 |
+
eos_token_id=eos_token_id,
|
| 168 |
+
pad_token_id=pad_token_id,
|
| 169 |
+
tie_word_embeddings=tie_word_embeddings,
|
| 170 |
+
**kwargs,
|
| 171 |
+
)
|
| 172 |
+
|
| 173 |
+
def _rope_scaling_validation(self):
|
| 174 |
+
"""
|
| 175 |
+
Validate the `rope_scaling` configuration.
|
| 176 |
+
"""
|
| 177 |
+
if self.rope_scaling is None:
|
| 178 |
+
return
|
| 179 |
+
|
| 180 |
+
if not isinstance(self.rope_scaling, dict) or len(self.rope_scaling) != 3:
|
| 181 |
+
raise ValueError(
|
| 182 |
+
'`rope_scaling` must be a dictionary with three fields, `type`, `short_factor` and `long_factor`, '
|
| 183 |
+
f'got {self.rope_scaling}'
|
| 184 |
+
)
|
| 185 |
+
rope_scaling_type = self.rope_scaling.get('type', None)
|
| 186 |
+
rope_scaling_short_factor = self.rope_scaling.get('short_factor', None)
|
| 187 |
+
rope_scaling_long_factor = self.rope_scaling.get('long_factor', None)
|
| 188 |
+
if rope_scaling_type is None or rope_scaling_type not in ['su', 'yarn']:
|
| 189 |
+
raise ValueError(f"`rope_scaling`'s type field must be one of ['su', 'yarn'], got {rope_scaling_type}")
|
| 190 |
+
if not (
|
| 191 |
+
isinstance(rope_scaling_short_factor, list)
|
| 192 |
+
and all(isinstance(x, (int, float)) for x in rope_scaling_short_factor)
|
| 193 |
+
):
|
| 194 |
+
raise ValueError(
|
| 195 |
+
f"`rope_scaling`'s short_factor field must be a list of numbers, got {rope_scaling_short_factor}"
|
| 196 |
+
)
|
| 197 |
+
if not len(rope_scaling_short_factor) == self.hidden_size // self.num_attention_heads // 2:
|
| 198 |
+
raise ValueError(
|
| 199 |
+
f"`rope_scaling`'s short_factor field must have length {self.hidden_size // self.num_attention_heads // 2}, got {len(rope_scaling_short_factor)}"
|
| 200 |
+
)
|
| 201 |
+
if not (
|
| 202 |
+
isinstance(rope_scaling_long_factor, list)
|
| 203 |
+
and all(isinstance(x, (int, float)) for x in rope_scaling_long_factor)
|
| 204 |
+
):
|
| 205 |
+
raise ValueError(
|
| 206 |
+
f"`rope_scaling`'s long_factor field must be a list of numbers, got {rope_scaling_long_factor}"
|
| 207 |
+
)
|
| 208 |
+
if not len(rope_scaling_long_factor) == self.hidden_size // self.num_attention_heads // 2:
|
| 209 |
+
raise ValueError(
|
| 210 |
+
f"`rope_scaling`'s long_factor field must have length {self.hidden_size // self.num_attention_heads // 2}, got {len(rope_scaling_long_factor)}"
|
| 211 |
+
)
|
eneas/vendor/SeC/inference/configuration_sec.py
ADDED
|
@@ -0,0 +1,124 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# --------------------------------------------------------
|
| 2 |
+
# InternVL
|
| 3 |
+
# Copyright (c) 2024 OpenGVLab
|
| 4 |
+
# Licensed under The MIT License [see LICENSE for details]
|
| 5 |
+
# --------------------------------------------------------
|
| 6 |
+
|
| 7 |
+
import copy
|
| 8 |
+
|
| 9 |
+
from .configuration_internlm2 import InternLM2Config
|
| 10 |
+
|
| 11 |
+
# from .configuration_phi3 import Phi3Config # Not used by SeC-4B
|
| 12 |
+
from transformers import AutoConfig, LlamaConfig, Qwen2Config
|
| 13 |
+
from transformers.configuration_utils import PretrainedConfig
|
| 14 |
+
from transformers.utils import logging
|
| 15 |
+
|
| 16 |
+
from .configuration_intern_vit import InternVisionConfig
|
| 17 |
+
|
| 18 |
+
logger = logging.get_logger(__name__)
|
| 19 |
+
|
| 20 |
+
|
| 21 |
+
class SeCConfig(PretrainedConfig):
|
| 22 |
+
model_type = "sec"
|
| 23 |
+
is_composition = True
|
| 24 |
+
|
| 25 |
+
def __init__(
|
| 26 |
+
self,
|
| 27 |
+
vision_config=None,
|
| 28 |
+
llm_config=None,
|
| 29 |
+
use_backbone_lora=0,
|
| 30 |
+
use_llm_lora=0,
|
| 31 |
+
pad2square=False,
|
| 32 |
+
select_layer=-1,
|
| 33 |
+
force_image_size=None,
|
| 34 |
+
downsample_ratio=0.5,
|
| 35 |
+
template=None,
|
| 36 |
+
dynamic_image_size=False,
|
| 37 |
+
use_thumbnail=False,
|
| 38 |
+
ps_version="v1",
|
| 39 |
+
min_dynamic_patch=1,
|
| 40 |
+
max_dynamic_patch=6,
|
| 41 |
+
grounding_encoder_config="sam2.1/sam2.1_hiera_l.yaml",
|
| 42 |
+
grounding_maskmem_num=22,
|
| 43 |
+
**kwargs,
|
| 44 |
+
):
|
| 45 |
+
super().__init__(**kwargs)
|
| 46 |
+
if vision_config is None:
|
| 47 |
+
vision_config = {}
|
| 48 |
+
logger.info(
|
| 49 |
+
"vision_config is None. Initializing the InternVisionConfig with default values."
|
| 50 |
+
)
|
| 51 |
+
|
| 52 |
+
if llm_config is None:
|
| 53 |
+
llm_config = {}
|
| 54 |
+
logger.info(
|
| 55 |
+
"llm_config is None. Initializing the LlamaConfig config with default values (`LlamaConfig`)."
|
| 56 |
+
)
|
| 57 |
+
|
| 58 |
+
self.vision_config = InternVisionConfig(**vision_config)
|
| 59 |
+
|
| 60 |
+
# Patched by eneas: handle empty llm_config (no 'architectures' key)
|
| 61 |
+
if not llm_config or "architectures" not in llm_config:
|
| 62 |
+
self.llm_config = LlamaConfig(**llm_config)
|
| 63 |
+
elif llm_config["architectures"][0] == "LlamaForCausalLM":
|
| 64 |
+
self.llm_config = LlamaConfig(**llm_config)
|
| 65 |
+
elif llm_config["architectures"][0] == "InternLM2ForCausalLM":
|
| 66 |
+
self.llm_config = InternLM2Config(**llm_config)
|
| 67 |
+
# elif llm_config["architectures"][0] == "Phi3ForCausalLM":
|
| 68 |
+
# self.llm_config = Phi3Config(**llm_config) # Not used by SeC-4B
|
| 69 |
+
elif llm_config["architectures"][0] == "Qwen2ForCausalLM":
|
| 70 |
+
self.llm_config = Qwen2Config(**llm_config)
|
| 71 |
+
else:
|
| 72 |
+
raise ValueError("Unsupported architecture: {}".format(llm_config["architectures"][0]))
|
| 73 |
+
self.use_backbone_lora = use_backbone_lora
|
| 74 |
+
self.use_llm_lora = use_llm_lora
|
| 75 |
+
self.pad2square = pad2square
|
| 76 |
+
self.select_layer = select_layer
|
| 77 |
+
self.force_image_size = force_image_size
|
| 78 |
+
self.downsample_ratio = downsample_ratio
|
| 79 |
+
self.template = template
|
| 80 |
+
self.dynamic_image_size = dynamic_image_size
|
| 81 |
+
self.use_thumbnail = use_thumbnail
|
| 82 |
+
self.ps_version = ps_version # pixel shuffle version
|
| 83 |
+
self.min_dynamic_patch = min_dynamic_patch
|
| 84 |
+
self.max_dynamic_patch = max_dynamic_patch
|
| 85 |
+
|
| 86 |
+
self.hidden_size = self.llm_config.hidden_size
|
| 87 |
+
self.tie_word_embeddings = False
|
| 88 |
+
|
| 89 |
+
self.grounding_encoder_config = grounding_encoder_config
|
| 90 |
+
self.grounding_maskmem_num = grounding_maskmem_num
|
| 91 |
+
|
| 92 |
+
logger.info(f"vision_select_layer: {self.select_layer}")
|
| 93 |
+
logger.info(f"ps_version: {self.ps_version}")
|
| 94 |
+
logger.info(f"min_dynamic_patch: {self.min_dynamic_patch}")
|
| 95 |
+
logger.info(f"max_dynamic_patch: {self.max_dynamic_patch}")
|
| 96 |
+
|
| 97 |
+
def to_dict(self):
|
| 98 |
+
"""
|
| 99 |
+
Serializes this instance to a Python dictionary. Override the default [`~PretrainedConfig.to_dict`].
|
| 100 |
+
|
| 101 |
+
Returns:
|
| 102 |
+
`Dict[str, any]`: Dictionary of all the attributes that make up this configuration instance,
|
| 103 |
+
"""
|
| 104 |
+
output = copy.deepcopy(self.__dict__)
|
| 105 |
+
output["vision_config"] = self.vision_config.to_dict()
|
| 106 |
+
output["llm_config"] = self.llm_config.to_dict()
|
| 107 |
+
output["model_type"] = self.__class__.model_type
|
| 108 |
+
output["use_backbone_lora"] = self.use_backbone_lora
|
| 109 |
+
output["use_llm_lora"] = self.use_llm_lora
|
| 110 |
+
output["pad2square"] = self.pad2square
|
| 111 |
+
output["select_layer"] = self.select_layer
|
| 112 |
+
output["force_image_size"] = self.force_image_size
|
| 113 |
+
output["downsample_ratio"] = self.downsample_ratio
|
| 114 |
+
output["template"] = self.template
|
| 115 |
+
output["dynamic_image_size"] = self.dynamic_image_size
|
| 116 |
+
output["use_thumbnail"] = self.use_thumbnail
|
| 117 |
+
output["ps_version"] = self.ps_version
|
| 118 |
+
output["min_dynamic_patch"] = self.min_dynamic_patch
|
| 119 |
+
output["max_dynamic_patch"] = self.max_dynamic_patch
|
| 120 |
+
|
| 121 |
+
output["grounding_encoder_config"] = self.grounding_encoder_config
|
| 122 |
+
output["grounding_maskmem_num"] = self.grounding_maskmem_num
|
| 123 |
+
|
| 124 |
+
return output
|
eneas/vendor/SeC/inference/flash_attention.py
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# https://github.com/Dao-AILab/flash-attention/blob/v0.2.8/flash_attn/flash_attention.py
|
| 2 |
+
import torch
|
| 3 |
+
import torch.nn as nn
|
| 4 |
+
from einops import rearrange
|
| 5 |
+
|
| 6 |
+
try: # v1
|
| 7 |
+
from flash_attn.flash_attn_interface import \
|
| 8 |
+
flash_attn_unpadded_qkvpacked_func
|
| 9 |
+
except: # v2
|
| 10 |
+
from flash_attn.flash_attn_interface import flash_attn_varlen_qkvpacked_func as flash_attn_unpadded_qkvpacked_func
|
| 11 |
+
|
| 12 |
+
from flash_attn.bert_padding import pad_input, unpad_input
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
class FlashAttention(nn.Module):
|
| 16 |
+
"""Implement the scaled dot product attention with softmax.
|
| 17 |
+
Arguments
|
| 18 |
+
---------
|
| 19 |
+
softmax_scale: The temperature to use for the softmax attention.
|
| 20 |
+
(default: 1/sqrt(d_keys) where d_keys is computed at
|
| 21 |
+
runtime)
|
| 22 |
+
attention_dropout: The dropout rate to apply to the attention
|
| 23 |
+
(default: 0.0)
|
| 24 |
+
"""
|
| 25 |
+
|
| 26 |
+
def __init__(self, softmax_scale=None, attention_dropout=0.0, device=None, dtype=None):
|
| 27 |
+
super().__init__()
|
| 28 |
+
self.softmax_scale = softmax_scale
|
| 29 |
+
self.dropout_p = attention_dropout
|
| 30 |
+
|
| 31 |
+
def forward(self, qkv, key_padding_mask=None, causal=False, cu_seqlens=None,
|
| 32 |
+
max_s=None, need_weights=False):
|
| 33 |
+
"""Implements the multihead softmax attention.
|
| 34 |
+
Arguments
|
| 35 |
+
---------
|
| 36 |
+
qkv: The tensor containing the query, key, and value. (B, S, 3, H, D) if key_padding_mask is None
|
| 37 |
+
if unpadded: (nnz, 3, h, d)
|
| 38 |
+
key_padding_mask: a bool tensor of shape (B, S)
|
| 39 |
+
"""
|
| 40 |
+
assert not need_weights
|
| 41 |
+
assert qkv.dtype in [torch.float16, torch.bfloat16]
|
| 42 |
+
assert qkv.is_cuda
|
| 43 |
+
|
| 44 |
+
if cu_seqlens is None:
|
| 45 |
+
batch_size = qkv.shape[0]
|
| 46 |
+
seqlen = qkv.shape[1]
|
| 47 |
+
if key_padding_mask is None:
|
| 48 |
+
qkv = rearrange(qkv, 'b s ... -> (b s) ...')
|
| 49 |
+
max_s = seqlen
|
| 50 |
+
cu_seqlens = torch.arange(0, (batch_size + 1) * seqlen, step=seqlen, dtype=torch.int32,
|
| 51 |
+
device=qkv.device)
|
| 52 |
+
output = flash_attn_unpadded_qkvpacked_func(
|
| 53 |
+
qkv, cu_seqlens, max_s, self.dropout_p if self.training else 0.0,
|
| 54 |
+
softmax_scale=self.softmax_scale, causal=causal
|
| 55 |
+
)
|
| 56 |
+
output = rearrange(output, '(b s) ... -> b s ...', b=batch_size)
|
| 57 |
+
else:
|
| 58 |
+
nheads = qkv.shape[-2]
|
| 59 |
+
x = rearrange(qkv, 'b s three h d -> b s (three h d)')
|
| 60 |
+
x_unpad, indices, cu_seqlens, max_s = unpad_input(x, key_padding_mask)
|
| 61 |
+
x_unpad = rearrange(x_unpad, 'nnz (three h d) -> nnz three h d', three=3, h=nheads)
|
| 62 |
+
output_unpad = flash_attn_unpadded_qkvpacked_func(
|
| 63 |
+
x_unpad, cu_seqlens, max_s, self.dropout_p if self.training else 0.0,
|
| 64 |
+
softmax_scale=self.softmax_scale, causal=causal
|
| 65 |
+
)
|
| 66 |
+
output = rearrange(pad_input(rearrange(output_unpad, 'nnz h d -> nnz (h d)'),
|
| 67 |
+
indices, batch_size, seqlen),
|
| 68 |
+
'b s (h d) -> b s h d', h=nheads)
|
| 69 |
+
else:
|
| 70 |
+
assert max_s is not None
|
| 71 |
+
output = flash_attn_unpadded_qkvpacked_func(
|
| 72 |
+
qkv, cu_seqlens, max_s, self.dropout_p if self.training else 0.0,
|
| 73 |
+
softmax_scale=self.softmax_scale, causal=causal
|
| 74 |
+
)
|
| 75 |
+
|
| 76 |
+
return output, None
|
eneas/vendor/SeC/inference/modeling_intern_vit.py
ADDED
|
@@ -0,0 +1,364 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# --------------------------------------------------------
|
| 2 |
+
# InternVL
|
| 3 |
+
# Copyright (c) 2024 OpenGVLab
|
| 4 |
+
# Licensed under The MIT License [see LICENSE for details]
|
| 5 |
+
# --------------------------------------------------------
|
| 6 |
+
|
| 7 |
+
from typing import Optional, Tuple, Union
|
| 8 |
+
|
| 9 |
+
import torch
|
| 10 |
+
import torch.nn.functional as F
|
| 11 |
+
import torch.utils.checkpoint
|
| 12 |
+
from einops import rearrange
|
| 13 |
+
from timm.models.layers import DropPath
|
| 14 |
+
from torch import nn
|
| 15 |
+
from transformers.activations import ACT2FN
|
| 16 |
+
from transformers.modeling_outputs import (BaseModelOutput,
|
| 17 |
+
BaseModelOutputWithPooling)
|
| 18 |
+
from transformers.modeling_utils import PreTrainedModel
|
| 19 |
+
from transformers.utils import logging
|
| 20 |
+
|
| 21 |
+
from .configuration_intern_vit import InternVisionConfig
|
| 22 |
+
|
| 23 |
+
try:
|
| 24 |
+
from .flash_attention import FlashAttention
|
| 25 |
+
has_flash_attn = True
|
| 26 |
+
except:
|
| 27 |
+
print('FlashAttention is not installed.')
|
| 28 |
+
has_flash_attn = False
|
| 29 |
+
|
| 30 |
+
logger = logging.get_logger(__name__)
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
class InternRMSNorm(nn.Module):
|
| 34 |
+
def __init__(self, hidden_size, eps=1e-6):
|
| 35 |
+
super().__init__()
|
| 36 |
+
self.weight = nn.Parameter(torch.ones(hidden_size))
|
| 37 |
+
self.variance_epsilon = eps
|
| 38 |
+
|
| 39 |
+
def forward(self, hidden_states):
|
| 40 |
+
input_dtype = hidden_states.dtype
|
| 41 |
+
hidden_states = hidden_states.to(torch.float32)
|
| 42 |
+
variance = hidden_states.pow(2).mean(-1, keepdim=True)
|
| 43 |
+
hidden_states = hidden_states * torch.rsqrt(variance + self.variance_epsilon)
|
| 44 |
+
return self.weight * hidden_states.to(input_dtype)
|
| 45 |
+
|
| 46 |
+
|
| 47 |
+
try:
|
| 48 |
+
from apex.normalization import FusedRMSNorm
|
| 49 |
+
|
| 50 |
+
InternRMSNorm = FusedRMSNorm # noqa
|
| 51 |
+
|
| 52 |
+
logger.info('Discovered apex.normalization.FusedRMSNorm - will use it instead of InternRMSNorm')
|
| 53 |
+
except ImportError:
|
| 54 |
+
# using the normal InternRMSNorm
|
| 55 |
+
pass
|
| 56 |
+
except Exception:
|
| 57 |
+
logger.warning('discovered apex but it failed to load, falling back to InternRMSNorm')
|
| 58 |
+
pass
|
| 59 |
+
|
| 60 |
+
|
| 61 |
+
NORM2FN = {
|
| 62 |
+
'rms_norm': InternRMSNorm,
|
| 63 |
+
'layer_norm': nn.LayerNorm,
|
| 64 |
+
}
|
| 65 |
+
|
| 66 |
+
|
| 67 |
+
class InternVisionEmbeddings(nn.Module):
|
| 68 |
+
def __init__(self, config: InternVisionConfig):
|
| 69 |
+
super().__init__()
|
| 70 |
+
self.config = config
|
| 71 |
+
self.embed_dim = config.hidden_size
|
| 72 |
+
self.image_size = config.image_size
|
| 73 |
+
self.patch_size = config.patch_size
|
| 74 |
+
|
| 75 |
+
self.class_embedding = nn.Parameter(
|
| 76 |
+
torch.randn(1, 1, self.embed_dim),
|
| 77 |
+
)
|
| 78 |
+
|
| 79 |
+
self.patch_embedding = nn.Conv2d(
|
| 80 |
+
in_channels=3, out_channels=self.embed_dim, kernel_size=self.patch_size, stride=self.patch_size
|
| 81 |
+
)
|
| 82 |
+
|
| 83 |
+
self.num_patches = (self.image_size // self.patch_size) ** 2
|
| 84 |
+
self.num_positions = self.num_patches + 1
|
| 85 |
+
|
| 86 |
+
self.position_embedding = nn.Parameter(torch.randn(1, self.num_positions, self.embed_dim))
|
| 87 |
+
|
| 88 |
+
def _get_pos_embed(self, pos_embed, H, W):
|
| 89 |
+
target_dtype = pos_embed.dtype
|
| 90 |
+
pos_embed = pos_embed.float().reshape(
|
| 91 |
+
1, self.image_size // self.patch_size, self.image_size // self.patch_size, -1).permute(0, 3, 1, 2)
|
| 92 |
+
pos_embed = F.interpolate(pos_embed, size=(H, W), mode='bicubic', align_corners=False). \
|
| 93 |
+
reshape(1, -1, H * W).permute(0, 2, 1).to(target_dtype)
|
| 94 |
+
return pos_embed
|
| 95 |
+
|
| 96 |
+
def forward(self, pixel_values: torch.FloatTensor) -> torch.Tensor:
|
| 97 |
+
target_dtype = self.patch_embedding.weight.dtype
|
| 98 |
+
patch_embeds = self.patch_embedding(pixel_values) # shape = [*, channel, width, height]
|
| 99 |
+
batch_size, _, height, width = patch_embeds.shape
|
| 100 |
+
patch_embeds = patch_embeds.flatten(2).transpose(1, 2)
|
| 101 |
+
class_embeds = self.class_embedding.expand(batch_size, 1, -1).to(target_dtype)
|
| 102 |
+
embeddings = torch.cat([class_embeds, patch_embeds], dim=1)
|
| 103 |
+
position_embedding = torch.cat([
|
| 104 |
+
self.position_embedding[:, :1, :],
|
| 105 |
+
self._get_pos_embed(self.position_embedding[:, 1:, :], height, width)
|
| 106 |
+
], dim=1)
|
| 107 |
+
embeddings = embeddings + position_embedding.to(target_dtype)
|
| 108 |
+
return embeddings
|
| 109 |
+
|
| 110 |
+
|
| 111 |
+
class InternAttention(nn.Module):
|
| 112 |
+
"""Multi-headed attention from 'Attention Is All You Need' paper"""
|
| 113 |
+
|
| 114 |
+
def __init__(self, config: InternVisionConfig):
|
| 115 |
+
super().__init__()
|
| 116 |
+
self.config = config
|
| 117 |
+
self.embed_dim = config.hidden_size
|
| 118 |
+
self.num_heads = config.num_attention_heads
|
| 119 |
+
self.use_flash_attn = config.use_flash_attn and has_flash_attn
|
| 120 |
+
if config.use_flash_attn and not has_flash_attn:
|
| 121 |
+
print('Warning: Flash Attention is not available, use_flash_attn is set to False.')
|
| 122 |
+
self.head_dim = self.embed_dim // self.num_heads
|
| 123 |
+
if self.head_dim * self.num_heads != self.embed_dim:
|
| 124 |
+
raise ValueError(
|
| 125 |
+
f'embed_dim must be divisible by num_heads (got `embed_dim`: {self.embed_dim} and `num_heads`:'
|
| 126 |
+
f' {self.num_heads}).'
|
| 127 |
+
)
|
| 128 |
+
|
| 129 |
+
self.scale = self.head_dim ** -0.5
|
| 130 |
+
self.qkv = nn.Linear(self.embed_dim, 3 * self.embed_dim, bias=config.qkv_bias)
|
| 131 |
+
self.attn_drop = nn.Dropout(config.attention_dropout)
|
| 132 |
+
self.proj_drop = nn.Dropout(config.dropout)
|
| 133 |
+
|
| 134 |
+
self.qk_normalization = config.qk_normalization
|
| 135 |
+
|
| 136 |
+
if self.qk_normalization:
|
| 137 |
+
self.q_norm = InternRMSNorm(self.embed_dim, eps=config.layer_norm_eps)
|
| 138 |
+
self.k_norm = InternRMSNorm(self.embed_dim, eps=config.layer_norm_eps)
|
| 139 |
+
|
| 140 |
+
if self.use_flash_attn:
|
| 141 |
+
self.inner_attn = FlashAttention(attention_dropout=config.attention_dropout)
|
| 142 |
+
self.proj = nn.Linear(self.embed_dim, self.embed_dim)
|
| 143 |
+
|
| 144 |
+
def _naive_attn(self, x):
|
| 145 |
+
B, N, C = x.shape
|
| 146 |
+
qkv = self.qkv(x).reshape(B, N, 3, self.num_heads, C // self.num_heads).permute(2, 0, 3, 1, 4)
|
| 147 |
+
q, k, v = qkv.unbind(0) # make torchscript happy (cannot use tensor as tuple)
|
| 148 |
+
|
| 149 |
+
if self.qk_normalization:
|
| 150 |
+
B_, H_, N_, D_ = q.shape
|
| 151 |
+
q = self.q_norm(q.transpose(1, 2).flatten(-2, -1)).view(B_, N_, H_, D_).transpose(1, 2)
|
| 152 |
+
k = self.k_norm(k.transpose(1, 2).flatten(-2, -1)).view(B_, N_, H_, D_).transpose(1, 2)
|
| 153 |
+
|
| 154 |
+
attn = ((q * self.scale) @ k.transpose(-2, -1))
|
| 155 |
+
attn = attn.softmax(dim=-1)
|
| 156 |
+
attn = self.attn_drop(attn)
|
| 157 |
+
|
| 158 |
+
x = (attn @ v).transpose(1, 2).reshape(B, N, C)
|
| 159 |
+
x = self.proj(x)
|
| 160 |
+
x = self.proj_drop(x)
|
| 161 |
+
return x
|
| 162 |
+
|
| 163 |
+
def _flash_attn(self, x, key_padding_mask=None, need_weights=False):
|
| 164 |
+
qkv = self.qkv(x)
|
| 165 |
+
qkv = rearrange(qkv, 'b s (three h d) -> b s three h d', three=3, h=self.num_heads)
|
| 166 |
+
|
| 167 |
+
if self.qk_normalization:
|
| 168 |
+
q, k, v = qkv.unbind(2)
|
| 169 |
+
q = self.q_norm(q.flatten(-2, -1)).view(q.shape)
|
| 170 |
+
k = self.k_norm(k.flatten(-2, -1)).view(k.shape)
|
| 171 |
+
qkv = torch.stack([q, k, v], dim=2)
|
| 172 |
+
|
| 173 |
+
context, _ = self.inner_attn(
|
| 174 |
+
qkv, key_padding_mask=key_padding_mask, need_weights=need_weights, causal=False
|
| 175 |
+
)
|
| 176 |
+
outs = self.proj(rearrange(context, 'b s h d -> b s (h d)'))
|
| 177 |
+
outs = self.proj_drop(outs)
|
| 178 |
+
return outs
|
| 179 |
+
|
| 180 |
+
def forward(self, hidden_states: torch.Tensor) -> torch.Tensor:
|
| 181 |
+
x = self._naive_attn(hidden_states) if not self.use_flash_attn else self._flash_attn(hidden_states)
|
| 182 |
+
return x
|
| 183 |
+
|
| 184 |
+
|
| 185 |
+
class InternMLP(nn.Module):
|
| 186 |
+
def __init__(self, config: InternVisionConfig):
|
| 187 |
+
super().__init__()
|
| 188 |
+
self.config = config
|
| 189 |
+
self.act = ACT2FN[config.hidden_act]
|
| 190 |
+
self.fc1 = nn.Linear(config.hidden_size, config.intermediate_size)
|
| 191 |
+
self.fc2 = nn.Linear(config.intermediate_size, config.hidden_size)
|
| 192 |
+
|
| 193 |
+
def forward(self, hidden_states: torch.Tensor) -> torch.Tensor:
|
| 194 |
+
hidden_states = self.fc1(hidden_states)
|
| 195 |
+
hidden_states = self.act(hidden_states)
|
| 196 |
+
hidden_states = self.fc2(hidden_states)
|
| 197 |
+
return hidden_states
|
| 198 |
+
|
| 199 |
+
|
| 200 |
+
class InternVisionEncoderLayer(nn.Module):
|
| 201 |
+
def __init__(self, config: InternVisionConfig, drop_path_rate: float):
|
| 202 |
+
super().__init__()
|
| 203 |
+
self.embed_dim = config.hidden_size
|
| 204 |
+
self.intermediate_size = config.intermediate_size
|
| 205 |
+
self.norm_type = config.norm_type
|
| 206 |
+
|
| 207 |
+
self.attn = InternAttention(config)
|
| 208 |
+
self.mlp = InternMLP(config)
|
| 209 |
+
self.norm1 = NORM2FN[self.norm_type](self.embed_dim, eps=config.layer_norm_eps)
|
| 210 |
+
self.norm2 = NORM2FN[self.norm_type](self.embed_dim, eps=config.layer_norm_eps)
|
| 211 |
+
|
| 212 |
+
self.ls1 = nn.Parameter(config.initializer_factor * torch.ones(self.embed_dim))
|
| 213 |
+
self.ls2 = nn.Parameter(config.initializer_factor * torch.ones(self.embed_dim))
|
| 214 |
+
self.drop_path1 = DropPath(drop_path_rate) if drop_path_rate > 0. else nn.Identity()
|
| 215 |
+
self.drop_path2 = DropPath(drop_path_rate) if drop_path_rate > 0. else nn.Identity()
|
| 216 |
+
|
| 217 |
+
def forward(
|
| 218 |
+
self,
|
| 219 |
+
hidden_states: torch.Tensor,
|
| 220 |
+
) -> Tuple[torch.FloatTensor, Optional[torch.FloatTensor], Optional[Tuple[torch.FloatTensor]]]:
|
| 221 |
+
"""
|
| 222 |
+
Args:
|
| 223 |
+
hidden_states (`Tuple[torch.FloatTensor, Optional[torch.FloatTensor]]`): input to the layer of shape `(batch, seq_len, embed_dim)`
|
| 224 |
+
"""
|
| 225 |
+
hidden_states = hidden_states + self.drop_path1(self.attn(self.norm1(hidden_states)) * self.ls1)
|
| 226 |
+
|
| 227 |
+
hidden_states = hidden_states + self.drop_path2(self.mlp(self.norm2(hidden_states)) * self.ls2)
|
| 228 |
+
|
| 229 |
+
return hidden_states
|
| 230 |
+
|
| 231 |
+
|
| 232 |
+
class InternVisionEncoder(nn.Module):
|
| 233 |
+
"""
|
| 234 |
+
Transformer encoder consisting of `config.num_hidden_layers` self attention layers. Each layer is a
|
| 235 |
+
[`InternEncoderLayer`].
|
| 236 |
+
|
| 237 |
+
Args:
|
| 238 |
+
config (`InternConfig`):
|
| 239 |
+
The corresponding vision configuration for the `InternEncoder`.
|
| 240 |
+
"""
|
| 241 |
+
|
| 242 |
+
def __init__(self, config: InternVisionConfig):
|
| 243 |
+
super().__init__()
|
| 244 |
+
self.config = config
|
| 245 |
+
# stochastic depth decay rule
|
| 246 |
+
dpr = [x.item() for x in torch.linspace(0, config.drop_path_rate, config.num_hidden_layers)]
|
| 247 |
+
self.layers = nn.ModuleList([
|
| 248 |
+
InternVisionEncoderLayer(config, dpr[idx]) for idx in range(config.num_hidden_layers)])
|
| 249 |
+
self.gradient_checkpointing = True
|
| 250 |
+
|
| 251 |
+
def forward(
|
| 252 |
+
self,
|
| 253 |
+
inputs_embeds,
|
| 254 |
+
output_hidden_states: Optional[bool] = None,
|
| 255 |
+
return_dict: Optional[bool] = None,
|
| 256 |
+
) -> Union[Tuple, BaseModelOutput]:
|
| 257 |
+
r"""
|
| 258 |
+
Args:
|
| 259 |
+
inputs_embeds (`torch.FloatTensor` of shape `(batch_size, sequence_length, hidden_size)`):
|
| 260 |
+
Embedded representation of the inputs. Should be float, not int tokens.
|
| 261 |
+
output_hidden_states (`bool`, *optional*):
|
| 262 |
+
Whether or not to return the hidden states of all layers. See `hidden_states` under returned tensors
|
| 263 |
+
for more detail.
|
| 264 |
+
return_dict (`bool`, *optional*):
|
| 265 |
+
Whether or not to return a [`~utils.ModelOutput`] instead of a plain tuple.
|
| 266 |
+
"""
|
| 267 |
+
output_hidden_states = (
|
| 268 |
+
output_hidden_states if output_hidden_states is not None else self.config.output_hidden_states
|
| 269 |
+
)
|
| 270 |
+
return_dict = return_dict if return_dict is not None else self.config.use_return_dict
|
| 271 |
+
|
| 272 |
+
encoder_states = () if output_hidden_states else None
|
| 273 |
+
hidden_states = inputs_embeds
|
| 274 |
+
|
| 275 |
+
for idx, encoder_layer in enumerate(self.layers):
|
| 276 |
+
if output_hidden_states:
|
| 277 |
+
encoder_states = encoder_states + (hidden_states,)
|
| 278 |
+
if self.gradient_checkpointing and self.training:
|
| 279 |
+
layer_outputs = torch.utils.checkpoint.checkpoint(
|
| 280 |
+
encoder_layer,
|
| 281 |
+
hidden_states)
|
| 282 |
+
else:
|
| 283 |
+
layer_outputs = encoder_layer(
|
| 284 |
+
hidden_states,
|
| 285 |
+
)
|
| 286 |
+
hidden_states = layer_outputs
|
| 287 |
+
|
| 288 |
+
if output_hidden_states:
|
| 289 |
+
encoder_states = encoder_states + (hidden_states,)
|
| 290 |
+
|
| 291 |
+
if not return_dict:
|
| 292 |
+
return tuple(v for v in [hidden_states, encoder_states] if v is not None)
|
| 293 |
+
return BaseModelOutput(
|
| 294 |
+
last_hidden_state=hidden_states, hidden_states=encoder_states
|
| 295 |
+
)
|
| 296 |
+
|
| 297 |
+
|
| 298 |
+
class InternVisionModel(PreTrainedModel):
|
| 299 |
+
main_input_name = 'pixel_values'
|
| 300 |
+
_supports_flash_attn_2 = True
|
| 301 |
+
config_class = InternVisionConfig
|
| 302 |
+
_no_split_modules = ['InternVisionEncoderLayer']
|
| 303 |
+
|
| 304 |
+
def __init__(self, config: InternVisionConfig):
|
| 305 |
+
super().__init__(config)
|
| 306 |
+
self.config = config
|
| 307 |
+
|
| 308 |
+
self.embeddings = InternVisionEmbeddings(config)
|
| 309 |
+
self.encoder = InternVisionEncoder(config)
|
| 310 |
+
|
| 311 |
+
def resize_pos_embeddings(self, old_size, new_size, patch_size):
|
| 312 |
+
pos_emb = self.embeddings.position_embedding
|
| 313 |
+
_, num_positions, embed_dim = pos_emb.shape
|
| 314 |
+
cls_emb = pos_emb[:, :1, :]
|
| 315 |
+
pos_emb = pos_emb[:, 1:, :].reshape(1, old_size // patch_size, old_size // patch_size, -1).permute(0, 3, 1, 2)
|
| 316 |
+
pos_emb = F.interpolate(pos_emb.float(), size=new_size // patch_size, mode='bicubic', align_corners=False)
|
| 317 |
+
pos_emb = pos_emb.to(cls_emb.dtype).reshape(1, embed_dim, -1).permute(0, 2, 1)
|
| 318 |
+
pos_emb = torch.cat([cls_emb, pos_emb], dim=1)
|
| 319 |
+
self.embeddings.position_embedding = nn.Parameter(pos_emb)
|
| 320 |
+
self.embeddings.image_size = new_size
|
| 321 |
+
logger.info('Resized position embeddings from {} to {}'.format(old_size, new_size))
|
| 322 |
+
|
| 323 |
+
def get_input_embeddings(self):
|
| 324 |
+
return self.embeddings
|
| 325 |
+
|
| 326 |
+
def forward(
|
| 327 |
+
self,
|
| 328 |
+
pixel_values: Optional[torch.FloatTensor] = None,
|
| 329 |
+
output_hidden_states: Optional[bool] = None,
|
| 330 |
+
return_dict: Optional[bool] = None,
|
| 331 |
+
pixel_embeds: Optional[torch.FloatTensor] = None,
|
| 332 |
+
) -> Union[Tuple, BaseModelOutputWithPooling]:
|
| 333 |
+
output_hidden_states = (
|
| 334 |
+
output_hidden_states if output_hidden_states is not None else self.config.output_hidden_states
|
| 335 |
+
)
|
| 336 |
+
return_dict = return_dict if return_dict is not None else self.config.use_return_dict
|
| 337 |
+
|
| 338 |
+
if pixel_values is None and pixel_embeds is None:
|
| 339 |
+
raise ValueError('You have to specify pixel_values or pixel_embeds')
|
| 340 |
+
|
| 341 |
+
if pixel_embeds is not None:
|
| 342 |
+
hidden_states = pixel_embeds
|
| 343 |
+
else:
|
| 344 |
+
if len(pixel_values.shape) == 4:
|
| 345 |
+
hidden_states = self.embeddings(pixel_values)
|
| 346 |
+
else:
|
| 347 |
+
raise ValueError(f'wrong pixel_values size: {pixel_values.shape}')
|
| 348 |
+
encoder_outputs = self.encoder(
|
| 349 |
+
inputs_embeds=hidden_states,
|
| 350 |
+
output_hidden_states=output_hidden_states,
|
| 351 |
+
return_dict=return_dict,
|
| 352 |
+
)
|
| 353 |
+
last_hidden_state = encoder_outputs.last_hidden_state
|
| 354 |
+
pooled_output = last_hidden_state[:, 0, :]
|
| 355 |
+
|
| 356 |
+
if not return_dict:
|
| 357 |
+
return (last_hidden_state, pooled_output) + encoder_outputs[1:]
|
| 358 |
+
|
| 359 |
+
return BaseModelOutputWithPooling(
|
| 360 |
+
last_hidden_state=last_hidden_state,
|
| 361 |
+
pooler_output=pooled_output,
|
| 362 |
+
hidden_states=encoder_outputs.hidden_states,
|
| 363 |
+
attentions=encoder_outputs.attentions,
|
| 364 |
+
)
|
eneas/vendor/SeC/inference/modeling_internlm2.py
ADDED
|
@@ -0,0 +1,1429 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Copyright (c) The InternLM team and The HuggingFace Inc. team. All rights reserved.
|
| 2 |
+
#
|
| 3 |
+
# This code is based on transformers/src/transformers/models/llama/modeling_llama.py
|
| 4 |
+
#
|
| 5 |
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
| 6 |
+
# you may not use this file except in compliance with the License.
|
| 7 |
+
# You may obtain a copy of the License at
|
| 8 |
+
#
|
| 9 |
+
# http://www.apache.org/licenses/LICENSE-2.0
|
| 10 |
+
#
|
| 11 |
+
# Unless required by applicable law or agreed to in writing, software
|
| 12 |
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
| 13 |
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 14 |
+
# See the License for the specific language governing permissions and
|
| 15 |
+
# limitations under the License.
|
| 16 |
+
""" PyTorch InternLM2 model."""
|
| 17 |
+
import math
|
| 18 |
+
import queue
|
| 19 |
+
import threading
|
| 20 |
+
import warnings
|
| 21 |
+
from typing import List, Optional, Tuple, Union
|
| 22 |
+
|
| 23 |
+
import torch
|
| 24 |
+
import torch.nn.functional as F
|
| 25 |
+
import torch.utils.checkpoint
|
| 26 |
+
from einops import rearrange
|
| 27 |
+
from torch import nn
|
| 28 |
+
from torch.nn import BCEWithLogitsLoss, CrossEntropyLoss, MSELoss
|
| 29 |
+
from transformers.activations import ACT2FN
|
| 30 |
+
from transformers.modeling_outputs import (BaseModelOutputWithPast,
|
| 31 |
+
CausalLMOutputWithPast,
|
| 32 |
+
SequenceClassifierOutputWithPast)
|
| 33 |
+
from transformers.modeling_utils import PreTrainedModel
|
| 34 |
+
from transformers.utils import (add_start_docstrings,
|
| 35 |
+
add_start_docstrings_to_model_forward, logging,
|
| 36 |
+
replace_return_docstrings)
|
| 37 |
+
|
| 38 |
+
try:
|
| 39 |
+
from transformers.generation.streamers import BaseStreamer
|
| 40 |
+
except: # noqa # pylint: disable=bare-except
|
| 41 |
+
BaseStreamer = None
|
| 42 |
+
|
| 43 |
+
from .configuration_internlm2 import InternLM2Config
|
| 44 |
+
|
| 45 |
+
logger = logging.get_logger(__name__)
|
| 46 |
+
|
| 47 |
+
_CONFIG_FOR_DOC = 'InternLM2Config'
|
| 48 |
+
|
| 49 |
+
flash_attn_func, flash_attn_varlen_func = None, None
|
| 50 |
+
pad_input, index_first_axis, unpad_input = None, None, None
|
| 51 |
+
try:
|
| 52 |
+
from flash_attn import flash_attn_func as _flash_attn_func
|
| 53 |
+
from flash_attn import flash_attn_varlen_func as _flash_attn_varlen_func
|
| 54 |
+
from flash_attn.bert_padding import index_first_axis as _index_first_axis
|
| 55 |
+
from flash_attn.bert_padding import pad_input as _pad_input
|
| 56 |
+
from flash_attn.bert_padding import unpad_input as _unpad_input
|
| 57 |
+
|
| 58 |
+
flash_attn_func, flash_attn_varlen_func = _flash_attn_func, _flash_attn_varlen_func
|
| 59 |
+
pad_input, index_first_axis, unpad_input = _pad_input, _index_first_axis, _unpad_input
|
| 60 |
+
has_flash_attn = True
|
| 61 |
+
except:
|
| 62 |
+
has_flash_attn = False
|
| 63 |
+
|
| 64 |
+
|
| 65 |
+
def _import_flash_attn():
|
| 66 |
+
global flash_attn_func, flash_attn_varlen_func
|
| 67 |
+
global pad_input, index_first_axis, unpad_input
|
| 68 |
+
try:
|
| 69 |
+
from flash_attn import flash_attn_func as _flash_attn_func
|
| 70 |
+
from flash_attn import \
|
| 71 |
+
flash_attn_varlen_func as _flash_attn_varlen_func
|
| 72 |
+
from flash_attn.bert_padding import \
|
| 73 |
+
index_first_axis as _index_first_axis
|
| 74 |
+
from flash_attn.bert_padding import pad_input as _pad_input
|
| 75 |
+
from flash_attn.bert_padding import unpad_input as _unpad_input
|
| 76 |
+
flash_attn_func, flash_attn_varlen_func = _flash_attn_func, _flash_attn_varlen_func
|
| 77 |
+
pad_input, index_first_axis, unpad_input = _pad_input, _index_first_axis, _unpad_input
|
| 78 |
+
except ImportError:
|
| 79 |
+
raise ImportError('flash_attn is not installed.')
|
| 80 |
+
|
| 81 |
+
|
| 82 |
+
# Copied from transformers.models.llama.modeling_llama._get_unpad_data
|
| 83 |
+
def _get_unpad_data(attention_mask):
|
| 84 |
+
seqlens_in_batch = attention_mask.sum(dim=-1, dtype=torch.int32)
|
| 85 |
+
indices = torch.nonzero(attention_mask.flatten(), as_tuple=False).flatten()
|
| 86 |
+
max_seqlen_in_batch = seqlens_in_batch.max().item()
|
| 87 |
+
cu_seqlens = F.pad(torch.cumsum(seqlens_in_batch, dim=0, dtype=torch.torch.int32), (1, 0))
|
| 88 |
+
return (
|
| 89 |
+
indices,
|
| 90 |
+
cu_seqlens,
|
| 91 |
+
max_seqlen_in_batch,
|
| 92 |
+
)
|
| 93 |
+
|
| 94 |
+
|
| 95 |
+
# Copied from transformers.models.bart.modeling_bart._make_causal_mask
|
| 96 |
+
def _make_causal_mask(
|
| 97 |
+
input_ids_shape: torch.Size, dtype: torch.dtype, device: torch.device, past_key_values_length: int = 0
|
| 98 |
+
):
|
| 99 |
+
"""
|
| 100 |
+
Make causal mask used for bi-directional self-attention.
|
| 101 |
+
"""
|
| 102 |
+
bsz, tgt_len = input_ids_shape
|
| 103 |
+
mask = torch.full((tgt_len, tgt_len), torch.tensor(torch.finfo(dtype).min, device=device), device=device)
|
| 104 |
+
mask_cond = torch.arange(mask.size(-1), device=device)
|
| 105 |
+
mask.masked_fill_(mask_cond < (mask_cond + 1).view(mask.size(-1), 1), 0)
|
| 106 |
+
mask = mask.to(dtype)
|
| 107 |
+
|
| 108 |
+
if past_key_values_length > 0:
|
| 109 |
+
mask = torch.cat([torch.zeros(tgt_len, past_key_values_length, dtype=dtype, device=device), mask], dim=-1)
|
| 110 |
+
return mask[None, None, :, :].expand(bsz, 1, tgt_len, tgt_len + past_key_values_length)
|
| 111 |
+
|
| 112 |
+
|
| 113 |
+
# Copied from transformers.models.bart.modeling_bart._expand_mask
|
| 114 |
+
def _expand_mask(mask: torch.Tensor, dtype: torch.dtype, tgt_len: Optional[int] = None):
|
| 115 |
+
"""
|
| 116 |
+
Expands attention_mask from `[bsz, seq_len]` to `[bsz, 1, tgt_seq_len, src_seq_len]`.
|
| 117 |
+
"""
|
| 118 |
+
bsz, src_len = mask.size()
|
| 119 |
+
tgt_len = tgt_len if tgt_len is not None else src_len
|
| 120 |
+
|
| 121 |
+
expanded_mask = mask[:, None, None, :].expand(bsz, 1, tgt_len, src_len).to(dtype)
|
| 122 |
+
|
| 123 |
+
inverted_mask = 1.0 - expanded_mask
|
| 124 |
+
|
| 125 |
+
return inverted_mask.masked_fill(inverted_mask.to(torch.bool), torch.finfo(dtype).min)
|
| 126 |
+
|
| 127 |
+
|
| 128 |
+
# Copied from transformers.models.llama.modeling_llama.LlamaRMSNorm with Llama->InternLM2
|
| 129 |
+
class InternLM2RMSNorm(nn.Module):
|
| 130 |
+
def __init__(self, hidden_size, eps=1e-6):
|
| 131 |
+
"""
|
| 132 |
+
InternLM2RMSNorm is equivalent to T5LayerNorm
|
| 133 |
+
"""
|
| 134 |
+
super().__init__()
|
| 135 |
+
self.weight = nn.Parameter(torch.ones(hidden_size))
|
| 136 |
+
self.variance_epsilon = eps
|
| 137 |
+
|
| 138 |
+
def forward(self, hidden_states):
|
| 139 |
+
input_dtype = hidden_states.dtype
|
| 140 |
+
hidden_states = hidden_states.to(torch.float32)
|
| 141 |
+
variance = hidden_states.pow(2).mean(-1, keepdim=True)
|
| 142 |
+
hidden_states = hidden_states * torch.rsqrt(variance + self.variance_epsilon)
|
| 143 |
+
return self.weight * hidden_states.to(input_dtype)
|
| 144 |
+
|
| 145 |
+
|
| 146 |
+
try:
|
| 147 |
+
from functools import partial
|
| 148 |
+
|
| 149 |
+
from apex.normalization import FusedRMSNorm
|
| 150 |
+
InternLM2RMSNorm = partial(FusedRMSNorm, eps=1e-6) # noqa
|
| 151 |
+
print('Discovered apex.normalization.FusedRMSNorm - will use it instead of InternLM2RMSNorm')
|
| 152 |
+
except ImportError:
|
| 153 |
+
# using the normal LlamaRMSNorm
|
| 154 |
+
pass
|
| 155 |
+
except Exception:
|
| 156 |
+
print('discovered apex but it failed to load, falling back to InternLM2RMSNorm')
|
| 157 |
+
pass
|
| 158 |
+
|
| 159 |
+
|
| 160 |
+
# Copied from transformers.model.llama.modeling_llama.LlamaRotaryEmbedding with Llama->InternLM2
|
| 161 |
+
class InternLM2RotaryEmbedding(nn.Module):
|
| 162 |
+
def __init__(self, dim, max_position_embeddings=2048, base=10000, device=None):
|
| 163 |
+
super().__init__()
|
| 164 |
+
|
| 165 |
+
self.dim = dim
|
| 166 |
+
self.max_position_embeddings = max_position_embeddings
|
| 167 |
+
self.base = base
|
| 168 |
+
inv_freq = 1.0 / (self.base ** (torch.arange(0, self.dim, 2).float().to(device) / self.dim))
|
| 169 |
+
self.register_buffer('inv_freq', inv_freq, persistent=False)
|
| 170 |
+
|
| 171 |
+
# Build here to make `torch.jit.trace` work.
|
| 172 |
+
self._set_cos_sin_cache(
|
| 173 |
+
seq_len=max_position_embeddings, device=self.inv_freq.device, dtype=torch.get_default_dtype()
|
| 174 |
+
)
|
| 175 |
+
|
| 176 |
+
def _set_cos_sin_cache(self, seq_len, device, dtype):
|
| 177 |
+
self.max_seq_len_cached = seq_len
|
| 178 |
+
t = torch.arange(self.max_seq_len_cached, device=device).to(dtype=self.inv_freq.dtype)
|
| 179 |
+
|
| 180 |
+
freqs = torch.einsum('i,j->ij', t, self.inv_freq)
|
| 181 |
+
# Different from paper, but it uses a different permutation in order to obtain the same calculation
|
| 182 |
+
emb = torch.cat((freqs, freqs), dim=-1)
|
| 183 |
+
self.register_buffer('cos_cached', emb.cos().to(dtype), persistent=False)
|
| 184 |
+
self.register_buffer('sin_cached', emb.sin().to(dtype), persistent=False)
|
| 185 |
+
|
| 186 |
+
def forward(self, x, seq_len=None):
|
| 187 |
+
# x: [bs, num_attention_heads, seq_len, head_size]
|
| 188 |
+
if seq_len > self.max_seq_len_cached:
|
| 189 |
+
self._set_cos_sin_cache(seq_len=seq_len, device=x.device, dtype=torch.float32)
|
| 190 |
+
|
| 191 |
+
return (
|
| 192 |
+
self.cos_cached[:seq_len].to(dtype=x.dtype),
|
| 193 |
+
self.sin_cached[:seq_len].to(dtype=x.dtype),
|
| 194 |
+
)
|
| 195 |
+
|
| 196 |
+
|
| 197 |
+
# Copied from transformers.model.llama.modeling_llama.LlamaLinearScalingRotaryEmbedding with Llama->InternLM2
|
| 198 |
+
class InternLM2LinearScalingRotaryEmbedding(InternLM2RotaryEmbedding):
|
| 199 |
+
"""InternLM2RotaryEmbedding extended with linear scaling. Credits to the Reddit user /u/kaiokendev"""
|
| 200 |
+
|
| 201 |
+
def __init__(self, dim, max_position_embeddings=2048, base=10000, device=None, scaling_factor=1.0):
|
| 202 |
+
self.scaling_factor = scaling_factor
|
| 203 |
+
super().__init__(dim, max_position_embeddings, base, device)
|
| 204 |
+
|
| 205 |
+
def _set_cos_sin_cache(self, seq_len, device, dtype):
|
| 206 |
+
self.max_seq_len_cached = seq_len
|
| 207 |
+
t = torch.arange(self.max_seq_len_cached, device=device).to(dtype=self.inv_freq.dtype)
|
| 208 |
+
t = t / self.scaling_factor
|
| 209 |
+
|
| 210 |
+
freqs = torch.einsum('i,j->ij', t, self.inv_freq)
|
| 211 |
+
# Different from paper, but it uses a different permutation in order to obtain the same calculation
|
| 212 |
+
emb = torch.cat((freqs, freqs), dim=-1)
|
| 213 |
+
self.register_buffer('cos_cached', emb.cos().to(dtype), persistent=False)
|
| 214 |
+
self.register_buffer('sin_cached', emb.sin().to(dtype), persistent=False)
|
| 215 |
+
|
| 216 |
+
|
| 217 |
+
# Copied from transformers.model.llama.modeling_llama.LlamaDynamicNTKScalingRotaryEmbedding with Llama->InternLM2
|
| 218 |
+
class InternLM2DynamicNTKScalingRotaryEmbedding(InternLM2RotaryEmbedding):
|
| 219 |
+
"""InternLM2RotaryEmbedding extended with Dynamic NTK scaling.
|
| 220 |
+
Credits to the Reddit users /u/bloc97 and /u/emozilla.
|
| 221 |
+
"""
|
| 222 |
+
|
| 223 |
+
def __init__(self, dim, max_position_embeddings=2048, base=10000, device=None, scaling_factor=1.0):
|
| 224 |
+
self.scaling_factor = scaling_factor
|
| 225 |
+
super().__init__(dim, max_position_embeddings, base, device)
|
| 226 |
+
|
| 227 |
+
def _set_cos_sin_cache(self, seq_len, device, dtype):
|
| 228 |
+
self.max_seq_len_cached = seq_len
|
| 229 |
+
|
| 230 |
+
if seq_len > self.max_position_embeddings:
|
| 231 |
+
base = self.base * (
|
| 232 |
+
(self.scaling_factor * seq_len / self.max_position_embeddings) - (self.scaling_factor - 1)
|
| 233 |
+
) ** (self.dim / (self.dim - 2))
|
| 234 |
+
inv_freq = 1.0 / (base ** (torch.arange(0, self.dim, 2).float().to(device) / self.dim))
|
| 235 |
+
self.register_buffer('inv_freq', inv_freq, persistent=False)
|
| 236 |
+
|
| 237 |
+
t = torch.arange(self.max_seq_len_cached, device=device).to(dtype=self.inv_freq.dtype)
|
| 238 |
+
|
| 239 |
+
freqs = torch.einsum('i,j->ij', t, self.inv_freq)
|
| 240 |
+
# Different from paper, but it uses a different permutation in order to obtain the same calculation
|
| 241 |
+
emb = torch.cat((freqs, freqs), dim=-1)
|
| 242 |
+
self.register_buffer('cos_cached', emb.cos().to(dtype), persistent=False)
|
| 243 |
+
self.register_buffer('sin_cached', emb.sin().to(dtype), persistent=False)
|
| 244 |
+
|
| 245 |
+
|
| 246 |
+
# Copied from transformers.model.llama.modeling_llama.rotate_half
|
| 247 |
+
def rotate_half(x):
|
| 248 |
+
"""Rotates half the hidden dims of the input."""
|
| 249 |
+
x1 = x[..., : x.shape[-1] // 2]
|
| 250 |
+
x2 = x[..., x.shape[-1] // 2:]
|
| 251 |
+
return torch.cat((-x2, x1), dim=-1)
|
| 252 |
+
|
| 253 |
+
|
| 254 |
+
# Copied from transformers.model.llama.modeling_llama.apply_rotary_pos_emb
|
| 255 |
+
def apply_rotary_pos_emb(q, k, cos, sin, position_ids, unsqueeze_dim=1):
|
| 256 |
+
"""Applies Rotary Position Embedding to the query and key tensors."""
|
| 257 |
+
cos = cos[position_ids].unsqueeze(unsqueeze_dim)
|
| 258 |
+
sin = sin[position_ids].unsqueeze(unsqueeze_dim)
|
| 259 |
+
q_embed = (q * cos) + (rotate_half(q) * sin)
|
| 260 |
+
k_embed = (k * cos) + (rotate_half(k) * sin)
|
| 261 |
+
return q_embed, k_embed
|
| 262 |
+
|
| 263 |
+
|
| 264 |
+
class InternLM2MLP(nn.Module):
|
| 265 |
+
def __init__(self, config):
|
| 266 |
+
super().__init__()
|
| 267 |
+
self.config = config
|
| 268 |
+
self.hidden_size = config.hidden_size
|
| 269 |
+
self.intermediate_size = config.intermediate_size
|
| 270 |
+
self.w1 = nn.Linear(self.hidden_size, self.intermediate_size, bias=False)
|
| 271 |
+
self.w3 = nn.Linear(self.hidden_size, self.intermediate_size, bias=False)
|
| 272 |
+
self.w2 = nn.Linear(self.intermediate_size, self.hidden_size, bias=False)
|
| 273 |
+
self.act_fn = ACT2FN[config.hidden_act]
|
| 274 |
+
|
| 275 |
+
def forward(self, x):
|
| 276 |
+
down_proj = self.w2(self.act_fn(self.w1(x)) * self.w3(x))
|
| 277 |
+
|
| 278 |
+
return down_proj
|
| 279 |
+
|
| 280 |
+
|
| 281 |
+
# Copied from transformers.model.llama.modeling_llama.repeat_kv
|
| 282 |
+
def repeat_kv(hidden_states: torch.Tensor, n_rep: int) -> torch.Tensor:
|
| 283 |
+
"""
|
| 284 |
+
This is the equivalent of torch.repeat_interleave(x, dim=1, repeats=n_rep). The hidden states go from (batch,
|
| 285 |
+
num_key_value_heads, seqlen, head_dim) to (batch, num_attention_heads, seqlen, head_dim)
|
| 286 |
+
"""
|
| 287 |
+
batch, num_key_value_heads, slen, head_dim = hidden_states.shape
|
| 288 |
+
if n_rep == 1:
|
| 289 |
+
return hidden_states
|
| 290 |
+
hidden_states = hidden_states[:, :, None, :, :].expand(batch, num_key_value_heads, n_rep, slen, head_dim)
|
| 291 |
+
return hidden_states.reshape(batch, num_key_value_heads * n_rep, slen, head_dim)
|
| 292 |
+
|
| 293 |
+
|
| 294 |
+
# Modified from transformers.model.llama.modeling_llama.LlamaAttention
|
| 295 |
+
class InternLM2Attention(nn.Module):
|
| 296 |
+
"""Multi-headed attention from 'Attention Is All You Need' paper"""
|
| 297 |
+
|
| 298 |
+
def __init__(self, config: InternLM2Config):
|
| 299 |
+
super().__init__()
|
| 300 |
+
self.config = config
|
| 301 |
+
self.hidden_size = config.hidden_size
|
| 302 |
+
self.num_heads = config.num_attention_heads
|
| 303 |
+
self.head_dim = self.hidden_size // self.num_heads
|
| 304 |
+
self.num_key_value_heads = config.num_key_value_heads
|
| 305 |
+
self.num_key_value_groups = self.num_heads // self.num_key_value_heads
|
| 306 |
+
self.max_position_embeddings = config.max_position_embeddings
|
| 307 |
+
self.is_causal = True
|
| 308 |
+
|
| 309 |
+
if (self.head_dim * self.num_heads) != self.hidden_size:
|
| 310 |
+
raise ValueError(
|
| 311 |
+
f'hidden_size must be divisible by num_heads (got `hidden_size`: {self.hidden_size}'
|
| 312 |
+
f' and `num_heads`: {self.num_heads}).'
|
| 313 |
+
)
|
| 314 |
+
|
| 315 |
+
self.wqkv = nn.Linear(
|
| 316 |
+
self.hidden_size,
|
| 317 |
+
(self.num_heads + 2 * self.num_key_value_heads) * self.head_dim,
|
| 318 |
+
bias=config.bias,
|
| 319 |
+
)
|
| 320 |
+
|
| 321 |
+
self.wo = nn.Linear(self.num_heads * self.head_dim, self.hidden_size, bias=config.bias)
|
| 322 |
+
self._init_rope()
|
| 323 |
+
|
| 324 |
+
def _init_rope(self):
|
| 325 |
+
if self.config.rope_scaling is None:
|
| 326 |
+
self.rotary_emb = InternLM2RotaryEmbedding(
|
| 327 |
+
self.head_dim,
|
| 328 |
+
max_position_embeddings=self.max_position_embeddings,
|
| 329 |
+
base=self.config.rope_theta,
|
| 330 |
+
)
|
| 331 |
+
else:
|
| 332 |
+
scaling_type = self.config.rope_scaling['type']
|
| 333 |
+
scaling_factor = self.config.rope_scaling['factor']
|
| 334 |
+
if scaling_type == 'dynamic':
|
| 335 |
+
self.rotary_emb = InternLM2DynamicNTKScalingRotaryEmbedding(
|
| 336 |
+
self.head_dim,
|
| 337 |
+
max_position_embeddings=self.max_position_embeddings,
|
| 338 |
+
base=self.config.rope_theta,
|
| 339 |
+
scaling_factor=scaling_factor,
|
| 340 |
+
)
|
| 341 |
+
elif scaling_type == 'linear':
|
| 342 |
+
self.rotary_emb = InternLM2LinearScalingRotaryEmbedding(
|
| 343 |
+
self.head_dim,
|
| 344 |
+
max_position_embeddings=self.max_position_embeddings,
|
| 345 |
+
base=self.config.rope_theta,
|
| 346 |
+
scaling_factor=scaling_factor,
|
| 347 |
+
)
|
| 348 |
+
else:
|
| 349 |
+
raise ValueError("Currently we only support rotary embedding's type being 'dynamic' or 'linear'.")
|
| 350 |
+
return self.rotary_emb
|
| 351 |
+
|
| 352 |
+
def _shape(self, tensor: torch.Tensor, seq_len: int, bsz: int):
|
| 353 |
+
return tensor.view(bsz, seq_len, self.num_heads, self.head_dim).transpose(1, 2).contiguous()
|
| 354 |
+
|
| 355 |
+
def forward(
|
| 356 |
+
self,
|
| 357 |
+
hidden_states: torch.Tensor,
|
| 358 |
+
attention_mask: Optional[torch.Tensor] = None,
|
| 359 |
+
position_ids: Optional[torch.LongTensor] = None,
|
| 360 |
+
past_key_value: Optional[Tuple[torch.Tensor]] = None,
|
| 361 |
+
output_attentions: bool = False,
|
| 362 |
+
use_cache: bool = False,
|
| 363 |
+
**kwargs,
|
| 364 |
+
) -> Tuple[torch.Tensor, Optional[torch.Tensor], Optional[Tuple[torch.Tensor]]]:
|
| 365 |
+
if 'padding_mask' in kwargs:
|
| 366 |
+
warnings.warn(
|
| 367 |
+
'Passing `padding_mask` is deprecated and will be removed in v4.37. '
|
| 368 |
+
'Please make sure use `attention_mask` instead.`'
|
| 369 |
+
)
|
| 370 |
+
|
| 371 |
+
bsz, q_len, _ = hidden_states.size()
|
| 372 |
+
|
| 373 |
+
qkv_states = self.wqkv(hidden_states)
|
| 374 |
+
|
| 375 |
+
qkv_states = rearrange(
|
| 376 |
+
qkv_states,
|
| 377 |
+
'b q (h gs d) -> b q h gs d',
|
| 378 |
+
gs=2 + self.num_key_value_groups,
|
| 379 |
+
d=self.head_dim,
|
| 380 |
+
)
|
| 381 |
+
|
| 382 |
+
query_states = qkv_states[..., : self.num_key_value_groups, :]
|
| 383 |
+
query_states = rearrange(query_states, 'b q h gs d -> b q (h gs) d')
|
| 384 |
+
key_states = qkv_states[..., -2, :]
|
| 385 |
+
value_states = qkv_states[..., -1, :]
|
| 386 |
+
|
| 387 |
+
query_states = query_states.transpose(1, 2)
|
| 388 |
+
key_states = key_states.transpose(1, 2)
|
| 389 |
+
value_states = value_states.transpose(1, 2)
|
| 390 |
+
|
| 391 |
+
kv_seq_len = key_states.shape[-2]
|
| 392 |
+
if past_key_value is not None:
|
| 393 |
+
kv_seq_len += past_key_value[0].shape[-2]
|
| 394 |
+
cos, sin = self.rotary_emb(value_states, seq_len=kv_seq_len)
|
| 395 |
+
query_states, key_states = apply_rotary_pos_emb(query_states, key_states, cos, sin, position_ids)
|
| 396 |
+
|
| 397 |
+
if past_key_value is not None:
|
| 398 |
+
# reuse k, v, self_attention
|
| 399 |
+
key_states = torch.cat([past_key_value[0], key_states], dim=2)
|
| 400 |
+
value_states = torch.cat([past_key_value[1], value_states], dim=2)
|
| 401 |
+
|
| 402 |
+
past_key_value = (key_states, value_states) if use_cache else None
|
| 403 |
+
|
| 404 |
+
key_states = repeat_kv(key_states, self.num_key_value_groups)
|
| 405 |
+
value_states = repeat_kv(value_states, self.num_key_value_groups)
|
| 406 |
+
|
| 407 |
+
attn_weights = torch.matmul(query_states, key_states.transpose(2, 3)) / math.sqrt(self.head_dim)
|
| 408 |
+
|
| 409 |
+
if attn_weights.size() != (bsz, self.num_heads, q_len, kv_seq_len):
|
| 410 |
+
raise ValueError(
|
| 411 |
+
f'Attention weights should be of size {(bsz, self.num_heads, q_len, kv_seq_len)}, but is'
|
| 412 |
+
f' {attn_weights.size()}'
|
| 413 |
+
)
|
| 414 |
+
|
| 415 |
+
if attention_mask is not None:
|
| 416 |
+
if attention_mask.size() != (bsz, 1, q_len, kv_seq_len):
|
| 417 |
+
raise ValueError(
|
| 418 |
+
f'Attention mask should be of size {(bsz, 1, q_len, kv_seq_len)}, but is {attention_mask.size()}'
|
| 419 |
+
)
|
| 420 |
+
attn_weights = attn_weights + attention_mask
|
| 421 |
+
|
| 422 |
+
# upcast attention to fp32
|
| 423 |
+
attn_weights = nn.functional.softmax(attn_weights, dim=-1, dtype=torch.float32).to(query_states.dtype)
|
| 424 |
+
attn_output = torch.matmul(attn_weights, value_states)
|
| 425 |
+
|
| 426 |
+
if attn_output.size() != (bsz, self.num_heads, q_len, self.head_dim):
|
| 427 |
+
raise ValueError(
|
| 428 |
+
f'`attn_output` should be of size {(bsz, self.num_heads, q_len, self.head_dim)}, but is'
|
| 429 |
+
f' {attn_output.size()}'
|
| 430 |
+
)
|
| 431 |
+
|
| 432 |
+
attn_output = attn_output.transpose(1, 2).contiguous()
|
| 433 |
+
attn_output = attn_output.reshape(bsz, q_len, self.hidden_size)
|
| 434 |
+
|
| 435 |
+
attn_output = self.wo(attn_output)
|
| 436 |
+
|
| 437 |
+
if not output_attentions:
|
| 438 |
+
attn_weights = None
|
| 439 |
+
|
| 440 |
+
return attn_output, attn_weights, past_key_value
|
| 441 |
+
|
| 442 |
+
|
| 443 |
+
# Modified from transformers.model.llama.modeling_llama.InternLM2FlashAttention2
|
| 444 |
+
class InternLM2FlashAttention2(InternLM2Attention):
|
| 445 |
+
"""
|
| 446 |
+
InternLM2 flash attention module. This module inherits from `InternLM2Attention` as the weights of the module stays
|
| 447 |
+
untouched. The only required change would be on the forward pass where it needs to correctly call the public API of
|
| 448 |
+
flash attention and deal with padding tokens in case the input contains any of them.
|
| 449 |
+
"""
|
| 450 |
+
|
| 451 |
+
def forward(
|
| 452 |
+
self,
|
| 453 |
+
hidden_states: torch.Tensor,
|
| 454 |
+
attention_mask: Optional[torch.LongTensor] = None,
|
| 455 |
+
position_ids: Optional[torch.LongTensor] = None,
|
| 456 |
+
past_key_value: Optional[Tuple[torch.Tensor]] = None,
|
| 457 |
+
output_attentions: bool = False,
|
| 458 |
+
use_cache: bool = False,
|
| 459 |
+
**kwargs,
|
| 460 |
+
) -> Tuple[torch.Tensor, Optional[torch.Tensor], Optional[Tuple[torch.Tensor]]]:
|
| 461 |
+
# InternLM2FlashAttention2 attention does not support output_attentions
|
| 462 |
+
if 'padding_mask' in kwargs:
|
| 463 |
+
warnings.warn(
|
| 464 |
+
'Passing `padding_mask` is deprecated and will be removed in v4.37. '
|
| 465 |
+
'Please make sure use `attention_mask` instead.`'
|
| 466 |
+
)
|
| 467 |
+
|
| 468 |
+
# overwrite attention_mask with padding_mask
|
| 469 |
+
attention_mask = kwargs.pop('padding_mask')
|
| 470 |
+
|
| 471 |
+
output_attentions = False
|
| 472 |
+
|
| 473 |
+
bsz, q_len, _ = hidden_states.size()
|
| 474 |
+
|
| 475 |
+
qkv_states = self.wqkv(hidden_states)
|
| 476 |
+
|
| 477 |
+
qkv_states = rearrange(
|
| 478 |
+
qkv_states,
|
| 479 |
+
'b q (h gs d) -> b q h gs d',
|
| 480 |
+
gs=2 + self.num_key_value_groups,
|
| 481 |
+
d=self.head_dim,
|
| 482 |
+
)
|
| 483 |
+
|
| 484 |
+
query_states = qkv_states[..., : self.num_key_value_groups, :]
|
| 485 |
+
query_states = rearrange(query_states, 'b q h gs d -> b q (h gs) d')
|
| 486 |
+
key_states = qkv_states[..., -2, :]
|
| 487 |
+
value_states = qkv_states[..., -1, :]
|
| 488 |
+
|
| 489 |
+
query_states = query_states.transpose(1, 2)
|
| 490 |
+
key_states = key_states.transpose(1, 2)
|
| 491 |
+
value_states = value_states.transpose(1, 2)
|
| 492 |
+
|
| 493 |
+
kv_seq_len = key_states.shape[-2]
|
| 494 |
+
if past_key_value is not None:
|
| 495 |
+
kv_seq_len += past_key_value[0].shape[-2]
|
| 496 |
+
|
| 497 |
+
cos, sin = self.rotary_emb(value_states, seq_len=kv_seq_len)
|
| 498 |
+
|
| 499 |
+
query_states, key_states = apply_rotary_pos_emb(query_states, key_states, cos, sin, position_ids)
|
| 500 |
+
|
| 501 |
+
if past_key_value is not None:
|
| 502 |
+
# reuse k, v, self_attention
|
| 503 |
+
key_states = torch.cat([past_key_value[0], key_states], dim=2)
|
| 504 |
+
value_states = torch.cat([past_key_value[1], value_states], dim=2)
|
| 505 |
+
|
| 506 |
+
past_key_value = (key_states, value_states) if use_cache else None
|
| 507 |
+
|
| 508 |
+
query_states = query_states.transpose(1, 2)
|
| 509 |
+
key_states = key_states.transpose(1, 2)
|
| 510 |
+
value_states = value_states.transpose(1, 2)
|
| 511 |
+
|
| 512 |
+
attn_output = self._flash_attention_forward(
|
| 513 |
+
query_states, key_states, value_states, attention_mask, q_len
|
| 514 |
+
)
|
| 515 |
+
attn_output = attn_output.reshape(bsz, q_len, self.hidden_size).contiguous()
|
| 516 |
+
attn_output = self.wo(attn_output)
|
| 517 |
+
|
| 518 |
+
if not output_attentions:
|
| 519 |
+
attn_weights = None
|
| 520 |
+
|
| 521 |
+
return attn_output, attn_weights, past_key_value
|
| 522 |
+
|
| 523 |
+
def _flash_attention_forward(
|
| 524 |
+
self, query_states, key_states, value_states, attention_mask, query_length, dropout=0.0, softmax_scale=None
|
| 525 |
+
):
|
| 526 |
+
"""
|
| 527 |
+
Calls the forward method of Flash Attention - if the input hidden states contain at least one padding token
|
| 528 |
+
first unpad the input, then computes the attention scores and pad the final attention scores.
|
| 529 |
+
|
| 530 |
+
Args:
|
| 531 |
+
query_states (`torch.Tensor`):
|
| 532 |
+
Input query states to be passed to Flash Attention API
|
| 533 |
+
key_states (`torch.Tensor`):
|
| 534 |
+
Input key states to be passed to Flash Attention API
|
| 535 |
+
value_states (`torch.Tensor`):
|
| 536 |
+
Input value states to be passed to Flash Attention API
|
| 537 |
+
attention_mask (`torch.Tensor`):
|
| 538 |
+
The padding mask - corresponds to a tensor of size `(batch_size, seq_len)` where 0 stands for the
|
| 539 |
+
position of padding tokens and 1 for the position of non-padding tokens.
|
| 540 |
+
dropout (`int`, *optional*):
|
| 541 |
+
Attention dropout
|
| 542 |
+
softmax_scale (`float`, *optional*):
|
| 543 |
+
The scaling of QK^T before applying softmax. Default to 1 / sqrt(head_dim)
|
| 544 |
+
"""
|
| 545 |
+
# Contains at least one padding token in the sequence
|
| 546 |
+
causal = self.is_causal and query_length != 1
|
| 547 |
+
if attention_mask is not None:
|
| 548 |
+
batch_size = query_states.shape[0]
|
| 549 |
+
query_states, key_states, value_states, indices_q, cu_seq_lens, max_seq_lens = self._unpad_input(
|
| 550 |
+
query_states, key_states, value_states, attention_mask, query_length
|
| 551 |
+
)
|
| 552 |
+
|
| 553 |
+
cu_seqlens_q, cu_seqlens_k = cu_seq_lens
|
| 554 |
+
max_seqlen_in_batch_q, max_seqlen_in_batch_k = max_seq_lens
|
| 555 |
+
|
| 556 |
+
attn_output_unpad = flash_attn_varlen_func(
|
| 557 |
+
query_states,
|
| 558 |
+
key_states,
|
| 559 |
+
value_states,
|
| 560 |
+
cu_seqlens_q=cu_seqlens_q,
|
| 561 |
+
cu_seqlens_k=cu_seqlens_k,
|
| 562 |
+
max_seqlen_q=max_seqlen_in_batch_q,
|
| 563 |
+
max_seqlen_k=max_seqlen_in_batch_k,
|
| 564 |
+
dropout_p=dropout,
|
| 565 |
+
softmax_scale=softmax_scale,
|
| 566 |
+
causal=causal,
|
| 567 |
+
)
|
| 568 |
+
|
| 569 |
+
attn_output = pad_input(attn_output_unpad, indices_q, batch_size, query_length)
|
| 570 |
+
else:
|
| 571 |
+
attn_output = flash_attn_func(
|
| 572 |
+
query_states, key_states, value_states, dropout, softmax_scale=softmax_scale, causal=causal
|
| 573 |
+
)
|
| 574 |
+
|
| 575 |
+
return attn_output
|
| 576 |
+
|
| 577 |
+
def _unpad_input(self, query_layer, key_layer, value_layer, attention_mask, query_length):
|
| 578 |
+
indices_k, cu_seqlens_k, max_seqlen_in_batch_k = _get_unpad_data(attention_mask)
|
| 579 |
+
batch_size, kv_seq_len, num_key_value_heads, head_dim = key_layer.shape
|
| 580 |
+
|
| 581 |
+
key_layer = index_first_axis(
|
| 582 |
+
key_layer.reshape(batch_size * kv_seq_len, num_key_value_heads, head_dim), indices_k
|
| 583 |
+
)
|
| 584 |
+
value_layer = index_first_axis(
|
| 585 |
+
value_layer.reshape(batch_size * kv_seq_len, num_key_value_heads, head_dim), indices_k
|
| 586 |
+
)
|
| 587 |
+
|
| 588 |
+
if query_length == kv_seq_len:
|
| 589 |
+
query_layer = index_first_axis(
|
| 590 |
+
query_layer.reshape(batch_size * kv_seq_len, self.num_heads, head_dim), indices_k
|
| 591 |
+
)
|
| 592 |
+
cu_seqlens_q = cu_seqlens_k
|
| 593 |
+
max_seqlen_in_batch_q = max_seqlen_in_batch_k
|
| 594 |
+
indices_q = indices_k
|
| 595 |
+
elif query_length == 1:
|
| 596 |
+
max_seqlen_in_batch_q = 1
|
| 597 |
+
cu_seqlens_q = torch.arange(
|
| 598 |
+
batch_size + 1, dtype=torch.int32, device=query_layer.device
|
| 599 |
+
) # There is a memcpy here, that is very bad.
|
| 600 |
+
indices_q = cu_seqlens_q[:-1]
|
| 601 |
+
query_layer = query_layer.squeeze(1)
|
| 602 |
+
else:
|
| 603 |
+
# The -q_len: slice assumes left padding.
|
| 604 |
+
attention_mask = attention_mask[:, -query_length:]
|
| 605 |
+
query_layer, indices_q, cu_seqlens_q, max_seqlen_in_batch_q = unpad_input(query_layer, attention_mask)
|
| 606 |
+
|
| 607 |
+
return (
|
| 608 |
+
query_layer,
|
| 609 |
+
key_layer,
|
| 610 |
+
value_layer,
|
| 611 |
+
indices_q.to(torch.int64),
|
| 612 |
+
(cu_seqlens_q, cu_seqlens_k),
|
| 613 |
+
(max_seqlen_in_batch_q, max_seqlen_in_batch_k),
|
| 614 |
+
)
|
| 615 |
+
|
| 616 |
+
|
| 617 |
+
INTERNLM2_ATTENTION_CLASSES = {
|
| 618 |
+
'eager': InternLM2Attention,
|
| 619 |
+
'flash_attention_2': InternLM2FlashAttention2,
|
| 620 |
+
}
|
| 621 |
+
|
| 622 |
+
|
| 623 |
+
# Modified from transformers.model.llama.modeling_llama.LlamaDecoderLayer
|
| 624 |
+
class InternLM2DecoderLayer(nn.Module):
|
| 625 |
+
def __init__(self, config: InternLM2Config):
|
| 626 |
+
super().__init__()
|
| 627 |
+
self.hidden_size = config.hidden_size
|
| 628 |
+
|
| 629 |
+
self.attention = INTERNLM2_ATTENTION_CLASSES[config.attn_implementation](config=config)
|
| 630 |
+
|
| 631 |
+
self.feed_forward = InternLM2MLP(config)
|
| 632 |
+
self.attention_norm = InternLM2RMSNorm(config.hidden_size, eps=config.rms_norm_eps)
|
| 633 |
+
self.ffn_norm = InternLM2RMSNorm(config.hidden_size, eps=config.rms_norm_eps)
|
| 634 |
+
|
| 635 |
+
def forward(
|
| 636 |
+
self,
|
| 637 |
+
hidden_states: torch.Tensor,
|
| 638 |
+
attention_mask: Optional[torch.Tensor] = None,
|
| 639 |
+
position_ids: Optional[torch.LongTensor] = None,
|
| 640 |
+
past_key_value: Optional[Tuple[torch.Tensor]] = None,
|
| 641 |
+
output_attentions: Optional[bool] = False,
|
| 642 |
+
use_cache: Optional[bool] = False,
|
| 643 |
+
**kwargs,
|
| 644 |
+
) -> Tuple[torch.FloatTensor, Optional[Tuple[torch.FloatTensor, torch.FloatTensor]]]:
|
| 645 |
+
"""
|
| 646 |
+
Args:
|
| 647 |
+
hidden_states (`torch.FloatTensor`): input to the layer of shape `(batch, seq_len, embed_dim)`
|
| 648 |
+
attention_mask (`torch.FloatTensor`, *optional*):
|
| 649 |
+
attention mask of size `(batch_size, sequence_length)` if flash attention is used or `(batch_size, 1,
|
| 650 |
+
query_sequence_length, key_sequence_length)` if default attention is used.
|
| 651 |
+
output_attentions (`bool`, *optional*):
|
| 652 |
+
Whether or not to return the attentions tensors of all attention layers. See `attentions` under
|
| 653 |
+
returned tensors for more detail.
|
| 654 |
+
use_cache (`bool`, *optional*):
|
| 655 |
+
If set to `True`, `past_key_values` key value states are returned and can be used to speed up decoding
|
| 656 |
+
(see `past_key_values`).
|
| 657 |
+
past_key_value (`Tuple(torch.FloatTensor)`, *optional*): cached past key and value projection states
|
| 658 |
+
"""
|
| 659 |
+
if 'padding_mask' in kwargs:
|
| 660 |
+
warnings.warn(
|
| 661 |
+
'Passing `padding_mask` is deprecated and will be removed in v4.37. '
|
| 662 |
+
'Please make sure use `attention_mask` instead.`'
|
| 663 |
+
)
|
| 664 |
+
|
| 665 |
+
residual = hidden_states
|
| 666 |
+
|
| 667 |
+
hidden_states = self.attention_norm(hidden_states)
|
| 668 |
+
|
| 669 |
+
# Self Attention
|
| 670 |
+
hidden_states, self_attn_weights, present_key_value = self.attention(
|
| 671 |
+
hidden_states=hidden_states,
|
| 672 |
+
attention_mask=attention_mask,
|
| 673 |
+
position_ids=position_ids,
|
| 674 |
+
past_key_value=past_key_value,
|
| 675 |
+
output_attentions=output_attentions,
|
| 676 |
+
use_cache=use_cache,
|
| 677 |
+
**kwargs,
|
| 678 |
+
)
|
| 679 |
+
hidden_states = residual + hidden_states
|
| 680 |
+
|
| 681 |
+
# Fully Connected
|
| 682 |
+
residual = hidden_states
|
| 683 |
+
hidden_states = self.ffn_norm(hidden_states)
|
| 684 |
+
hidden_states = self.feed_forward(hidden_states)
|
| 685 |
+
hidden_states = residual + hidden_states
|
| 686 |
+
|
| 687 |
+
outputs = (hidden_states,)
|
| 688 |
+
|
| 689 |
+
if output_attentions:
|
| 690 |
+
outputs += (self_attn_weights,)
|
| 691 |
+
|
| 692 |
+
if use_cache:
|
| 693 |
+
outputs += (present_key_value,)
|
| 694 |
+
|
| 695 |
+
return outputs
|
| 696 |
+
|
| 697 |
+
|
| 698 |
+
InternLM2_START_DOCSTRING = r"""
|
| 699 |
+
This model inherits from [`PreTrainedModel`]. Check the superclass documentation for the generic methods the
|
| 700 |
+
library implements for all its model (such as downloading or saving, resizing the input embeddings, pruning heads
|
| 701 |
+
etc.)
|
| 702 |
+
|
| 703 |
+
This model is also a PyTorch [torch.nn.Module](https://pytorch.org/docs/stable/nn.html#torch.nn.Module) subclass.
|
| 704 |
+
Use it as a regular PyTorch Module and refer to the PyTorch documentation for all matter related to general usage
|
| 705 |
+
and behavior.
|
| 706 |
+
|
| 707 |
+
Parameters:
|
| 708 |
+
config ([`InternLM2Config`]):
|
| 709 |
+
Model configuration class with all the parameters of the model. Initializing with a config file does not
|
| 710 |
+
load the weights associated with the model, only the configuration. Check out the
|
| 711 |
+
[`~PreTrainedModel.from_pretrained`] method to load the model weights.
|
| 712 |
+
"""
|
| 713 |
+
|
| 714 |
+
|
| 715 |
+
# Copied from transformers.models.llama.modeling_llama.LlamaPreTrainedModel with Llama->InternLM2
|
| 716 |
+
@add_start_docstrings(
|
| 717 |
+
'The bare InternLM2 Model outputting raw hidden-states without any specific head on top.',
|
| 718 |
+
InternLM2_START_DOCSTRING,
|
| 719 |
+
)
|
| 720 |
+
class InternLM2PreTrainedModel(PreTrainedModel):
|
| 721 |
+
config_class = InternLM2Config
|
| 722 |
+
base_model_prefix = 'model'
|
| 723 |
+
supports_gradient_checkpointing = True
|
| 724 |
+
_no_split_modules = ['InternLM2DecoderLayer']
|
| 725 |
+
_skip_keys_device_placement = 'past_key_values'
|
| 726 |
+
_supports_flash_attn_2 = True
|
| 727 |
+
|
| 728 |
+
def _init_weights(self, module):
|
| 729 |
+
std = self.config.initializer_range
|
| 730 |
+
if isinstance(module, nn.Linear):
|
| 731 |
+
module.weight.data.normal_(mean=0.0, std=std)
|
| 732 |
+
if module.bias is not None:
|
| 733 |
+
module.bias.data.zero_()
|
| 734 |
+
elif isinstance(module, nn.Embedding):
|
| 735 |
+
module.weight.data.normal_(mean=0.0, std=std)
|
| 736 |
+
if module.padding_idx is not None:
|
| 737 |
+
module.weight.data[module.padding_idx].zero_()
|
| 738 |
+
|
| 739 |
+
|
| 740 |
+
InternLM2_INPUTS_DOCSTRING = r"""
|
| 741 |
+
Args:
|
| 742 |
+
input_ids (`torch.LongTensor` of shape `(batch_size, sequence_length)`):
|
| 743 |
+
Indices of input sequence tokens in the vocabulary. Padding will be ignored by default should you provide
|
| 744 |
+
it.
|
| 745 |
+
|
| 746 |
+
Indices can be obtained using [`AutoTokenizer`]. See [`PreTrainedTokenizer.encode`] and
|
| 747 |
+
[`PreTrainedTokenizer.__call__`] for details.
|
| 748 |
+
|
| 749 |
+
[What are input IDs?](../glossary#input-ids)
|
| 750 |
+
attention_mask (`torch.Tensor` of shape `(batch_size, sequence_length)`, *optional*):
|
| 751 |
+
Mask to avoid performing attention on padding token indices. Mask values selected in `[0, 1]`:
|
| 752 |
+
|
| 753 |
+
- 1 for tokens that are **not masked**,
|
| 754 |
+
- 0 for tokens that are **masked**.
|
| 755 |
+
|
| 756 |
+
[What are attention masks?](../glossary#attention-mask)
|
| 757 |
+
|
| 758 |
+
Indices can be obtained using [`AutoTokenizer`]. See [`PreTrainedTokenizer.encode`] and
|
| 759 |
+
[`PreTrainedTokenizer.__call__`] for details.
|
| 760 |
+
|
| 761 |
+
If `past_key_values` is used, optionally only the last `input_ids` have to be input (see
|
| 762 |
+
`past_key_values`).
|
| 763 |
+
|
| 764 |
+
If you want to change padding behavior, you should read [`modeling_opt._prepare_decoder_attention_mask`]
|
| 765 |
+
and modify to your needs. See diagram 1 in [the paper](https://arxiv.org/abs/1910.13461) for more
|
| 766 |
+
information on the default strategy.
|
| 767 |
+
|
| 768 |
+
- 1 indicates the head is **not masked**,
|
| 769 |
+
- 0 indicates the head is **masked**.
|
| 770 |
+
position_ids (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
|
| 771 |
+
Indices of positions of each input sequence tokens in the position embeddings. Selected in the range `[0,
|
| 772 |
+
config.n_positions - 1]`.
|
| 773 |
+
|
| 774 |
+
[What are position IDs?](../glossary#position-ids)
|
| 775 |
+
past_key_values (`tuple(tuple(torch.FloatTensor))`, *optional*, returned when `use_cache=True` is passed or
|
| 776 |
+
when `config.use_cache=True`):
|
| 777 |
+
Tuple of `tuple(torch.FloatTensor)` of length `config.n_layers`, with each tuple having 2 tensors of shape
|
| 778 |
+
`(batch_size, num_heads, sequence_length, embed_size_per_head)`) and 2 additional tensors of shape
|
| 779 |
+
`(batch_size, num_heads, decoder_sequence_length, embed_size_per_head)`.
|
| 780 |
+
|
| 781 |
+
Contains pre-computed hidden-states (key and values in the self-attention blocks and in the cross-attention
|
| 782 |
+
blocks) that can be used (see `past_key_values` input) to speed up sequential decoding.
|
| 783 |
+
|
| 784 |
+
If `past_key_values` are used, the user can optionally input only the last `input_ids` (those that don't
|
| 785 |
+
have their past key value states given to this model) of shape `(batch_size, 1)` instead of all `input_ids`
|
| 786 |
+
of shape `(batch_size, sequence_length)`.
|
| 787 |
+
inputs_embeds (`torch.FloatTensor` of shape `(batch_size, sequence_length, hidden_size)`, *optional*):
|
| 788 |
+
Optionally, instead of passing `input_ids` you can choose to directly pass an embedded representation. This
|
| 789 |
+
is useful if you want more control over how to convert `input_ids` indices into associated vectors than the
|
| 790 |
+
model's internal embedding lookup matrix.
|
| 791 |
+
use_cache (`bool`, *optional*):
|
| 792 |
+
If set to `True`, `past_key_values` key value states are returned and can be used to speed up decoding (see
|
| 793 |
+
`past_key_values`).
|
| 794 |
+
output_attentions (`bool`, *optional*):
|
| 795 |
+
Whether or not to return the attentions tensors of all attention layers. See `attentions` under returned
|
| 796 |
+
tensors for more detail.
|
| 797 |
+
output_hidden_states (`bool`, *optional*):
|
| 798 |
+
Whether or not to return the hidden states of all layers. See `hidden_states` under returned tensors for
|
| 799 |
+
more detail.
|
| 800 |
+
return_dict (`bool`, *optional*):
|
| 801 |
+
Whether or not to return a [`~utils.ModelOutput`] instead of a plain tuple.
|
| 802 |
+
"""
|
| 803 |
+
|
| 804 |
+
|
| 805 |
+
# Modified from transformers.model.llama.modeling_llama.LlamaModel
|
| 806 |
+
@add_start_docstrings(
|
| 807 |
+
'The bare InternLM2 Model outputting raw hidden-states without any specific head on top.',
|
| 808 |
+
InternLM2_START_DOCSTRING,
|
| 809 |
+
)
|
| 810 |
+
class InternLM2Model(InternLM2PreTrainedModel):
|
| 811 |
+
"""
|
| 812 |
+
Transformer decoder consisting of *config.num_hidden_layers* layers. Each layer is a [`InternLM2DecoderLayer`]
|
| 813 |
+
|
| 814 |
+
Args:
|
| 815 |
+
config: InternLM2Config
|
| 816 |
+
"""
|
| 817 |
+
|
| 818 |
+
_auto_class = 'AutoModel'
|
| 819 |
+
|
| 820 |
+
def __init__(self, config: InternLM2Config):
|
| 821 |
+
super().__init__(config)
|
| 822 |
+
self.padding_idx = config.pad_token_id
|
| 823 |
+
self.vocab_size = config.vocab_size
|
| 824 |
+
self.config = config
|
| 825 |
+
if not has_flash_attn:
|
| 826 |
+
self.config.attn_implementation = 'eager'
|
| 827 |
+
print('Warning: Flash attention is not available, using eager attention instead.')
|
| 828 |
+
|
| 829 |
+
self.tok_embeddings = nn.Embedding(config.vocab_size, config.hidden_size, self.padding_idx)
|
| 830 |
+
|
| 831 |
+
self.layers = nn.ModuleList([InternLM2DecoderLayer(config) for _ in range(config.num_hidden_layers)])
|
| 832 |
+
self.norm = InternLM2RMSNorm(config.hidden_size, eps=config.rms_norm_eps)
|
| 833 |
+
|
| 834 |
+
self.gradient_checkpointing = False
|
| 835 |
+
# Initialize weights and apply final processing
|
| 836 |
+
self.post_init()
|
| 837 |
+
|
| 838 |
+
def get_input_embeddings(self):
|
| 839 |
+
return self.tok_embeddings
|
| 840 |
+
|
| 841 |
+
def set_input_embeddings(self, value):
|
| 842 |
+
self.tok_embeddings = value
|
| 843 |
+
|
| 844 |
+
def _prepare_decoder_attention_mask(self, attention_mask, input_shape, inputs_embeds, past_key_values_length):
|
| 845 |
+
# create causal mask
|
| 846 |
+
# [bsz, seq_len] -> [bsz, 1, tgt_seq_len, src_seq_len]
|
| 847 |
+
combined_attention_mask = None
|
| 848 |
+
if input_shape[-1] > 1:
|
| 849 |
+
combined_attention_mask = _make_causal_mask(
|
| 850 |
+
input_shape,
|
| 851 |
+
inputs_embeds.dtype,
|
| 852 |
+
device=inputs_embeds.device,
|
| 853 |
+
past_key_values_length=past_key_values_length,
|
| 854 |
+
)
|
| 855 |
+
|
| 856 |
+
if attention_mask is not None:
|
| 857 |
+
# [bsz, seq_len] -> [bsz, 1, tgt_seq_len, src_seq_len]
|
| 858 |
+
expanded_attn_mask = _expand_mask(attention_mask, inputs_embeds.dtype, tgt_len=input_shape[-1]).to(
|
| 859 |
+
inputs_embeds.device
|
| 860 |
+
)
|
| 861 |
+
combined_attention_mask = (
|
| 862 |
+
expanded_attn_mask if combined_attention_mask is None else expanded_attn_mask + combined_attention_mask
|
| 863 |
+
)
|
| 864 |
+
|
| 865 |
+
return combined_attention_mask
|
| 866 |
+
|
| 867 |
+
@add_start_docstrings_to_model_forward(InternLM2_INPUTS_DOCSTRING)
|
| 868 |
+
def forward(
|
| 869 |
+
self,
|
| 870 |
+
input_ids: torch.LongTensor = None,
|
| 871 |
+
attention_mask: Optional[torch.Tensor] = None,
|
| 872 |
+
position_ids: Optional[torch.LongTensor] = None,
|
| 873 |
+
past_key_values: Optional[List[torch.FloatTensor]] = None,
|
| 874 |
+
inputs_embeds: Optional[torch.FloatTensor] = None,
|
| 875 |
+
use_cache: Optional[bool] = None,
|
| 876 |
+
output_attentions: Optional[bool] = None,
|
| 877 |
+
output_hidden_states: Optional[bool] = None,
|
| 878 |
+
return_dict: Optional[bool] = None,
|
| 879 |
+
) -> Union[Tuple, BaseModelOutputWithPast]:
|
| 880 |
+
output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions
|
| 881 |
+
output_hidden_states = (
|
| 882 |
+
output_hidden_states if output_hidden_states is not None else self.config.output_hidden_states
|
| 883 |
+
)
|
| 884 |
+
use_cache = use_cache if use_cache is not None else self.config.use_cache
|
| 885 |
+
|
| 886 |
+
return_dict = return_dict if return_dict is not None else self.config.use_return_dict
|
| 887 |
+
|
| 888 |
+
if self.config.attn_implementation == 'flash_attention_2':
|
| 889 |
+
_import_flash_attn()
|
| 890 |
+
|
| 891 |
+
# retrieve input_ids and inputs_embeds
|
| 892 |
+
if input_ids is not None and inputs_embeds is not None:
|
| 893 |
+
raise ValueError('You cannot specify both input_ids and inputs_embeds at the same time')
|
| 894 |
+
elif input_ids is not None:
|
| 895 |
+
batch_size, seq_length = input_ids.shape[:2]
|
| 896 |
+
elif inputs_embeds is not None:
|
| 897 |
+
batch_size, seq_length = inputs_embeds.shape[:2]
|
| 898 |
+
else:
|
| 899 |
+
raise ValueError('You have to specify either input_ids or inputs_embeds')
|
| 900 |
+
|
| 901 |
+
seq_length_with_past = seq_length
|
| 902 |
+
past_key_values_length = 0
|
| 903 |
+
if past_key_values is not None:
|
| 904 |
+
past_key_values_length = past_key_values[0][0].shape[2]
|
| 905 |
+
seq_length_with_past = seq_length_with_past + past_key_values_length
|
| 906 |
+
|
| 907 |
+
if position_ids is None:
|
| 908 |
+
device = input_ids.device if input_ids is not None else inputs_embeds.device
|
| 909 |
+
position_ids = torch.arange(
|
| 910 |
+
past_key_values_length, seq_length + past_key_values_length, dtype=torch.long, device=device
|
| 911 |
+
)
|
| 912 |
+
position_ids = position_ids.unsqueeze(0)
|
| 913 |
+
|
| 914 |
+
if inputs_embeds is None:
|
| 915 |
+
inputs_embeds = self.tok_embeddings(input_ids)
|
| 916 |
+
|
| 917 |
+
if self.config.attn_implementation == 'flash_attention_2':
|
| 918 |
+
# 2d mask is passed through the layers
|
| 919 |
+
attention_mask = attention_mask if (attention_mask is not None and 0 in attention_mask) else None
|
| 920 |
+
else:
|
| 921 |
+
if attention_mask is None:
|
| 922 |
+
attention_mask = torch.ones(
|
| 923 |
+
(batch_size, seq_length_with_past), dtype=torch.bool, device=inputs_embeds.device
|
| 924 |
+
)
|
| 925 |
+
attention_mask = self._prepare_decoder_attention_mask(
|
| 926 |
+
attention_mask, (batch_size, seq_length), inputs_embeds, past_key_values_length
|
| 927 |
+
)
|
| 928 |
+
|
| 929 |
+
# embed positions
|
| 930 |
+
hidden_states = inputs_embeds
|
| 931 |
+
|
| 932 |
+
if self.gradient_checkpointing and self.training:
|
| 933 |
+
if use_cache:
|
| 934 |
+
logger.warning_once(
|
| 935 |
+
'`use_cache=True` is incompatible with gradient checkpointing. Setting `use_cache=False`...'
|
| 936 |
+
)
|
| 937 |
+
use_cache = False
|
| 938 |
+
|
| 939 |
+
# decoder layers
|
| 940 |
+
all_hidden_states = () if output_hidden_states else None
|
| 941 |
+
all_self_attns = () if output_attentions else None
|
| 942 |
+
next_decoder_cache = () if use_cache else None
|
| 943 |
+
|
| 944 |
+
for idx, decoder_layer in enumerate(self.layers):
|
| 945 |
+
if output_hidden_states:
|
| 946 |
+
all_hidden_states += (hidden_states,)
|
| 947 |
+
|
| 948 |
+
past_key_value = past_key_values[idx] if past_key_values is not None else None
|
| 949 |
+
|
| 950 |
+
if self.gradient_checkpointing and self.training:
|
| 951 |
+
|
| 952 |
+
def create_custom_forward(module):
|
| 953 |
+
def custom_forward(*inputs):
|
| 954 |
+
# None for past_key_value
|
| 955 |
+
return module(*inputs, output_attentions, None)
|
| 956 |
+
|
| 957 |
+
return custom_forward
|
| 958 |
+
|
| 959 |
+
layer_outputs = torch.utils.checkpoint.checkpoint(
|
| 960 |
+
create_custom_forward(decoder_layer),
|
| 961 |
+
hidden_states,
|
| 962 |
+
attention_mask,
|
| 963 |
+
position_ids,
|
| 964 |
+
None,
|
| 965 |
+
)
|
| 966 |
+
else:
|
| 967 |
+
layer_outputs = decoder_layer(
|
| 968 |
+
hidden_states,
|
| 969 |
+
attention_mask=attention_mask,
|
| 970 |
+
position_ids=position_ids,
|
| 971 |
+
past_key_value=past_key_value,
|
| 972 |
+
output_attentions=output_attentions,
|
| 973 |
+
use_cache=use_cache,
|
| 974 |
+
)
|
| 975 |
+
|
| 976 |
+
hidden_states = layer_outputs[0]
|
| 977 |
+
|
| 978 |
+
if use_cache:
|
| 979 |
+
next_decoder_cache += (layer_outputs[2 if output_attentions else 1],)
|
| 980 |
+
|
| 981 |
+
if output_attentions:
|
| 982 |
+
all_self_attns += (layer_outputs[1],)
|
| 983 |
+
|
| 984 |
+
hidden_states = self.norm(hidden_states)
|
| 985 |
+
|
| 986 |
+
# add hidden states from the last decoder layer
|
| 987 |
+
if output_hidden_states:
|
| 988 |
+
all_hidden_states += (hidden_states,)
|
| 989 |
+
|
| 990 |
+
next_cache = next_decoder_cache if use_cache else None
|
| 991 |
+
if not return_dict:
|
| 992 |
+
return tuple(v for v in [hidden_states, next_cache, all_hidden_states, all_self_attns] if v is not None)
|
| 993 |
+
return BaseModelOutputWithPast(
|
| 994 |
+
last_hidden_state=hidden_states,
|
| 995 |
+
past_key_values=next_cache,
|
| 996 |
+
hidden_states=all_hidden_states,
|
| 997 |
+
attentions=all_self_attns,
|
| 998 |
+
)
|
| 999 |
+
|
| 1000 |
+
|
| 1001 |
+
# Modified from transformers.model.llama.modeling_llama.LlamaForCausalLM
|
| 1002 |
+
class InternLM2ForCausalLM(InternLM2PreTrainedModel):
|
| 1003 |
+
_auto_class = 'AutoModelForCausalLM'
|
| 1004 |
+
|
| 1005 |
+
_tied_weights_keys = ['output.weight']
|
| 1006 |
+
|
| 1007 |
+
def __init__(self, config):
|
| 1008 |
+
super().__init__(config)
|
| 1009 |
+
self.model = InternLM2Model(config)
|
| 1010 |
+
self.vocab_size = config.vocab_size
|
| 1011 |
+
self.output = nn.Linear(config.hidden_size, config.vocab_size, bias=False)
|
| 1012 |
+
|
| 1013 |
+
# Initialize weights and apply final processing
|
| 1014 |
+
self.post_init()
|
| 1015 |
+
|
| 1016 |
+
def get_input_embeddings(self):
|
| 1017 |
+
return self.model.tok_embeddings
|
| 1018 |
+
|
| 1019 |
+
def set_input_embeddings(self, value):
|
| 1020 |
+
self.model.tok_embeddings = value
|
| 1021 |
+
|
| 1022 |
+
def get_output_embeddings(self):
|
| 1023 |
+
return self.output
|
| 1024 |
+
|
| 1025 |
+
def set_output_embeddings(self, new_embeddings):
|
| 1026 |
+
self.output = new_embeddings
|
| 1027 |
+
|
| 1028 |
+
def set_decoder(self, decoder):
|
| 1029 |
+
self.model = decoder
|
| 1030 |
+
|
| 1031 |
+
def get_decoder(self):
|
| 1032 |
+
return self.model
|
| 1033 |
+
|
| 1034 |
+
@add_start_docstrings_to_model_forward(InternLM2_INPUTS_DOCSTRING)
|
| 1035 |
+
@replace_return_docstrings(output_type=CausalLMOutputWithPast, config_class=_CONFIG_FOR_DOC)
|
| 1036 |
+
def forward(
|
| 1037 |
+
self,
|
| 1038 |
+
input_ids: torch.LongTensor = None,
|
| 1039 |
+
attention_mask: Optional[torch.Tensor] = None,
|
| 1040 |
+
position_ids: Optional[torch.LongTensor] = None,
|
| 1041 |
+
past_key_values: Optional[List[torch.FloatTensor]] = None,
|
| 1042 |
+
inputs_embeds: Optional[torch.FloatTensor] = None,
|
| 1043 |
+
labels: Optional[torch.LongTensor] = None,
|
| 1044 |
+
use_cache: Optional[bool] = None,
|
| 1045 |
+
output_attentions: Optional[bool] = None,
|
| 1046 |
+
output_hidden_states: Optional[bool] = None,
|
| 1047 |
+
return_dict: Optional[bool] = None,
|
| 1048 |
+
) -> Union[Tuple, CausalLMOutputWithPast]:
|
| 1049 |
+
r"""
|
| 1050 |
+
Args:
|
| 1051 |
+
labels (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
|
| 1052 |
+
Labels for computing the masked language modeling loss. Indices should either be in `[0, ...,
|
| 1053 |
+
config.vocab_size]` or -100 (see `input_ids` docstring). Tokens with indices set to `-100` are ignored
|
| 1054 |
+
(masked), the loss is only computed for the tokens with labels in `[0, ..., config.vocab_size]`.
|
| 1055 |
+
|
| 1056 |
+
Returns:
|
| 1057 |
+
|
| 1058 |
+
Example:
|
| 1059 |
+
|
| 1060 |
+
```python
|
| 1061 |
+
>>> from transformers import AutoTokenizer, InternLM2ForCausalLM
|
| 1062 |
+
|
| 1063 |
+
>>> model = InternLM2ForCausalLM.from_pretrained(PATH_TO_CONVERTED_WEIGHTS)
|
| 1064 |
+
>>> tokenizer = AutoTokenizer.from_pretrained(PATH_TO_CONVERTED_TOKENIZER)
|
| 1065 |
+
|
| 1066 |
+
>>> prompt = "Hey, are you conscious? Can you talk to me?"
|
| 1067 |
+
>>> inputs = tokenizer(prompt, return_tensors="pt")
|
| 1068 |
+
|
| 1069 |
+
>>> # Generate
|
| 1070 |
+
>>> generate_ids = model.generate(inputs.input_ids, max_length=30)
|
| 1071 |
+
>>> tokenizer.batch_decode(generate_ids, skip_special_tokens=True, clean_up_tokenization_spaces=False)[0]
|
| 1072 |
+
"Hey, are you conscious? Can you talk to me?\nI'm not conscious, but I can talk to you."
|
| 1073 |
+
```"""
|
| 1074 |
+
|
| 1075 |
+
output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions
|
| 1076 |
+
output_hidden_states = (
|
| 1077 |
+
output_hidden_states if output_hidden_states is not None else self.config.output_hidden_states
|
| 1078 |
+
)
|
| 1079 |
+
return_dict = return_dict if return_dict is not None else self.config.use_return_dict
|
| 1080 |
+
|
| 1081 |
+
# decoder outputs consists of (dec_features, layer_state, dec_hidden, dec_attn)
|
| 1082 |
+
outputs = self.model(
|
| 1083 |
+
input_ids=input_ids,
|
| 1084 |
+
attention_mask=attention_mask,
|
| 1085 |
+
position_ids=position_ids,
|
| 1086 |
+
past_key_values=past_key_values,
|
| 1087 |
+
inputs_embeds=inputs_embeds,
|
| 1088 |
+
use_cache=use_cache,
|
| 1089 |
+
output_attentions=output_attentions,
|
| 1090 |
+
output_hidden_states=output_hidden_states,
|
| 1091 |
+
return_dict=return_dict,
|
| 1092 |
+
)
|
| 1093 |
+
|
| 1094 |
+
hidden_states = outputs[0]
|
| 1095 |
+
logits = self.output(hidden_states)
|
| 1096 |
+
logits = logits.float()
|
| 1097 |
+
|
| 1098 |
+
loss = None
|
| 1099 |
+
if labels is not None:
|
| 1100 |
+
# Shift so that tokens < n predict n
|
| 1101 |
+
shift_logits = logits[..., :-1, :].contiguous()
|
| 1102 |
+
shift_labels = labels[..., 1:].contiguous()
|
| 1103 |
+
# Flatten the tokens
|
| 1104 |
+
loss_fct = CrossEntropyLoss()
|
| 1105 |
+
shift_logits = shift_logits.view(-1, self.config.vocab_size)
|
| 1106 |
+
shift_labels = shift_labels.view(-1)
|
| 1107 |
+
# Enable model parallelism
|
| 1108 |
+
shift_labels = shift_labels.to(shift_logits.device)
|
| 1109 |
+
loss = loss_fct(shift_logits, shift_labels)
|
| 1110 |
+
|
| 1111 |
+
if not return_dict:
|
| 1112 |
+
output = (logits,) + outputs[1:]
|
| 1113 |
+
return (loss,) + output if loss is not None else output
|
| 1114 |
+
|
| 1115 |
+
device = input_ids.device if input_ids is not None else inputs_embeds.device
|
| 1116 |
+
output = CausalLMOutputWithPast(
|
| 1117 |
+
loss=loss,
|
| 1118 |
+
logits=logits,
|
| 1119 |
+
past_key_values=outputs.past_key_values,
|
| 1120 |
+
hidden_states=outputs.hidden_states,
|
| 1121 |
+
attentions=outputs.attentions,
|
| 1122 |
+
)
|
| 1123 |
+
output['logits'] = output['logits'].to(device)
|
| 1124 |
+
return output
|
| 1125 |
+
|
| 1126 |
+
def prepare_inputs_for_generation(
|
| 1127 |
+
self, input_ids, past_key_values=None, attention_mask=None, inputs_embeds=None, **kwargs
|
| 1128 |
+
):
|
| 1129 |
+
if past_key_values is not None:
|
| 1130 |
+
past_length = past_key_values[0][0].shape[2]
|
| 1131 |
+
|
| 1132 |
+
# Some generation methods already pass only the last input ID
|
| 1133 |
+
if input_ids.shape[1] > past_length:
|
| 1134 |
+
remove_prefix_length = past_length
|
| 1135 |
+
else:
|
| 1136 |
+
# Default to old behavior: keep only final ID
|
| 1137 |
+
remove_prefix_length = input_ids.shape[1] - 1
|
| 1138 |
+
|
| 1139 |
+
input_ids = input_ids[:, remove_prefix_length:]
|
| 1140 |
+
|
| 1141 |
+
position_ids = kwargs.get('position_ids', None)
|
| 1142 |
+
if attention_mask is not None and position_ids is None:
|
| 1143 |
+
# create position_ids on the fly for batch generation
|
| 1144 |
+
position_ids = attention_mask.long().cumsum(-1) - 1
|
| 1145 |
+
position_ids.masked_fill_(attention_mask == 0, 1)
|
| 1146 |
+
if past_key_values:
|
| 1147 |
+
position_ids = position_ids[:, -input_ids.shape[1]:]
|
| 1148 |
+
|
| 1149 |
+
# if `inputs_embeds` are passed, we only want to use them in the 1st generation step
|
| 1150 |
+
if inputs_embeds is not None and past_key_values is None:
|
| 1151 |
+
model_inputs = {'inputs_embeds': inputs_embeds}
|
| 1152 |
+
else:
|
| 1153 |
+
model_inputs = {'input_ids': input_ids}
|
| 1154 |
+
|
| 1155 |
+
model_inputs.update(
|
| 1156 |
+
{
|
| 1157 |
+
'position_ids': position_ids,
|
| 1158 |
+
'past_key_values': past_key_values,
|
| 1159 |
+
'use_cache': kwargs.get('use_cache'),
|
| 1160 |
+
'attention_mask': attention_mask,
|
| 1161 |
+
}
|
| 1162 |
+
)
|
| 1163 |
+
return model_inputs
|
| 1164 |
+
|
| 1165 |
+
@staticmethod
|
| 1166 |
+
def _reorder_cache(past_key_values, beam_idx):
|
| 1167 |
+
reordered_past = ()
|
| 1168 |
+
for layer_past in past_key_values:
|
| 1169 |
+
reordered_past += (
|
| 1170 |
+
tuple(past_state.index_select(0, beam_idx.to(past_state.device)) for past_state in layer_past),
|
| 1171 |
+
)
|
| 1172 |
+
return reordered_past
|
| 1173 |
+
|
| 1174 |
+
def build_inputs(self, tokenizer, query: str, history: List[Tuple[str, str]] = [], meta_instruction=''):
|
| 1175 |
+
if tokenizer.add_bos_token:
|
| 1176 |
+
prompt = ''
|
| 1177 |
+
else:
|
| 1178 |
+
prompt = tokenizer.bos_token
|
| 1179 |
+
if meta_instruction:
|
| 1180 |
+
prompt += f"""<|im_start|>system\n{meta_instruction}<|im_end|>\n"""
|
| 1181 |
+
for record in history:
|
| 1182 |
+
prompt += f"""<|im_start|>user\n{record[0]}<|im_end|>\n<|im_start|>assistant\n{record[1]}<|im_end|>\n"""
|
| 1183 |
+
prompt += f"""<|im_start|>user\n{query}<|im_end|>\n<|im_start|>assistant\n"""
|
| 1184 |
+
return tokenizer([prompt], return_tensors='pt')
|
| 1185 |
+
|
| 1186 |
+
@torch.no_grad()
|
| 1187 |
+
def chat(
|
| 1188 |
+
self,
|
| 1189 |
+
tokenizer,
|
| 1190 |
+
query: str,
|
| 1191 |
+
history: List[Tuple[str, str]] = [],
|
| 1192 |
+
streamer: Optional[BaseStreamer] = None,
|
| 1193 |
+
max_new_tokens: int = 1024,
|
| 1194 |
+
do_sample: bool = True,
|
| 1195 |
+
temperature: float = 0.8,
|
| 1196 |
+
top_p: float = 0.8,
|
| 1197 |
+
meta_instruction: str = 'You are an AI assistant whose name is InternLM (书生·浦语).\n'
|
| 1198 |
+
'- InternLM (书生·浦语) is a conversational language model that is developed by Shanghai AI Laboratory (上海人工智能实验室). It is designed to be helpful, honest, and harmless.\n'
|
| 1199 |
+
'- InternLM (书生·浦语) can understand and communicate fluently in the language chosen by the user such as English and 中文.',
|
| 1200 |
+
**kwargs,
|
| 1201 |
+
):
|
| 1202 |
+
inputs = self.build_inputs(tokenizer, query, history, meta_instruction)
|
| 1203 |
+
inputs = {k: v.to(self.device) for k, v in inputs.items() if torch.is_tensor(v)}
|
| 1204 |
+
# also add end-of-assistant token in eos token id to avoid unnecessary generation
|
| 1205 |
+
eos_token_id = [tokenizer.eos_token_id, tokenizer.convert_tokens_to_ids(['<|im_end|>'])[0]]
|
| 1206 |
+
outputs = self.generate(
|
| 1207 |
+
**inputs,
|
| 1208 |
+
streamer=streamer,
|
| 1209 |
+
max_new_tokens=max_new_tokens,
|
| 1210 |
+
do_sample=do_sample,
|
| 1211 |
+
temperature=temperature,
|
| 1212 |
+
top_p=top_p,
|
| 1213 |
+
eos_token_id=eos_token_id,
|
| 1214 |
+
**kwargs,
|
| 1215 |
+
)
|
| 1216 |
+
outputs = outputs[0].cpu().tolist()[len(inputs['input_ids'][0]):]
|
| 1217 |
+
response = tokenizer.decode(outputs, skip_special_tokens=True)
|
| 1218 |
+
response = response.split('<|im_end|>')[0]
|
| 1219 |
+
history = history + [(query, response)]
|
| 1220 |
+
return response, history
|
| 1221 |
+
|
| 1222 |
+
@torch.no_grad()
|
| 1223 |
+
def stream_chat(
|
| 1224 |
+
self,
|
| 1225 |
+
tokenizer,
|
| 1226 |
+
query: str,
|
| 1227 |
+
history: List[Tuple[str, str]] = [],
|
| 1228 |
+
max_new_tokens: int = 1024,
|
| 1229 |
+
do_sample: bool = True,
|
| 1230 |
+
temperature: float = 0.8,
|
| 1231 |
+
top_p: float = 0.8,
|
| 1232 |
+
**kwargs,
|
| 1233 |
+
):
|
| 1234 |
+
"""
|
| 1235 |
+
Return a generator in format: (response, history)
|
| 1236 |
+
Eg.
|
| 1237 |
+
('你好,有什么可以帮助您的吗', [('你好', '你好,有什么可以帮助您的吗')])
|
| 1238 |
+
('你好,有什么可以帮助您的吗?', [('你好', '你好,有什么可以帮助您的吗?')])
|
| 1239 |
+
"""
|
| 1240 |
+
if BaseStreamer is None:
|
| 1241 |
+
raise ModuleNotFoundError(
|
| 1242 |
+
'The version of `transformers` is too low. Please make sure '
|
| 1243 |
+
'that you have installed `transformers>=4.28.0`.'
|
| 1244 |
+
)
|
| 1245 |
+
|
| 1246 |
+
response_queue = queue.Queue(maxsize=20)
|
| 1247 |
+
|
| 1248 |
+
class ChatStreamer(BaseStreamer):
|
| 1249 |
+
def __init__(self, tokenizer) -> None:
|
| 1250 |
+
super().__init__()
|
| 1251 |
+
self.tokenizer = tokenizer
|
| 1252 |
+
self.queue = response_queue
|
| 1253 |
+
self.query = query
|
| 1254 |
+
self.history = history
|
| 1255 |
+
self.response = ''
|
| 1256 |
+
self.cache = []
|
| 1257 |
+
self.received_inputs = False
|
| 1258 |
+
self.queue.put((self.response, history + [(self.query, self.response)]))
|
| 1259 |
+
|
| 1260 |
+
def put(self, value):
|
| 1261 |
+
if len(value.shape) > 1 and value.shape[0] > 1:
|
| 1262 |
+
raise ValueError('ChatStreamer only supports batch size 1')
|
| 1263 |
+
elif len(value.shape) > 1:
|
| 1264 |
+
value = value[0]
|
| 1265 |
+
|
| 1266 |
+
if not self.received_inputs:
|
| 1267 |
+
# The first received value is input_ids, ignore here
|
| 1268 |
+
self.received_inputs = True
|
| 1269 |
+
return
|
| 1270 |
+
|
| 1271 |
+
self.cache.extend(value.tolist())
|
| 1272 |
+
token = self.tokenizer.decode(self.cache, skip_special_tokens=True)
|
| 1273 |
+
if token.strip() != '<|im_end|>':
|
| 1274 |
+
self.response = self.response + token
|
| 1275 |
+
history = self.history + [(self.query, self.response)]
|
| 1276 |
+
self.queue.put((self.response, history))
|
| 1277 |
+
self.cache = []
|
| 1278 |
+
else:
|
| 1279 |
+
self.end()
|
| 1280 |
+
|
| 1281 |
+
def end(self):
|
| 1282 |
+
self.queue.put(None)
|
| 1283 |
+
|
| 1284 |
+
def stream_producer():
|
| 1285 |
+
return self.chat(
|
| 1286 |
+
tokenizer=tokenizer,
|
| 1287 |
+
query=query,
|
| 1288 |
+
streamer=ChatStreamer(tokenizer=tokenizer),
|
| 1289 |
+
history=history,
|
| 1290 |
+
max_new_tokens=max_new_tokens,
|
| 1291 |
+
do_sample=do_sample,
|
| 1292 |
+
temperature=temperature,
|
| 1293 |
+
top_p=top_p,
|
| 1294 |
+
**kwargs,
|
| 1295 |
+
)
|
| 1296 |
+
|
| 1297 |
+
def consumer():
|
| 1298 |
+
producer = threading.Thread(target=stream_producer)
|
| 1299 |
+
producer.start()
|
| 1300 |
+
while True:
|
| 1301 |
+
res = response_queue.get()
|
| 1302 |
+
if res is None:
|
| 1303 |
+
return
|
| 1304 |
+
yield res
|
| 1305 |
+
|
| 1306 |
+
return consumer()
|
| 1307 |
+
|
| 1308 |
+
|
| 1309 |
+
# Copied from transformers.model.llama.modeling_llama.LlamaForSequenceClassification with Llama->InternLM2
|
| 1310 |
+
@add_start_docstrings(
|
| 1311 |
+
"""
|
| 1312 |
+
The InternLM2 Model transformer with a sequence classification head on top (linear layer).
|
| 1313 |
+
|
| 1314 |
+
[`InternLM2ForSequenceClassification`] uses the last token in order to do the classification,
|
| 1315 |
+
as other causal models (e.g. GPT-2) do.
|
| 1316 |
+
|
| 1317 |
+
Since it does classification on the last token, it requires to know the position of the last token. If a
|
| 1318 |
+
`pad_token_id` is defined in the configuration, it finds the last token that is not a padding token in each row. If
|
| 1319 |
+
no `pad_token_id` is defined, it simply takes the last value in each row of the batch. Since it cannot guess the
|
| 1320 |
+
padding tokens when `inputs_embeds` are passed instead of `input_ids`, it does the same (take the last value in
|
| 1321 |
+
each row of the batch).
|
| 1322 |
+
""",
|
| 1323 |
+
InternLM2_START_DOCSTRING,
|
| 1324 |
+
)
|
| 1325 |
+
class InternLM2ForSequenceClassification(InternLM2PreTrainedModel):
|
| 1326 |
+
def __init__(self, config):
|
| 1327 |
+
super().__init__(config)
|
| 1328 |
+
self.num_labels = config.num_labels
|
| 1329 |
+
self.model = InternLM2Model(config)
|
| 1330 |
+
self.score = nn.Linear(config.hidden_size, self.num_labels, bias=False)
|
| 1331 |
+
|
| 1332 |
+
# Initialize weights and apply final processing
|
| 1333 |
+
self.post_init()
|
| 1334 |
+
|
| 1335 |
+
def get_input_embeddings(self):
|
| 1336 |
+
return self.model.tok_embeddings
|
| 1337 |
+
|
| 1338 |
+
def set_input_embeddings(self, value):
|
| 1339 |
+
self.model.tok_embeddings = value
|
| 1340 |
+
|
| 1341 |
+
@add_start_docstrings_to_model_forward(InternLM2_INPUTS_DOCSTRING)
|
| 1342 |
+
def forward(
|
| 1343 |
+
self,
|
| 1344 |
+
input_ids: torch.LongTensor = None,
|
| 1345 |
+
attention_mask: Optional[torch.Tensor] = None,
|
| 1346 |
+
position_ids: Optional[torch.LongTensor] = None,
|
| 1347 |
+
past_key_values: Optional[List[torch.FloatTensor]] = None,
|
| 1348 |
+
inputs_embeds: Optional[torch.FloatTensor] = None,
|
| 1349 |
+
labels: Optional[torch.LongTensor] = None,
|
| 1350 |
+
use_cache: Optional[bool] = None,
|
| 1351 |
+
output_attentions: Optional[bool] = None,
|
| 1352 |
+
output_hidden_states: Optional[bool] = None,
|
| 1353 |
+
return_dict: Optional[bool] = None,
|
| 1354 |
+
) -> Union[Tuple, SequenceClassifierOutputWithPast]:
|
| 1355 |
+
r"""
|
| 1356 |
+
labels (`torch.LongTensor` of shape `(batch_size,)`, *optional*):
|
| 1357 |
+
Labels for computing the sequence classification/regression loss. Indices should be in `[0, ...,
|
| 1358 |
+
config.num_labels - 1]`. If `config.num_labels == 1` a regression loss is computed (Mean-Square loss), If
|
| 1359 |
+
`config.num_labels > 1` a classification loss is computed (Cross-Entropy).
|
| 1360 |
+
"""
|
| 1361 |
+
return_dict = return_dict if return_dict is not None else self.config.use_return_dict
|
| 1362 |
+
|
| 1363 |
+
transformer_outputs = self.model(
|
| 1364 |
+
input_ids,
|
| 1365 |
+
attention_mask=attention_mask,
|
| 1366 |
+
position_ids=position_ids,
|
| 1367 |
+
past_key_values=past_key_values,
|
| 1368 |
+
inputs_embeds=inputs_embeds,
|
| 1369 |
+
use_cache=use_cache,
|
| 1370 |
+
output_attentions=output_attentions,
|
| 1371 |
+
output_hidden_states=output_hidden_states,
|
| 1372 |
+
return_dict=return_dict,
|
| 1373 |
+
)
|
| 1374 |
+
hidden_states = transformer_outputs[0]
|
| 1375 |
+
logits = self.score(hidden_states)
|
| 1376 |
+
|
| 1377 |
+
if input_ids is not None:
|
| 1378 |
+
batch_size = input_ids.shape[0]
|
| 1379 |
+
else:
|
| 1380 |
+
batch_size = inputs_embeds.shape[0]
|
| 1381 |
+
|
| 1382 |
+
if self.config.pad_token_id is None and batch_size != 1:
|
| 1383 |
+
raise ValueError('Cannot handle batch sizes > 1 if no padding token is defined.')
|
| 1384 |
+
if self.config.pad_token_id is None:
|
| 1385 |
+
sequence_lengths = -1
|
| 1386 |
+
else:
|
| 1387 |
+
if input_ids is not None:
|
| 1388 |
+
sequence_lengths = (torch.eq(input_ids, self.config.pad_token_id).int().argmax(-1) - 1).to(
|
| 1389 |
+
logits.device
|
| 1390 |
+
)
|
| 1391 |
+
else:
|
| 1392 |
+
sequence_lengths = -1
|
| 1393 |
+
|
| 1394 |
+
pooled_logits = logits[torch.arange(batch_size, device=logits.device), sequence_lengths]
|
| 1395 |
+
|
| 1396 |
+
loss = None
|
| 1397 |
+
if labels is not None:
|
| 1398 |
+
labels = labels.to(logits.device)
|
| 1399 |
+
if self.config.problem_type is None:
|
| 1400 |
+
if self.num_labels == 1:
|
| 1401 |
+
self.config.problem_type = 'regression'
|
| 1402 |
+
elif self.num_labels > 1 and (labels.dtype == torch.long or labels.dtype == torch.int):
|
| 1403 |
+
self.config.problem_type = 'single_label_classification'
|
| 1404 |
+
else:
|
| 1405 |
+
self.config.problem_type = 'multi_label_classification'
|
| 1406 |
+
|
| 1407 |
+
if self.config.problem_type == 'regression':
|
| 1408 |
+
loss_fct = MSELoss()
|
| 1409 |
+
if self.num_labels == 1:
|
| 1410 |
+
loss = loss_fct(pooled_logits.squeeze(), labels.squeeze())
|
| 1411 |
+
else:
|
| 1412 |
+
loss = loss_fct(pooled_logits, labels)
|
| 1413 |
+
elif self.config.problem_type == 'single_label_classification':
|
| 1414 |
+
loss_fct = CrossEntropyLoss()
|
| 1415 |
+
loss = loss_fct(pooled_logits.view(-1, self.num_labels), labels.view(-1))
|
| 1416 |
+
elif self.config.problem_type == 'multi_label_classification':
|
| 1417 |
+
loss_fct = BCEWithLogitsLoss()
|
| 1418 |
+
loss = loss_fct(pooled_logits, labels)
|
| 1419 |
+
if not return_dict:
|
| 1420 |
+
output = (pooled_logits,) + transformer_outputs[1:]
|
| 1421 |
+
return ((loss,) + output) if loss is not None else output
|
| 1422 |
+
|
| 1423 |
+
return SequenceClassifierOutputWithPast(
|
| 1424 |
+
loss=loss,
|
| 1425 |
+
logits=pooled_logits,
|
| 1426 |
+
past_key_values=transformer_outputs.past_key_values,
|
| 1427 |
+
hidden_states=transformer_outputs.hidden_states,
|
| 1428 |
+
attentions=transformer_outputs.attentions,
|
| 1429 |
+
)
|
eneas/vendor/SeC/inference/modeling_phi3.py
ADDED
|
@@ -0,0 +1,1610 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Copyright 2024 Microsoft and the HuggingFace Inc. team. All rights reserved.
|
| 2 |
+
#
|
| 3 |
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
| 4 |
+
# you may not use this file except in compliance with the License.
|
| 5 |
+
# You may obtain a copy of the License at
|
| 6 |
+
#
|
| 7 |
+
# http://www.apache.org/licenses/LICENSE-2.0
|
| 8 |
+
#
|
| 9 |
+
# Unless required by applicable law or agreed to in writing, software
|
| 10 |
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
| 11 |
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 12 |
+
# See the License for the specific language governing permissions and
|
| 13 |
+
# limitations under the License.
|
| 14 |
+
|
| 15 |
+
""" PyTorch Phi-3 model."""
|
| 16 |
+
|
| 17 |
+
import inspect
|
| 18 |
+
import math
|
| 19 |
+
import warnings
|
| 20 |
+
from typing import List, Optional, Tuple, Union
|
| 21 |
+
|
| 22 |
+
import torch
|
| 23 |
+
import torch.nn.functional as F
|
| 24 |
+
import torch.utils.checkpoint
|
| 25 |
+
from torch import nn
|
| 26 |
+
from torch.nn import BCEWithLogitsLoss, CrossEntropyLoss, MSELoss
|
| 27 |
+
from transformers.activations import ACT2FN
|
| 28 |
+
from transformers.cache_utils import Cache, DynamicCache
|
| 29 |
+
from transformers.modeling_attn_mask_utils import \
|
| 30 |
+
_prepare_4d_causal_attention_mask
|
| 31 |
+
from transformers.modeling_outputs import (BaseModelOutputWithPast,
|
| 32 |
+
CausalLMOutputWithPast,
|
| 33 |
+
SequenceClassifierOutputWithPast,
|
| 34 |
+
TokenClassifierOutput)
|
| 35 |
+
from transformers.modeling_utils import PreTrainedModel
|
| 36 |
+
from transformers.utils import (add_code_sample_docstrings,
|
| 37 |
+
add_start_docstrings,
|
| 38 |
+
add_start_docstrings_to_model_forward,
|
| 39 |
+
is_flash_attn_2_available,
|
| 40 |
+
is_flash_attn_greater_or_equal_2_10, logging,
|
| 41 |
+
replace_return_docstrings)
|
| 42 |
+
|
| 43 |
+
from .configuration_phi3 import Phi3Config
|
| 44 |
+
|
| 45 |
+
logger = logging.get_logger(__name__)
|
| 46 |
+
|
| 47 |
+
# Transformers scans dependencies in the modeling file, causing issues on conditional loading. The regex only ignores try/catch blocks, but not if statements
|
| 48 |
+
# if is_flash_attn_2_available():
|
| 49 |
+
_flash_supports_window_size = False
|
| 50 |
+
try:
|
| 51 |
+
from flash_attn import flash_attn_func, flash_attn_varlen_func
|
| 52 |
+
from flash_attn.bert_padding import (index_first_axis, pad_input, # noqa
|
| 53 |
+
unpad_input)
|
| 54 |
+
|
| 55 |
+
_flash_supports_window_size = 'window_size' in list(inspect.signature(flash_attn_func).parameters)
|
| 56 |
+
has_flash_attn = True
|
| 57 |
+
except ImportError as error:
|
| 58 |
+
logger.warning(
|
| 59 |
+
f'`flash-attention` package not found, consider installing for better performance: {error}.'
|
| 60 |
+
)
|
| 61 |
+
if not _flash_supports_window_size:
|
| 62 |
+
logger.warning(
|
| 63 |
+
"Current `flash-attenton` does not support `window_size`. Either upgrade or use `attn_implementation='eager'`."
|
| 64 |
+
)
|
| 65 |
+
has_flash_attn = False
|
| 66 |
+
|
| 67 |
+
_CHECKPOINT_FOR_DOC = 'microsoft/Phi-3-mini-4k-instruct'
|
| 68 |
+
_CONFIG_FOR_DOC = 'Phi3Config'
|
| 69 |
+
|
| 70 |
+
PHI3_PRETRAINED_MODEL_ARCHIVE_LIST = [
|
| 71 |
+
'microsoft/Phi-3-mini-4k-instruct',
|
| 72 |
+
'microsoft/Phi-3-mini-128k-instruct',
|
| 73 |
+
# See all Phi-3 models at https://huggingface.co/models?filter=Phi-3
|
| 74 |
+
]
|
| 75 |
+
|
| 76 |
+
|
| 77 |
+
# Copied from transformers.models.llama.modeling_llama.LlamaRMSNorm with Llama->Phi3
|
| 78 |
+
class Phi3RMSNorm(nn.Module):
|
| 79 |
+
def __init__(self, hidden_size, eps=1e-6):
|
| 80 |
+
"""
|
| 81 |
+
Phi3RMSNorm is equivalent to T5LayerNorm
|
| 82 |
+
"""
|
| 83 |
+
super().__init__()
|
| 84 |
+
self.weight = nn.Parameter(torch.ones(hidden_size))
|
| 85 |
+
self.variance_epsilon = eps
|
| 86 |
+
|
| 87 |
+
def forward(self, hidden_states):
|
| 88 |
+
input_dtype = hidden_states.dtype
|
| 89 |
+
hidden_states = hidden_states.to(torch.float32)
|
| 90 |
+
variance = hidden_states.pow(2).mean(-1, keepdim=True)
|
| 91 |
+
hidden_states = hidden_states * torch.rsqrt(variance + self.variance_epsilon)
|
| 92 |
+
return self.weight * hidden_states.to(input_dtype)
|
| 93 |
+
|
| 94 |
+
|
| 95 |
+
# Copied from transformers.models.llama.modeling_llama._get_unpad_data
|
| 96 |
+
def _get_unpad_data(attention_mask):
|
| 97 |
+
seqlens_in_batch = attention_mask.sum(dim=-1, dtype=torch.int32)
|
| 98 |
+
indices = torch.nonzero(attention_mask.flatten(), as_tuple=False).flatten()
|
| 99 |
+
max_seqlen_in_batch = seqlens_in_batch.max().item()
|
| 100 |
+
cu_seqlens = F.pad(torch.cumsum(seqlens_in_batch, dim=0, dtype=torch.int32), (1, 0))
|
| 101 |
+
return (
|
| 102 |
+
indices,
|
| 103 |
+
cu_seqlens,
|
| 104 |
+
max_seqlen_in_batch,
|
| 105 |
+
)
|
| 106 |
+
|
| 107 |
+
|
| 108 |
+
# Copied from transformers.models.gemma.modeling_gemma.GemmaRotaryEmbedding with gemma->phi3, Gemma->Phi3
|
| 109 |
+
class Phi3RotaryEmbedding(nn.Module):
|
| 110 |
+
def __init__(self, dim, max_position_embeddings=2048, base=10000, device=None):
|
| 111 |
+
super().__init__()
|
| 112 |
+
|
| 113 |
+
self.dim = dim
|
| 114 |
+
self.max_position_embeddings = max_position_embeddings
|
| 115 |
+
self.base = base
|
| 116 |
+
self.register_buffer('inv_freq', None, persistent=False)
|
| 117 |
+
|
| 118 |
+
@torch.no_grad()
|
| 119 |
+
def forward(self, x, position_ids, seq_len=None):
|
| 120 |
+
# x: [bs, num_attention_heads, seq_len, head_size]
|
| 121 |
+
if self.inv_freq is None:
|
| 122 |
+
self.inv_freq = 1.0 / (
|
| 123 |
+
self.base ** (torch.arange(0, self.dim, 2, dtype=torch.int64, device=x.device).float() / self.dim)
|
| 124 |
+
)
|
| 125 |
+
inv_freq_expanded = self.inv_freq[None, :, None].float().expand(position_ids.shape[0], -1, 1)
|
| 126 |
+
position_ids_expanded = position_ids[:, None, :].float()
|
| 127 |
+
# Force float32 since bfloat16 loses precision on long contexts
|
| 128 |
+
# See https://github.com/huggingface/transformers/pull/29285
|
| 129 |
+
device_type = x.device.type
|
| 130 |
+
device_type = device_type if isinstance(device_type, str) and device_type != 'mps' else 'cpu'
|
| 131 |
+
with torch.autocast(device_type=device_type, enabled=False):
|
| 132 |
+
freqs = (inv_freq_expanded.float() @ position_ids_expanded.float()).transpose(1, 2)
|
| 133 |
+
emb = torch.cat((freqs, freqs), dim=-1)
|
| 134 |
+
cos = emb.cos()
|
| 135 |
+
sin = emb.sin()
|
| 136 |
+
return cos.to(dtype=x.dtype), sin.to(dtype=x.dtype)
|
| 137 |
+
|
| 138 |
+
|
| 139 |
+
class Phi3SuScaledRotaryEmbedding(Phi3RotaryEmbedding):
|
| 140 |
+
def __init__(self, dim, config, device=None):
|
| 141 |
+
super().__init__(dim, config.max_position_embeddings, config.rope_theta, device)
|
| 142 |
+
|
| 143 |
+
self.short_factor = config.rope_scaling['short_factor']
|
| 144 |
+
self.long_factor = config.rope_scaling['long_factor']
|
| 145 |
+
self.original_max_position_embeddings = config.original_max_position_embeddings
|
| 146 |
+
|
| 147 |
+
@torch.no_grad()
|
| 148 |
+
def forward(self, x, position_ids, seq_len=None):
|
| 149 |
+
seq_len = torch.max(position_ids) + 1
|
| 150 |
+
if seq_len > self.original_max_position_embeddings:
|
| 151 |
+
ext_factors = torch.tensor(self.long_factor, dtype=torch.float32, device=x.device)
|
| 152 |
+
else:
|
| 153 |
+
ext_factors = torch.tensor(self.short_factor, dtype=torch.float32, device=x.device)
|
| 154 |
+
|
| 155 |
+
inv_freq_shape = torch.arange(0, self.dim, 2, dtype=torch.int64, device=x.device).float() / self.dim
|
| 156 |
+
self.inv_freq = 1.0 / (ext_factors * self.base**inv_freq_shape)
|
| 157 |
+
|
| 158 |
+
inv_freq_expanded = self.inv_freq[None, :, None].float().expand(position_ids.shape[0], -1, 1)
|
| 159 |
+
position_ids_expanded = position_ids[:, None, :].float()
|
| 160 |
+
|
| 161 |
+
# Force float32 since bfloat16 loses precision on long contexts
|
| 162 |
+
# See https://github.com/huggingface/transformers/pull/29285
|
| 163 |
+
device_type = x.device.type
|
| 164 |
+
device_type = device_type if isinstance(device_type, str) and device_type != 'mps' else 'cpu'
|
| 165 |
+
with torch.autocast(device_type=device_type, enabled=False):
|
| 166 |
+
freqs = (inv_freq_expanded.float() @ position_ids_expanded.float()).transpose(1, 2)
|
| 167 |
+
emb = torch.cat((freqs, freqs), dim=-1)
|
| 168 |
+
|
| 169 |
+
scale = self.max_position_embeddings / self.original_max_position_embeddings
|
| 170 |
+
if scale <= 1.0:
|
| 171 |
+
scaling_factor = 1.0
|
| 172 |
+
else:
|
| 173 |
+
scaling_factor = math.sqrt(1 + math.log(scale) / math.log(self.original_max_position_embeddings))
|
| 174 |
+
|
| 175 |
+
cos = emb.cos() * scaling_factor
|
| 176 |
+
sin = emb.sin() * scaling_factor
|
| 177 |
+
return cos.to(dtype=x.dtype), sin.to(dtype=x.dtype)
|
| 178 |
+
|
| 179 |
+
|
| 180 |
+
class Phi3YarnScaledRotaryEmbedding(Phi3RotaryEmbedding):
|
| 181 |
+
def __init__(self, dim, config, device=None):
|
| 182 |
+
super().__init__(dim, config.max_position_embeddings, config.rope_theta, device)
|
| 183 |
+
|
| 184 |
+
self.short_factor = config.rope_scaling['short_factor']
|
| 185 |
+
self.long_factor = config.rope_scaling['long_factor']
|
| 186 |
+
self.original_max_position_embeddings = config.original_max_position_embeddings
|
| 187 |
+
|
| 188 |
+
@torch.no_grad()
|
| 189 |
+
def forward(self, x, position_ids, seq_len=None):
|
| 190 |
+
seq_len = torch.max(position_ids) + 1
|
| 191 |
+
if seq_len > self.original_max_position_embeddings:
|
| 192 |
+
ext_factors = torch.tensor(self.long_factor, dtype=torch.float32, device=x.device)
|
| 193 |
+
else:
|
| 194 |
+
ext_factors = torch.tensor(self.short_factor, dtype=torch.float32, device=x.device)
|
| 195 |
+
|
| 196 |
+
inv_freq_shape = torch.arange(0, self.dim, 2, dtype=torch.int64, device=x.device).float() / self.dim
|
| 197 |
+
self.inv_freq = 1.0 / (ext_factors * self.base**inv_freq_shape)
|
| 198 |
+
|
| 199 |
+
inv_freq_expanded = self.inv_freq[None, :, None].float().expand(position_ids.shape[0], -1, 1)
|
| 200 |
+
position_ids_expanded = position_ids[:, None, :].float()
|
| 201 |
+
|
| 202 |
+
# Force float32 since bfloat16 loses precision on long contexts
|
| 203 |
+
# See https://github.com/huggingface/transformers/pull/29285
|
| 204 |
+
device_type = x.device.type
|
| 205 |
+
device_type = device_type if isinstance(device_type, str) and device_type != 'mps' else 'cpu'
|
| 206 |
+
with torch.autocast(device_type=device_type, enabled=False):
|
| 207 |
+
freqs = (inv_freq_expanded.float() @ position_ids_expanded.float()).transpose(1, 2)
|
| 208 |
+
emb = torch.cat((freqs, freqs), dim=-1)
|
| 209 |
+
|
| 210 |
+
scale = self.max_position_embeddings / self.original_max_position_embeddings
|
| 211 |
+
if scale <= 1.0:
|
| 212 |
+
scaling_factor = 1.0
|
| 213 |
+
else:
|
| 214 |
+
scaling_factor = 0.1 * math.log(scale) + 1.0
|
| 215 |
+
|
| 216 |
+
cos = emb.cos() * scaling_factor
|
| 217 |
+
sin = emb.sin() * scaling_factor
|
| 218 |
+
return cos.to(dtype=x.dtype), sin.to(dtype=x.dtype)
|
| 219 |
+
|
| 220 |
+
|
| 221 |
+
# Copied from transformers.models.llama.modeling_llama.rotate_half
|
| 222 |
+
def rotate_half(x):
|
| 223 |
+
"""Rotates half the hidden dims of the input."""
|
| 224 |
+
x1 = x[..., : x.shape[-1] // 2]
|
| 225 |
+
x2 = x[..., x.shape[-1] // 2 :]
|
| 226 |
+
return torch.cat((-x2, x1), dim=-1)
|
| 227 |
+
|
| 228 |
+
|
| 229 |
+
# Copied from transformers.models.llama.modeling_llama.apply_rotary_pos_emb
|
| 230 |
+
def apply_rotary_pos_emb(q, k, cos, sin, position_ids=None, unsqueeze_dim=1):
|
| 231 |
+
"""Applies Rotary Position Embedding to the query and key tensors.
|
| 232 |
+
|
| 233 |
+
Args:
|
| 234 |
+
q (`torch.Tensor`): The query tensor.
|
| 235 |
+
k (`torch.Tensor`): The key tensor.
|
| 236 |
+
cos (`torch.Tensor`): The cosine part of the rotary embedding.
|
| 237 |
+
sin (`torch.Tensor`): The sine part of the rotary embedding.
|
| 238 |
+
position_ids (`torch.Tensor`, *optional*):
|
| 239 |
+
Deprecated and unused.
|
| 240 |
+
unsqueeze_dim (`int`, *optional*, defaults to 1):
|
| 241 |
+
The 'unsqueeze_dim' argument specifies the dimension along which to unsqueeze cos[position_ids] and
|
| 242 |
+
sin[position_ids] so that they can be properly broadcasted to the dimensions of q and k. For example, note
|
| 243 |
+
that cos[position_ids] and sin[position_ids] have the shape [batch_size, seq_len, head_dim]. Then, if q and
|
| 244 |
+
k have the shape [batch_size, heads, seq_len, head_dim], then setting unsqueeze_dim=1 makes
|
| 245 |
+
cos[position_ids] and sin[position_ids] broadcastable to the shapes of q and k. Similarly, if q and k have
|
| 246 |
+
the shape [batch_size, seq_len, heads, head_dim], then set unsqueeze_dim=2.
|
| 247 |
+
Returns:
|
| 248 |
+
`tuple(torch.Tensor)` comprising of the query and key tensors rotated using the Rotary Position Embedding.
|
| 249 |
+
"""
|
| 250 |
+
cos = cos.unsqueeze(unsqueeze_dim)
|
| 251 |
+
sin = sin.unsqueeze(unsqueeze_dim)
|
| 252 |
+
q_embed = (q * cos) + (rotate_half(q) * sin)
|
| 253 |
+
k_embed = (k * cos) + (rotate_half(k) * sin)
|
| 254 |
+
return q_embed, k_embed
|
| 255 |
+
|
| 256 |
+
|
| 257 |
+
class Phi3MLP(nn.Module):
|
| 258 |
+
def __init__(self, config):
|
| 259 |
+
super().__init__()
|
| 260 |
+
|
| 261 |
+
self.config = config
|
| 262 |
+
self.gate_up_proj = nn.Linear(config.hidden_size, 2 * config.intermediate_size, bias=False)
|
| 263 |
+
self.down_proj = nn.Linear(config.intermediate_size, config.hidden_size, bias=False)
|
| 264 |
+
|
| 265 |
+
self.activation_fn = ACT2FN[config.hidden_act]
|
| 266 |
+
|
| 267 |
+
def forward(self, hidden_states: torch.FloatTensor) -> torch.FloatTensor:
|
| 268 |
+
up_states = self.gate_up_proj(hidden_states)
|
| 269 |
+
|
| 270 |
+
gate, up_states = up_states.chunk(2, dim=-1)
|
| 271 |
+
up_states = up_states * self.activation_fn(gate)
|
| 272 |
+
|
| 273 |
+
return self.down_proj(up_states)
|
| 274 |
+
|
| 275 |
+
|
| 276 |
+
# Copied from transformers.models.llama.modeling_llama.repeat_kv with llama->phi
|
| 277 |
+
def repeat_kv(hidden_states: torch.Tensor, n_rep: int) -> torch.Tensor:
|
| 278 |
+
"""
|
| 279 |
+
This is the equivalent of torch.repeat_interleave(x, dim=1, repeats=n_rep). The hidden states go from (batch,
|
| 280 |
+
num_key_value_heads, seqlen, head_dim) to (batch, num_attention_heads, seqlen, head_dim)
|
| 281 |
+
"""
|
| 282 |
+
batch, num_key_value_heads, slen, head_dim = hidden_states.shape
|
| 283 |
+
if n_rep == 1:
|
| 284 |
+
return hidden_states
|
| 285 |
+
hidden_states = hidden_states[:, :, None, :, :].expand(batch, num_key_value_heads, n_rep, slen, head_dim)
|
| 286 |
+
return hidden_states.reshape(batch, num_key_value_heads * n_rep, slen, head_dim)
|
| 287 |
+
|
| 288 |
+
|
| 289 |
+
class Phi3Attention(nn.Module):
|
| 290 |
+
"""Multi-headed attention from 'Attention Is All You Need' paper"""
|
| 291 |
+
|
| 292 |
+
def __init__(self, config: Phi3Config, layer_idx: Optional[int] = None):
|
| 293 |
+
super().__init__()
|
| 294 |
+
self.config = config
|
| 295 |
+
self.layer_idx = layer_idx
|
| 296 |
+
if layer_idx is None:
|
| 297 |
+
logger.warning_once(
|
| 298 |
+
f'Instantiating {self.__class__.__name__} without passing a `layer_idx` is not recommended and will '
|
| 299 |
+
'lead to errors during the forward call if caching is used. Please make sure to provide a `layer_idx` '
|
| 300 |
+
'when creating this class.'
|
| 301 |
+
)
|
| 302 |
+
|
| 303 |
+
self.attention_dropout = config.attention_dropout
|
| 304 |
+
self.hidden_size = config.hidden_size
|
| 305 |
+
self.num_heads = config.num_attention_heads
|
| 306 |
+
self.head_dim = self.hidden_size // self.num_heads
|
| 307 |
+
self.num_key_value_heads = config.num_key_value_heads
|
| 308 |
+
self.num_key_value_groups = self.num_heads // self.num_key_value_heads
|
| 309 |
+
self.max_position_embeddings = config.max_position_embeddings
|
| 310 |
+
self.original_max_position_embeddings = config.original_max_position_embeddings
|
| 311 |
+
self.rope_theta = config.rope_theta
|
| 312 |
+
self.rope_scaling = config.rope_scaling
|
| 313 |
+
self.is_causal = True
|
| 314 |
+
|
| 315 |
+
if (self.head_dim * self.num_heads) != self.hidden_size:
|
| 316 |
+
raise ValueError(
|
| 317 |
+
f'hidden_size must be divisible by num_heads (got `hidden_size`: {self.hidden_size}'
|
| 318 |
+
f' and `num_heads`: {self.num_heads}).'
|
| 319 |
+
)
|
| 320 |
+
|
| 321 |
+
op_size = self.num_heads * self.head_dim + 2 * (self.num_key_value_heads * self.head_dim)
|
| 322 |
+
self.o_proj = nn.Linear(self.num_heads * self.head_dim, self.hidden_size, bias=False)
|
| 323 |
+
self.qkv_proj = nn.Linear(self.hidden_size, op_size, bias=False)
|
| 324 |
+
self._init_rope()
|
| 325 |
+
|
| 326 |
+
def _init_rope(self):
|
| 327 |
+
if self.rope_scaling is None:
|
| 328 |
+
self.rotary_emb = Phi3RotaryEmbedding(
|
| 329 |
+
self.head_dim,
|
| 330 |
+
max_position_embeddings=self.max_position_embeddings,
|
| 331 |
+
base=self.rope_theta,
|
| 332 |
+
)
|
| 333 |
+
else:
|
| 334 |
+
scaling_type = self.config.rope_scaling['type']
|
| 335 |
+
if scaling_type == 'su':
|
| 336 |
+
self.rotary_emb = Phi3SuScaledRotaryEmbedding(self.head_dim, self.config)
|
| 337 |
+
elif scaling_type == 'yarn':
|
| 338 |
+
self.rotary_emb = Phi3YarnScaledRotaryEmbedding(self.head_dim, self.config)
|
| 339 |
+
else:
|
| 340 |
+
raise ValueError(f'Unknown RoPE scaling type {scaling_type}')
|
| 341 |
+
|
| 342 |
+
def forward(
|
| 343 |
+
self,
|
| 344 |
+
hidden_states: torch.Tensor,
|
| 345 |
+
attention_mask: Optional[torch.Tensor] = None,
|
| 346 |
+
position_ids: Optional[torch.LongTensor] = None,
|
| 347 |
+
past_key_value: Optional[Cache] = None,
|
| 348 |
+
output_attentions: bool = False,
|
| 349 |
+
use_cache: bool = False,
|
| 350 |
+
) -> Tuple[torch.Tensor, Optional[torch.Tensor], Optional[Tuple[torch.Tensor]]]:
|
| 351 |
+
logger.warning_once('You are not running the flash-attention implementation, expect numerical differences.')
|
| 352 |
+
|
| 353 |
+
bsz, q_len, _ = hidden_states.size()
|
| 354 |
+
|
| 355 |
+
qkv = self.qkv_proj(hidden_states)
|
| 356 |
+
query_pos = self.num_heads * self.head_dim
|
| 357 |
+
query_states = qkv[..., :query_pos]
|
| 358 |
+
key_states = qkv[..., query_pos : query_pos + self.num_key_value_heads * self.head_dim]
|
| 359 |
+
value_states = qkv[..., query_pos + self.num_key_value_heads * self.head_dim :]
|
| 360 |
+
|
| 361 |
+
query_states = query_states.view(bsz, q_len, self.num_heads, self.head_dim).transpose(1, 2)
|
| 362 |
+
key_states = key_states.view(bsz, q_len, self.num_key_value_heads, self.head_dim).transpose(1, 2)
|
| 363 |
+
value_states = value_states.view(bsz, q_len, self.num_key_value_heads, self.head_dim).transpose(1, 2)
|
| 364 |
+
|
| 365 |
+
kv_seq_len = key_states.shape[-2]
|
| 366 |
+
if past_key_value is not None:
|
| 367 |
+
if self.layer_idx is None:
|
| 368 |
+
raise ValueError(
|
| 369 |
+
f'The cache structure has changed since version v4.36. If you are using {self.__class__.__name__} '
|
| 370 |
+
'for auto-regressive decoding with k/v caching, please make sure to initialize the attention class '
|
| 371 |
+
'with a layer index.'
|
| 372 |
+
)
|
| 373 |
+
kv_seq_len += past_key_value.get_usable_length(kv_seq_len, self.layer_idx)
|
| 374 |
+
cos, sin = self.rotary_emb(value_states, position_ids, seq_len=kv_seq_len)
|
| 375 |
+
|
| 376 |
+
query_states, key_states = apply_rotary_pos_emb(query_states, key_states, cos, sin, position_ids)
|
| 377 |
+
|
| 378 |
+
if past_key_value is not None:
|
| 379 |
+
cache_kwargs = {'sin': sin, 'cos': cos} # Specific to RoPE models
|
| 380 |
+
key_states, value_states = past_key_value.update(key_states, value_states, self.layer_idx, cache_kwargs)
|
| 381 |
+
|
| 382 |
+
# repeat k/v heads if n_kv_heads < n_heads
|
| 383 |
+
key_states = repeat_kv(key_states, self.num_key_value_groups)
|
| 384 |
+
value_states = repeat_kv(value_states, self.num_key_value_groups)
|
| 385 |
+
|
| 386 |
+
attn_weights = torch.matmul(query_states, key_states.transpose(2, 3)) / math.sqrt(self.head_dim)
|
| 387 |
+
|
| 388 |
+
if attn_weights.size() != (bsz, self.num_heads, q_len, kv_seq_len):
|
| 389 |
+
raise ValueError(
|
| 390 |
+
f'Attention weights should be of size {(bsz, self.num_heads, q_len, kv_seq_len)}, but is'
|
| 391 |
+
f' {attn_weights.size()}'
|
| 392 |
+
)
|
| 393 |
+
|
| 394 |
+
if attention_mask is not None:
|
| 395 |
+
if attention_mask.size() != (bsz, 1, q_len, kv_seq_len):
|
| 396 |
+
raise ValueError(
|
| 397 |
+
f'Attention mask should be of size {(bsz, 1, q_len, kv_seq_len)}, but is {attention_mask.size()}'
|
| 398 |
+
)
|
| 399 |
+
attn_weights = attn_weights + attention_mask
|
| 400 |
+
|
| 401 |
+
# upcast attention to fp32
|
| 402 |
+
attn_weights = nn.functional.softmax(attn_weights, dim=-1, dtype=torch.float32).to(value_states.dtype)
|
| 403 |
+
attn_weights = nn.functional.dropout(attn_weights, p=self.attention_dropout, training=self.training)
|
| 404 |
+
|
| 405 |
+
attn_output = torch.matmul(attn_weights, value_states)
|
| 406 |
+
|
| 407 |
+
if attn_output.size() != (bsz, self.num_heads, q_len, self.head_dim):
|
| 408 |
+
raise ValueError(
|
| 409 |
+
f'`attn_output` should be of size {(bsz, self.num_heads, q_len, self.head_dim)}, but is'
|
| 410 |
+
f' {attn_output.size()}'
|
| 411 |
+
)
|
| 412 |
+
|
| 413 |
+
attn_output = attn_output.transpose(1, 2).contiguous()
|
| 414 |
+
attn_output = attn_output.reshape(bsz, q_len, self.hidden_size)
|
| 415 |
+
|
| 416 |
+
attn_output = self.o_proj(attn_output)
|
| 417 |
+
|
| 418 |
+
if not output_attentions:
|
| 419 |
+
attn_weights = None
|
| 420 |
+
|
| 421 |
+
return attn_output, attn_weights, past_key_value
|
| 422 |
+
|
| 423 |
+
|
| 424 |
+
class Phi3FlashAttention2(Phi3Attention):
|
| 425 |
+
"""
|
| 426 |
+
Phi-3 flash attention module. This module inherits from `Phi3Attention` as the weights of the module stays
|
| 427 |
+
untouched. The only required change would be on the forward pass where it needs to correctly call the public API of
|
| 428 |
+
flash attention and deal with padding tokens in case the input contains any of them.
|
| 429 |
+
"""
|
| 430 |
+
|
| 431 |
+
# Copied from transformers.models.llama.modeling_llama.LlamaFlashAttention2.__init__
|
| 432 |
+
def __init__(self, *args, **kwargs):
|
| 433 |
+
super().__init__(*args, **kwargs)
|
| 434 |
+
|
| 435 |
+
# TODO: Should be removed once Flash Attention for RoCm is bumped to 2.1.
|
| 436 |
+
# flash_attn<2.1 generates top-left aligned causal mask, while what is needed here is bottom-right alignement, that was made default for flash_attn>=2.1. This attribute is used to handle this difference. Reference: https://github.com/Dao-AILab/flash-attention/releases/tag/v2.1.0.
|
| 437 |
+
# Beware that with flash_attn<2.1, using q_seqlen != k_seqlen (except for the case q_seqlen == 1) produces a wrong mask (top-left).
|
| 438 |
+
self._flash_attn_uses_top_left_mask = not is_flash_attn_greater_or_equal_2_10()
|
| 439 |
+
|
| 440 |
+
def forward(
|
| 441 |
+
self,
|
| 442 |
+
hidden_states: torch.Tensor,
|
| 443 |
+
attention_mask: Optional[torch.LongTensor] = None,
|
| 444 |
+
position_ids: Optional[torch.LongTensor] = None,
|
| 445 |
+
past_key_value: Optional[Cache] = None,
|
| 446 |
+
output_attentions: bool = False,
|
| 447 |
+
use_cache: bool = False,
|
| 448 |
+
**kwargs,
|
| 449 |
+
) -> Tuple[torch.Tensor, Optional[torch.Tensor], Optional[Tuple[torch.Tensor]]]:
|
| 450 |
+
# Phi3FlashAttention2 attention does not support output_attentions
|
| 451 |
+
|
| 452 |
+
if not _flash_supports_window_size:
|
| 453 |
+
logger.warning_once(
|
| 454 |
+
"The current flash attention version does not support sliding window attention. Please use `attn_implementation='eager'` or upgrade flash-attn library."
|
| 455 |
+
)
|
| 456 |
+
raise ValueError('The current flash attention version does not support sliding window attention.')
|
| 457 |
+
|
| 458 |
+
output_attentions = False
|
| 459 |
+
|
| 460 |
+
if 'padding_mask' in kwargs:
|
| 461 |
+
warnings.warn(
|
| 462 |
+
'Passing `padding_mask` is deprecated and will be removed in v4.37. Please make sure use `attention_mask` instead.`'
|
| 463 |
+
)
|
| 464 |
+
|
| 465 |
+
# overwrite attention_mask with padding_mask
|
| 466 |
+
attention_mask = kwargs.pop('padding_mask')
|
| 467 |
+
|
| 468 |
+
bsz, q_len, _ = hidden_states.size()
|
| 469 |
+
|
| 470 |
+
qkv = self.qkv_proj(hidden_states)
|
| 471 |
+
query_pos = self.num_heads * self.head_dim
|
| 472 |
+
query_states = qkv[..., :query_pos]
|
| 473 |
+
key_states = qkv[..., query_pos : query_pos + self.num_key_value_heads * self.head_dim]
|
| 474 |
+
value_states = qkv[..., query_pos + self.num_key_value_heads * self.head_dim :]
|
| 475 |
+
|
| 476 |
+
# Flash attention requires the input to have the shape
|
| 477 |
+
# batch_size x seq_length x head_dim x hidden_dim
|
| 478 |
+
# therefore we just need to keep the original shape
|
| 479 |
+
query_states = query_states.view(bsz, q_len, self.num_heads, self.head_dim).transpose(1, 2)
|
| 480 |
+
key_states = key_states.view(bsz, q_len, self.num_key_value_heads, self.head_dim).transpose(1, 2)
|
| 481 |
+
value_states = value_states.view(bsz, q_len, self.num_key_value_heads, self.head_dim).transpose(1, 2)
|
| 482 |
+
|
| 483 |
+
kv_seq_len = key_states.shape[-2]
|
| 484 |
+
if past_key_value is not None:
|
| 485 |
+
if self.layer_idx is None:
|
| 486 |
+
raise ValueError(
|
| 487 |
+
f'The cache structure has changed since version v4.36. If you are using {self.__class__.__name__} '
|
| 488 |
+
'for auto-regressive decoding with k/v caching, please make sure to initialize the attention class '
|
| 489 |
+
'with a layer index.'
|
| 490 |
+
)
|
| 491 |
+
kv_seq_len += past_key_value.get_usable_length(kv_seq_len, self.layer_idx)
|
| 492 |
+
|
| 493 |
+
# Because the input can be padded, the absolute sequence length depends on the max position id.
|
| 494 |
+
rotary_seq_len = max(kv_seq_len, position_ids[:, -1].max().item()) + 1
|
| 495 |
+
cos, sin = self.rotary_emb(value_states, position_ids, seq_len=rotary_seq_len)
|
| 496 |
+
|
| 497 |
+
query_states, key_states = apply_rotary_pos_emb(query_states, key_states, cos, sin, position_ids)
|
| 498 |
+
|
| 499 |
+
use_sliding_windows = (
|
| 500 |
+
_flash_supports_window_size
|
| 501 |
+
and getattr(self.config, 'sliding_window', None) is not None
|
| 502 |
+
and kv_seq_len > self.config.sliding_window
|
| 503 |
+
)
|
| 504 |
+
|
| 505 |
+
if past_key_value is not None:
|
| 506 |
+
# Activate slicing cache only if the config has a value `sliding_windows` attribute
|
| 507 |
+
cache_has_contents = past_key_value.get_seq_length(self.layer_idx) > 0
|
| 508 |
+
if (
|
| 509 |
+
getattr(self.config, 'sliding_window', None) is not None
|
| 510 |
+
and kv_seq_len > self.config.sliding_window
|
| 511 |
+
and cache_has_contents
|
| 512 |
+
):
|
| 513 |
+
slicing_tokens = 1 - self.config.sliding_window
|
| 514 |
+
|
| 515 |
+
past_key = past_key_value[self.layer_idx][0]
|
| 516 |
+
past_value = past_key_value[self.layer_idx][1]
|
| 517 |
+
|
| 518 |
+
past_key = past_key[:, :, slicing_tokens:, :].contiguous()
|
| 519 |
+
past_value = past_value[:, :, slicing_tokens:, :].contiguous()
|
| 520 |
+
|
| 521 |
+
if past_key.shape[-2] != self.config.sliding_window - 1:
|
| 522 |
+
raise ValueError(
|
| 523 |
+
f'past key must have a shape of (`batch_size, num_heads, self.config.sliding_window-1, head_dim`), got'
|
| 524 |
+
f' {past_key.shape}'
|
| 525 |
+
)
|
| 526 |
+
|
| 527 |
+
if attention_mask is not None:
|
| 528 |
+
attention_mask = attention_mask[:, slicing_tokens:]
|
| 529 |
+
attention_mask = torch.cat([attention_mask, torch.ones_like(attention_mask[:, -1:])], dim=-1)
|
| 530 |
+
|
| 531 |
+
cache_kwargs = {'sin': sin, 'cos': cos} # Specific to RoPE models
|
| 532 |
+
key_states, value_states = past_key_value.update(key_states, value_states, self.layer_idx, cache_kwargs)
|
| 533 |
+
|
| 534 |
+
# repeat k/v heads if n_kv_heads < n_heads
|
| 535 |
+
key_states = repeat_kv(key_states, self.num_key_value_groups)
|
| 536 |
+
value_states = repeat_kv(value_states, self.num_key_value_groups)
|
| 537 |
+
|
| 538 |
+
attn_dropout = self.attention_dropout if self.training else 0.0
|
| 539 |
+
|
| 540 |
+
# In PEFT, usually we cast the layer norms in float32 for training stability reasons
|
| 541 |
+
# therefore the input hidden states gets silently casted in float32. Hence, we need
|
| 542 |
+
# cast them back in the correct dtype just to be sure everything works as expected.
|
| 543 |
+
# This might slowdown training & inference so it is recommended to not cast the LayerNorms
|
| 544 |
+
# in fp32.
|
| 545 |
+
|
| 546 |
+
if query_states.dtype == torch.float32:
|
| 547 |
+
if torch.is_autocast_enabled():
|
| 548 |
+
target_dtype = torch.get_autocast_gpu_dtype()
|
| 549 |
+
# Handle the case where the model is quantized
|
| 550 |
+
elif hasattr(self.config, '_pre_quantization_dtype'):
|
| 551 |
+
target_dtype = self.config._pre_quantization_dtype
|
| 552 |
+
else:
|
| 553 |
+
target_dtype = self.qkv_proj.weight.dtype
|
| 554 |
+
|
| 555 |
+
logger.warning_once(
|
| 556 |
+
f'The input hidden states seems to be silently casted in float32, this might be related to'
|
| 557 |
+
f' the fact you have upcasted embedding or layer norm layers in float32. We will cast back the input in'
|
| 558 |
+
f' {target_dtype}.'
|
| 559 |
+
)
|
| 560 |
+
|
| 561 |
+
query_states = query_states.to(target_dtype)
|
| 562 |
+
key_states = key_states.to(target_dtype)
|
| 563 |
+
value_states = value_states.to(target_dtype)
|
| 564 |
+
|
| 565 |
+
# Reashape to the expected shape for Flash Attention
|
| 566 |
+
query_states = query_states.transpose(1, 2)
|
| 567 |
+
key_states = key_states.transpose(1, 2)
|
| 568 |
+
value_states = value_states.transpose(1, 2)
|
| 569 |
+
|
| 570 |
+
attn_output = self._flash_attention_forward(
|
| 571 |
+
query_states,
|
| 572 |
+
key_states,
|
| 573 |
+
value_states,
|
| 574 |
+
attention_mask,
|
| 575 |
+
q_len,
|
| 576 |
+
dropout=attn_dropout,
|
| 577 |
+
use_sliding_windows=use_sliding_windows,
|
| 578 |
+
)
|
| 579 |
+
|
| 580 |
+
attn_output = attn_output.reshape(bsz, q_len, self.hidden_size).contiguous()
|
| 581 |
+
attn_output = self.o_proj(attn_output)
|
| 582 |
+
|
| 583 |
+
if not output_attentions:
|
| 584 |
+
attn_weights = None
|
| 585 |
+
|
| 586 |
+
return attn_output, attn_weights, past_key_value
|
| 587 |
+
|
| 588 |
+
# Copied from transformers.models.mistral.modeling_mistral.MistralFlashAttention2._flash_attention_forward
|
| 589 |
+
def _flash_attention_forward(
|
| 590 |
+
self,
|
| 591 |
+
query_states,
|
| 592 |
+
key_states,
|
| 593 |
+
value_states,
|
| 594 |
+
attention_mask,
|
| 595 |
+
query_length,
|
| 596 |
+
dropout=0.0,
|
| 597 |
+
softmax_scale=None,
|
| 598 |
+
use_sliding_windows=False,
|
| 599 |
+
):
|
| 600 |
+
"""
|
| 601 |
+
Calls the forward method of Flash Attention - if the input hidden states contain at least one padding token
|
| 602 |
+
first unpad the input, then computes the attention scores and pad the final attention scores.
|
| 603 |
+
|
| 604 |
+
Args:
|
| 605 |
+
query_states (`torch.Tensor`):
|
| 606 |
+
Input query states to be passed to Flash Attention API
|
| 607 |
+
key_states (`torch.Tensor`):
|
| 608 |
+
Input key states to be passed to Flash Attention API
|
| 609 |
+
value_states (`torch.Tensor`):
|
| 610 |
+
Input value states to be passed to Flash Attention API
|
| 611 |
+
attention_mask (`torch.Tensor`):
|
| 612 |
+
The padding mask - corresponds to a tensor of size `(batch_size, seq_len)` where 0 stands for the
|
| 613 |
+
position of padding tokens and 1 for the position of non-padding tokens.
|
| 614 |
+
dropout (`float`):
|
| 615 |
+
Attention dropout
|
| 616 |
+
softmax_scale (`float`, *optional*):
|
| 617 |
+
The scaling of QK^T before applying softmax. Default to 1 / sqrt(head_dim)
|
| 618 |
+
use_sliding_windows (`bool`, *optional*):
|
| 619 |
+
Whether to activate sliding window attention.
|
| 620 |
+
"""
|
| 621 |
+
if not self._flash_attn_uses_top_left_mask:
|
| 622 |
+
causal = self.is_causal
|
| 623 |
+
else:
|
| 624 |
+
# TODO: Remove the `query_length != 1` check once Flash Attention for RoCm is bumped to 2.1. For details, please see the comment in LlamaFlashAttention2 __init__.
|
| 625 |
+
causal = self.is_causal and query_length != 1
|
| 626 |
+
|
| 627 |
+
# Contains at least one padding token in the sequence
|
| 628 |
+
if attention_mask is not None:
|
| 629 |
+
batch_size = query_states.shape[0]
|
| 630 |
+
query_states, key_states, value_states, indices_q, cu_seq_lens, max_seq_lens = self._upad_input(
|
| 631 |
+
query_states, key_states, value_states, attention_mask, query_length
|
| 632 |
+
)
|
| 633 |
+
|
| 634 |
+
cu_seqlens_q, cu_seqlens_k = cu_seq_lens
|
| 635 |
+
max_seqlen_in_batch_q, max_seqlen_in_batch_k = max_seq_lens
|
| 636 |
+
|
| 637 |
+
if not use_sliding_windows:
|
| 638 |
+
attn_output_unpad = flash_attn_varlen_func(
|
| 639 |
+
query_states,
|
| 640 |
+
key_states,
|
| 641 |
+
value_states,
|
| 642 |
+
cu_seqlens_q=cu_seqlens_q,
|
| 643 |
+
cu_seqlens_k=cu_seqlens_k,
|
| 644 |
+
max_seqlen_q=max_seqlen_in_batch_q,
|
| 645 |
+
max_seqlen_k=max_seqlen_in_batch_k,
|
| 646 |
+
dropout_p=dropout,
|
| 647 |
+
softmax_scale=softmax_scale,
|
| 648 |
+
causal=causal,
|
| 649 |
+
)
|
| 650 |
+
else:
|
| 651 |
+
attn_output_unpad = flash_attn_varlen_func(
|
| 652 |
+
query_states,
|
| 653 |
+
key_states,
|
| 654 |
+
value_states,
|
| 655 |
+
cu_seqlens_q=cu_seqlens_q,
|
| 656 |
+
cu_seqlens_k=cu_seqlens_k,
|
| 657 |
+
max_seqlen_q=max_seqlen_in_batch_q,
|
| 658 |
+
max_seqlen_k=max_seqlen_in_batch_k,
|
| 659 |
+
dropout_p=dropout,
|
| 660 |
+
softmax_scale=softmax_scale,
|
| 661 |
+
causal=causal,
|
| 662 |
+
window_size=(self.config.sliding_window, self.config.sliding_window),
|
| 663 |
+
)
|
| 664 |
+
|
| 665 |
+
attn_output = pad_input(attn_output_unpad, indices_q, batch_size, query_length)
|
| 666 |
+
else:
|
| 667 |
+
if not use_sliding_windows:
|
| 668 |
+
attn_output = flash_attn_func(
|
| 669 |
+
query_states,
|
| 670 |
+
key_states,
|
| 671 |
+
value_states,
|
| 672 |
+
dropout,
|
| 673 |
+
softmax_scale=softmax_scale,
|
| 674 |
+
causal=causal,
|
| 675 |
+
)
|
| 676 |
+
else:
|
| 677 |
+
attn_output = flash_attn_func(
|
| 678 |
+
query_states,
|
| 679 |
+
key_states,
|
| 680 |
+
value_states,
|
| 681 |
+
dropout,
|
| 682 |
+
softmax_scale=softmax_scale,
|
| 683 |
+
causal=causal,
|
| 684 |
+
window_size=(self.config.sliding_window, self.config.sliding_window),
|
| 685 |
+
)
|
| 686 |
+
|
| 687 |
+
return attn_output
|
| 688 |
+
|
| 689 |
+
# Copied from transformers.models.mistral.modeling_mistral.MistralFlashAttention2._upad_input
|
| 690 |
+
def _upad_input(self, query_layer, key_layer, value_layer, attention_mask, query_length):
|
| 691 |
+
batch_size, kv_seq_len, num_heads, head_dim = key_layer.shape
|
| 692 |
+
|
| 693 |
+
# On the first iteration we need to properly re-create the padding mask
|
| 694 |
+
# by slicing it on the proper place
|
| 695 |
+
if kv_seq_len != attention_mask.shape[-1]:
|
| 696 |
+
attention_mask_num_tokens = attention_mask.shape[-1]
|
| 697 |
+
attention_mask = attention_mask[:, attention_mask_num_tokens - kv_seq_len :]
|
| 698 |
+
|
| 699 |
+
indices_k, cu_seqlens_k, max_seqlen_in_batch_k = _get_unpad_data(attention_mask)
|
| 700 |
+
|
| 701 |
+
key_layer = index_first_axis(key_layer.reshape(batch_size * kv_seq_len, num_heads, head_dim), indices_k)
|
| 702 |
+
value_layer = index_first_axis(value_layer.reshape(batch_size * kv_seq_len, num_heads, head_dim), indices_k)
|
| 703 |
+
|
| 704 |
+
if query_length == kv_seq_len:
|
| 705 |
+
query_layer = index_first_axis(
|
| 706 |
+
query_layer.reshape(batch_size * kv_seq_len, num_heads, head_dim), indices_k
|
| 707 |
+
)
|
| 708 |
+
cu_seqlens_q = cu_seqlens_k
|
| 709 |
+
max_seqlen_in_batch_q = max_seqlen_in_batch_k
|
| 710 |
+
indices_q = indices_k
|
| 711 |
+
elif query_length == 1:
|
| 712 |
+
max_seqlen_in_batch_q = 1
|
| 713 |
+
cu_seqlens_q = torch.arange(
|
| 714 |
+
batch_size + 1, dtype=torch.int32, device=query_layer.device
|
| 715 |
+
) # There is a memcpy here, that is very bad.
|
| 716 |
+
indices_q = cu_seqlens_q[:-1]
|
| 717 |
+
query_layer = query_layer.squeeze(1)
|
| 718 |
+
else:
|
| 719 |
+
# The -q_len: slice assumes left padding.
|
| 720 |
+
attention_mask = attention_mask[:, -query_length:]
|
| 721 |
+
query_layer, indices_q, cu_seqlens_q, max_seqlen_in_batch_q = unpad_input(query_layer, attention_mask)
|
| 722 |
+
|
| 723 |
+
return (
|
| 724 |
+
query_layer,
|
| 725 |
+
key_layer,
|
| 726 |
+
value_layer,
|
| 727 |
+
indices_q,
|
| 728 |
+
(cu_seqlens_q, cu_seqlens_k),
|
| 729 |
+
(max_seqlen_in_batch_q, max_seqlen_in_batch_k),
|
| 730 |
+
)
|
| 731 |
+
|
| 732 |
+
|
| 733 |
+
# copied from transformers.models.llama.modeling_llama.LlamaSdpaAttention with Llama->Phi3
|
| 734 |
+
# TODO @Arthur no longer copied from LLama after static cache
|
| 735 |
+
class Phi3SdpaAttention(Phi3Attention):
|
| 736 |
+
"""
|
| 737 |
+
Phi3 attention module using torch.nn.functional.scaled_dot_product_attention. This module inherits from
|
| 738 |
+
`Phi3Attention` as the weights of the module stays untouched. The only changes are on the forward pass to adapt to
|
| 739 |
+
SDPA API.
|
| 740 |
+
"""
|
| 741 |
+
|
| 742 |
+
# Adapted from Phi3Attention.forward
|
| 743 |
+
def forward(
|
| 744 |
+
self,
|
| 745 |
+
hidden_states: torch.Tensor,
|
| 746 |
+
attention_mask: Optional[torch.Tensor] = None,
|
| 747 |
+
position_ids: Optional[torch.LongTensor] = None,
|
| 748 |
+
past_key_value: Optional[Cache] = None,
|
| 749 |
+
output_attentions: bool = False,
|
| 750 |
+
use_cache: bool = False,
|
| 751 |
+
) -> Tuple[torch.Tensor, Optional[torch.Tensor], Optional[Tuple[torch.Tensor]]]:
|
| 752 |
+
if output_attentions:
|
| 753 |
+
# TODO: Improve this warning with e.g. `model.config.attn_implementation = "manual"` once this is implemented.
|
| 754 |
+
logger.warning_once(
|
| 755 |
+
'Phi3Model is using Phi3SdpaAttention, but `torch.nn.functional.scaled_dot_product_attention` does not support `output_attentions=True`. Falling back to the manual attention implementation, '
|
| 756 |
+
'but specifying the manual implementation will be required from Transformers version v5.0.0 onwards. This warning can be removed using the argument `attn_implementation="eager"` when loading the model.'
|
| 757 |
+
)
|
| 758 |
+
return super().forward(
|
| 759 |
+
hidden_states=hidden_states,
|
| 760 |
+
attention_mask=attention_mask,
|
| 761 |
+
position_ids=position_ids,
|
| 762 |
+
past_key_value=past_key_value,
|
| 763 |
+
output_attentions=output_attentions,
|
| 764 |
+
use_cache=use_cache,
|
| 765 |
+
)
|
| 766 |
+
|
| 767 |
+
bsz, q_len, _ = hidden_states.size()
|
| 768 |
+
|
| 769 |
+
qkv = self.qkv_proj(hidden_states)
|
| 770 |
+
query_pos = self.num_heads * self.head_dim
|
| 771 |
+
query_states = qkv[..., :query_pos]
|
| 772 |
+
key_states = qkv[..., query_pos : query_pos + self.num_key_value_heads * self.head_dim]
|
| 773 |
+
value_states = qkv[..., query_pos + self.num_key_value_heads * self.head_dim :]
|
| 774 |
+
|
| 775 |
+
query_states = query_states.view(bsz, q_len, self.num_heads, self.head_dim).transpose(1, 2)
|
| 776 |
+
key_states = key_states.view(bsz, q_len, self.num_key_value_heads, self.head_dim).transpose(1, 2)
|
| 777 |
+
value_states = value_states.view(bsz, q_len, self.num_key_value_heads, self.head_dim).transpose(1, 2)
|
| 778 |
+
|
| 779 |
+
kv_seq_len = key_states.shape[-2]
|
| 780 |
+
if past_key_value is not None:
|
| 781 |
+
kv_seq_len += past_key_value.get_usable_length(kv_seq_len, self.layer_idx)
|
| 782 |
+
cos, sin = self.rotary_emb(value_states, position_ids, seq_len=kv_seq_len)
|
| 783 |
+
|
| 784 |
+
query_states, key_states = apply_rotary_pos_emb(query_states, key_states, cos, sin, position_ids)
|
| 785 |
+
|
| 786 |
+
if past_key_value is not None:
|
| 787 |
+
cache_kwargs = {'sin': sin, 'cos': cos} # Specific to RoPE models
|
| 788 |
+
key_states, value_states = past_key_value.update(key_states, value_states, self.layer_idx, cache_kwargs)
|
| 789 |
+
|
| 790 |
+
key_states = repeat_kv(key_states, self.num_key_value_groups)
|
| 791 |
+
value_states = repeat_kv(value_states, self.num_key_value_groups)
|
| 792 |
+
|
| 793 |
+
if attention_mask is not None:
|
| 794 |
+
if attention_mask.size() != (bsz, 1, q_len, kv_seq_len):
|
| 795 |
+
raise ValueError(
|
| 796 |
+
f'Attention mask should be of size {(bsz, 1, q_len, kv_seq_len)}, but is {attention_mask.size()}'
|
| 797 |
+
)
|
| 798 |
+
|
| 799 |
+
# SDPA with memory-efficient backend is currently (torch==2.1.2) bugged with non-contiguous inputs with custom attn_mask,
|
| 800 |
+
# Reference: https://github.com/pytorch/pytorch/issues/112577.
|
| 801 |
+
if query_states.device.type == 'cuda' and attention_mask is not None:
|
| 802 |
+
query_states = query_states.contiguous()
|
| 803 |
+
key_states = key_states.contiguous()
|
| 804 |
+
value_states = value_states.contiguous()
|
| 805 |
+
|
| 806 |
+
attn_output = torch.nn.functional.scaled_dot_product_attention(
|
| 807 |
+
query_states,
|
| 808 |
+
key_states,
|
| 809 |
+
value_states,
|
| 810 |
+
attn_mask=attention_mask,
|
| 811 |
+
dropout_p=self.attention_dropout if self.training else 0.0,
|
| 812 |
+
# The q_len > 1 is necessary to match with AttentionMaskConverter.to_causal_4d that does not create a causal mask in case q_len == 1.
|
| 813 |
+
is_causal=self.is_causal and attention_mask is None and q_len > 1,
|
| 814 |
+
)
|
| 815 |
+
|
| 816 |
+
attn_output = attn_output.transpose(1, 2).contiguous()
|
| 817 |
+
attn_output = attn_output.view(bsz, q_len, self.hidden_size)
|
| 818 |
+
|
| 819 |
+
attn_output = self.o_proj(attn_output)
|
| 820 |
+
|
| 821 |
+
return attn_output, None, past_key_value
|
| 822 |
+
|
| 823 |
+
|
| 824 |
+
PHI3_ATTENTION_CLASSES = {
|
| 825 |
+
'eager': Phi3Attention,
|
| 826 |
+
'flash_attention_2': Phi3FlashAttention2,
|
| 827 |
+
'sdpa': Phi3SdpaAttention,
|
| 828 |
+
}
|
| 829 |
+
|
| 830 |
+
|
| 831 |
+
class Phi3DecoderLayer(nn.Module):
|
| 832 |
+
def __init__(self, config: Phi3Config, layer_idx: int):
|
| 833 |
+
super().__init__()
|
| 834 |
+
|
| 835 |
+
self.config = config
|
| 836 |
+
self.self_attn = PHI3_ATTENTION_CLASSES[config._attn_implementation](config, layer_idx=layer_idx)
|
| 837 |
+
|
| 838 |
+
self.mlp = Phi3MLP(config)
|
| 839 |
+
self.input_layernorm = Phi3RMSNorm(config.hidden_size, eps=config.rms_norm_eps)
|
| 840 |
+
|
| 841 |
+
self.resid_attn_dropout = nn.Dropout(config.resid_pdrop)
|
| 842 |
+
self.resid_mlp_dropout = nn.Dropout(config.resid_pdrop)
|
| 843 |
+
self.post_attention_layernorm = Phi3RMSNorm(config.hidden_size, eps=config.rms_norm_eps)
|
| 844 |
+
|
| 845 |
+
def forward(
|
| 846 |
+
self,
|
| 847 |
+
hidden_states: torch.Tensor,
|
| 848 |
+
attention_mask: Optional[torch.Tensor] = None,
|
| 849 |
+
position_ids: Optional[torch.LongTensor] = None,
|
| 850 |
+
past_key_value: Optional[Tuple[torch.Tensor]] = None,
|
| 851 |
+
output_attentions: Optional[bool] = False,
|
| 852 |
+
use_cache: Optional[bool] = False,
|
| 853 |
+
**kwargs,
|
| 854 |
+
) -> Tuple[torch.FloatTensor, Optional[Tuple[torch.FloatTensor, torch.FloatTensor]]]:
|
| 855 |
+
if 'padding_mask' in kwargs:
|
| 856 |
+
warnings.warn(
|
| 857 |
+
'Passing `padding_mask` is deprecated and will be removed in v4.37. Please make sure use `attention_mask` instead.`'
|
| 858 |
+
)
|
| 859 |
+
"""
|
| 860 |
+
Args:
|
| 861 |
+
hidden_states (`torch.FloatTensor`):
|
| 862 |
+
input to the layer of shape `(batch, seq_len, embed_dim)`
|
| 863 |
+
attention_mask (`torch.FloatTensor`, *optional*): attention mask of size
|
| 864 |
+
`(batch, 1, tgt_len, src_len)` where padding elements are indicated by very large negative values.
|
| 865 |
+
position_ids (`torch.LongTensor` of shape `({0})`, *optional*):
|
| 866 |
+
Indices of positions of each input sequence tokens in the position embeddings. Selected in the range
|
| 867 |
+
`[0, config.n_positions - 1]`. [What are position IDs?](../glossary#position-ids)
|
| 868 |
+
output_attentions (`bool`, *optional*):
|
| 869 |
+
Whether or not to return the attentions tensors of all attention layers. See `attentions` under
|
| 870 |
+
returned tensors for more detail.
|
| 871 |
+
use_cache (`bool`, *optional*):
|
| 872 |
+
If set to `True`, `past_key_values` key value states are returned and can be used to speed up decoding
|
| 873 |
+
(see `past_key_values`).
|
| 874 |
+
past_key_value (`Tuple(torch.FloatTensor)`, *optional*): cached past key and value projection states
|
| 875 |
+
"""
|
| 876 |
+
|
| 877 |
+
residual = hidden_states
|
| 878 |
+
|
| 879 |
+
hidden_states = self.input_layernorm(hidden_states)
|
| 880 |
+
|
| 881 |
+
# Self Attention
|
| 882 |
+
attn_outputs, self_attn_weights, present_key_value = self.self_attn(
|
| 883 |
+
hidden_states=hidden_states,
|
| 884 |
+
attention_mask=attention_mask,
|
| 885 |
+
position_ids=position_ids,
|
| 886 |
+
past_key_value=past_key_value,
|
| 887 |
+
output_attentions=output_attentions,
|
| 888 |
+
use_cache=use_cache,
|
| 889 |
+
)
|
| 890 |
+
|
| 891 |
+
hidden_states = residual + self.resid_attn_dropout(attn_outputs)
|
| 892 |
+
|
| 893 |
+
residual = hidden_states
|
| 894 |
+
hidden_states = self.post_attention_layernorm(hidden_states)
|
| 895 |
+
hidden_states = self.mlp(hidden_states)
|
| 896 |
+
hidden_states = residual + self.resid_mlp_dropout(hidden_states)
|
| 897 |
+
|
| 898 |
+
outputs = (hidden_states,)
|
| 899 |
+
|
| 900 |
+
if output_attentions:
|
| 901 |
+
outputs += (self_attn_weights,)
|
| 902 |
+
|
| 903 |
+
if use_cache:
|
| 904 |
+
outputs += (present_key_value,)
|
| 905 |
+
|
| 906 |
+
return outputs
|
| 907 |
+
|
| 908 |
+
|
| 909 |
+
PHI3_START_DOCSTRING = r"""
|
| 910 |
+
This model inherits from [`PreTrainedModel`]. Check the superclass documentation for the generic methods the
|
| 911 |
+
library implements for all its model (such as downloading or saving, resizing the input embeddings, pruning heads
|
| 912 |
+
etc.)
|
| 913 |
+
|
| 914 |
+
This model is also a PyTorch [torch.nn.Module](https://pytorch.org/docs/stable/nn.html#torch.nn.Module) subclass.
|
| 915 |
+
Use it as a regular PyTorch Module and refer to the PyTorch documentation for all matter related to general usage
|
| 916 |
+
and behavior.
|
| 917 |
+
|
| 918 |
+
Parameters:
|
| 919 |
+
config ([`Phi3Config`]):
|
| 920 |
+
Model configuration class with all the parameters of the model. Initializing with a config file does not
|
| 921 |
+
load the weights associated with the model, only the configuration. Check out the
|
| 922 |
+
[`~PreTrainedModel.from_pretrained`] method to load the model weights.
|
| 923 |
+
"""
|
| 924 |
+
|
| 925 |
+
|
| 926 |
+
@add_start_docstrings(
|
| 927 |
+
'The bare Phi-3 model outputting raw hidden-states without any specific head on top.',
|
| 928 |
+
PHI3_START_DOCSTRING,
|
| 929 |
+
)
|
| 930 |
+
class Phi3PreTrainedModel(PreTrainedModel):
|
| 931 |
+
config_class = Phi3Config
|
| 932 |
+
base_model_prefix = 'model'
|
| 933 |
+
supports_gradient_checkpointing = True
|
| 934 |
+
_no_split_modules = ['Phi3DecoderLayer']
|
| 935 |
+
_skip_keys_device_placement = 'past_key_values'
|
| 936 |
+
_supports_flash_attn_2 = True
|
| 937 |
+
_supports_sdpa = False
|
| 938 |
+
_supports_cache_class = True
|
| 939 |
+
|
| 940 |
+
_version = '0.0.5'
|
| 941 |
+
|
| 942 |
+
def __init__(self, config: Phi3Config):
|
| 943 |
+
if not has_flash_attn:
|
| 944 |
+
config._attn_implementation = 'eager'
|
| 945 |
+
print('Warning: Flash attention is not available, using eager attention instead.')
|
| 946 |
+
super().__init__(config)
|
| 947 |
+
|
| 948 |
+
def _init_weights(self, module):
|
| 949 |
+
std = self.config.initializer_range
|
| 950 |
+
if isinstance(module, nn.Linear):
|
| 951 |
+
module.weight.data.normal_(mean=0.0, std=std)
|
| 952 |
+
if module.bias is not None:
|
| 953 |
+
module.bias.data.zero_()
|
| 954 |
+
elif isinstance(module, nn.Embedding):
|
| 955 |
+
module.weight.data.normal_(mean=0.0, std=std)
|
| 956 |
+
if module.padding_idx is not None:
|
| 957 |
+
module.weight.data[module.padding_idx].zero_()
|
| 958 |
+
|
| 959 |
+
|
| 960 |
+
PHI3_INPUTS_DOCSTRING = r"""
|
| 961 |
+
Args:
|
| 962 |
+
input_ids (`torch.LongTensor` of shape `(batch_size, sequence_length)`):
|
| 963 |
+
Indices of input sequence tokens in the vocabulary. Padding will be ignored by default should you provide
|
| 964 |
+
it.
|
| 965 |
+
|
| 966 |
+
Indices can be obtained using [`AutoTokenizer`]. See [`PreTrainedTokenizer.encode`] and
|
| 967 |
+
[`PreTrainedTokenizer.__call__`] for details.
|
| 968 |
+
|
| 969 |
+
[What are input IDs?](../glossary#input-ids)
|
| 970 |
+
attention_mask (`torch.Tensor` of shape `(batch_size, sequence_length)`, *optional*):
|
| 971 |
+
Mask to avoid performing attention on padding token indices. Mask values selected in `[0, 1]`:
|
| 972 |
+
|
| 973 |
+
- 1 for tokens that are **not masked**,
|
| 974 |
+
- 0 for tokens that are **masked**.
|
| 975 |
+
|
| 976 |
+
[What are attention masks?](../glossary#attention-mask)
|
| 977 |
+
|
| 978 |
+
Indices can be obtained using [`AutoTokenizer`]. See [`PreTrainedTokenizer.encode`] and
|
| 979 |
+
[`PreTrainedTokenizer.__call__`] for details.
|
| 980 |
+
|
| 981 |
+
If `past_key_values` is used, optionally only the last `input_ids` have to be input (see
|
| 982 |
+
`past_key_values`).
|
| 983 |
+
|
| 984 |
+
If you want to change padding behavior, you should read [`modeling_opt._prepare_decoder_attention_mask`]
|
| 985 |
+
and modify to your needs. See diagram 1 in [the paper](https://arxiv.org/abs/1910.13461) for more
|
| 986 |
+
information on the default strategy.
|
| 987 |
+
|
| 988 |
+
- 1 indicates the head is **not masked**,
|
| 989 |
+
- 0 indicates the head is **masked**.
|
| 990 |
+
position_ids (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
|
| 991 |
+
Indices of positions of each input sequence tokens in the position embeddings. Selected in the range `[0,
|
| 992 |
+
config.n_positions - 1]`.
|
| 993 |
+
|
| 994 |
+
[What are position IDs?](../glossary#position-ids)
|
| 995 |
+
past_key_values (`Cache` or `tuple(tuple(torch.FloatTensor))`, *optional*):
|
| 996 |
+
Pre-computed hidden-states (key and values in the self-attention blocks and in the cross-attention
|
| 997 |
+
blocks) that can be used to speed up sequential decoding. This typically consists in the `past_key_values`
|
| 998 |
+
returned by the model at a previous stage of decoding, when `use_cache=True` or `config.use_cache=True`.
|
| 999 |
+
|
| 1000 |
+
Two formats are allowed:
|
| 1001 |
+
- a [`~cache_utils.Cache`] instance;
|
| 1002 |
+
- Tuple of `tuple(torch.FloatTensor)` of length `config.n_layers`, with each tuple having 2 tensors of
|
| 1003 |
+
shape `(batch_size, num_heads, sequence_length, embed_size_per_head)`). This is also known as the legacy
|
| 1004 |
+
cache format.
|
| 1005 |
+
|
| 1006 |
+
The model will output the same cache format that is fed as input. If no `past_key_values` are passed, the
|
| 1007 |
+
legacy cache format will be returned.
|
| 1008 |
+
|
| 1009 |
+
If `past_key_values` are used, the user can optionally input only the last `input_ids` (those that don't
|
| 1010 |
+
have their past key value states given to this model) of shape `(batch_size, 1)` instead of all `input_ids`
|
| 1011 |
+
of shape `(batch_size, sequence_length)`.
|
| 1012 |
+
inputs_embeds (`torch.FloatTensor` of shape `(batch_size, sequence_length, hidden_size)`, *optional*):
|
| 1013 |
+
Optionally, instead of passing `input_ids` you can choose to directly pass an embedded representation. This
|
| 1014 |
+
is useful if you want more control over how to convert `input_ids` indices into associated vectors than the
|
| 1015 |
+
model's internal embedding lookup matrix.
|
| 1016 |
+
use_cache (`bool`, *optional*):
|
| 1017 |
+
If set to `True`, `past_key_values` key value states are returned and can be used to speed up decoding (see
|
| 1018 |
+
`past_key_values`).
|
| 1019 |
+
output_attentions (`bool`, *optional*):
|
| 1020 |
+
Whether or not to return the attentions tensors of all attention layers. See `attentions` under returned
|
| 1021 |
+
tensors for more detail.
|
| 1022 |
+
output_hidden_states (`bool`, *optional*):
|
| 1023 |
+
Whether or not to return the hidden states of all layers. See `hidden_states` under returned tensors for
|
| 1024 |
+
more detail.
|
| 1025 |
+
return_dict (`bool`, *optional*):
|
| 1026 |
+
Whether or not to return a [`~utils.ModelOutput`] instead of a plain tuple.
|
| 1027 |
+
"""
|
| 1028 |
+
|
| 1029 |
+
|
| 1030 |
+
@add_start_docstrings(
|
| 1031 |
+
'The bare Phi-3 model outputting raw hidden-states without any specific head on top.',
|
| 1032 |
+
PHI3_START_DOCSTRING,
|
| 1033 |
+
)
|
| 1034 |
+
class Phi3Model(Phi3PreTrainedModel):
|
| 1035 |
+
"""
|
| 1036 |
+
Transformer decoder consisting of *config.num_hidden_layers* layers. Each layer is a [`Phi3DecoderLayer`]
|
| 1037 |
+
|
| 1038 |
+
Args:
|
| 1039 |
+
config: Phi3Config
|
| 1040 |
+
"""
|
| 1041 |
+
|
| 1042 |
+
def __init__(self, config: Phi3Config):
|
| 1043 |
+
super().__init__(config)
|
| 1044 |
+
self.padding_idx = config.pad_token_id
|
| 1045 |
+
self.vocab_size = config.vocab_size
|
| 1046 |
+
|
| 1047 |
+
self.embed_tokens = nn.Embedding(config.vocab_size, config.hidden_size, self.padding_idx)
|
| 1048 |
+
self.embed_dropout = nn.Dropout(config.embd_pdrop)
|
| 1049 |
+
self.layers = nn.ModuleList(
|
| 1050 |
+
[Phi3DecoderLayer(config, layer_idx) for layer_idx in range(config.num_hidden_layers)]
|
| 1051 |
+
)
|
| 1052 |
+
self._attn_implementation = config._attn_implementation
|
| 1053 |
+
|
| 1054 |
+
self.norm = Phi3RMSNorm(config.hidden_size, eps=config.rms_norm_eps)
|
| 1055 |
+
|
| 1056 |
+
self.gradient_checkpointing = False
|
| 1057 |
+
# Initialize weights and apply final processing
|
| 1058 |
+
self.post_init()
|
| 1059 |
+
|
| 1060 |
+
def get_input_embeddings(self):
|
| 1061 |
+
return self.embed_tokens
|
| 1062 |
+
|
| 1063 |
+
def set_input_embeddings(self, value):
|
| 1064 |
+
self.embed_tokens = value
|
| 1065 |
+
|
| 1066 |
+
@add_start_docstrings_to_model_forward(PHI3_INPUTS_DOCSTRING)
|
| 1067 |
+
def forward(
|
| 1068 |
+
self,
|
| 1069 |
+
input_ids: torch.LongTensor = None,
|
| 1070 |
+
attention_mask: Optional[torch.Tensor] = None,
|
| 1071 |
+
position_ids: Optional[torch.LongTensor] = None,
|
| 1072 |
+
past_key_values: Optional[List[torch.FloatTensor]] = None,
|
| 1073 |
+
inputs_embeds: Optional[torch.FloatTensor] = None,
|
| 1074 |
+
use_cache: Optional[bool] = None,
|
| 1075 |
+
output_attentions: Optional[bool] = None,
|
| 1076 |
+
output_hidden_states: Optional[bool] = None,
|
| 1077 |
+
return_dict: Optional[bool] = None,
|
| 1078 |
+
) -> Union[Tuple, BaseModelOutputWithPast]:
|
| 1079 |
+
output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions
|
| 1080 |
+
output_hidden_states = (
|
| 1081 |
+
output_hidden_states if output_hidden_states is not None else self.config.output_hidden_states
|
| 1082 |
+
)
|
| 1083 |
+
use_cache = use_cache if use_cache is not None else self.config.use_cache
|
| 1084 |
+
|
| 1085 |
+
return_dict = return_dict if return_dict is not None else self.config.use_return_dict
|
| 1086 |
+
|
| 1087 |
+
# retrieve input_ids and inputs_embeds
|
| 1088 |
+
if input_ids is not None and inputs_embeds is not None:
|
| 1089 |
+
raise ValueError('You cannot specify both input_ids and inputs_embeds at the same time')
|
| 1090 |
+
elif input_ids is not None:
|
| 1091 |
+
batch_size, seq_length = input_ids.shape[:2]
|
| 1092 |
+
elif inputs_embeds is not None:
|
| 1093 |
+
batch_size, seq_length = inputs_embeds.shape[:2]
|
| 1094 |
+
else:
|
| 1095 |
+
raise ValueError('You have to specify either input_ids or inputs_embeds')
|
| 1096 |
+
|
| 1097 |
+
past_key_values_length = 0
|
| 1098 |
+
|
| 1099 |
+
if self.gradient_checkpointing and self.training:
|
| 1100 |
+
if use_cache:
|
| 1101 |
+
logger.warning_once(
|
| 1102 |
+
'`use_cache=True` is incompatible with gradient checkpointing. Setting `use_cache=False`...'
|
| 1103 |
+
)
|
| 1104 |
+
use_cache = False
|
| 1105 |
+
|
| 1106 |
+
if use_cache:
|
| 1107 |
+
use_legacy_cache = not isinstance(past_key_values, Cache)
|
| 1108 |
+
if use_legacy_cache:
|
| 1109 |
+
past_key_values = DynamicCache.from_legacy_cache(past_key_values)
|
| 1110 |
+
past_key_values_length = past_key_values.get_usable_length(seq_length)
|
| 1111 |
+
|
| 1112 |
+
if position_ids is None:
|
| 1113 |
+
device = input_ids.device if input_ids is not None else inputs_embeds.device
|
| 1114 |
+
position_ids = torch.arange(
|
| 1115 |
+
past_key_values_length, seq_length + past_key_values_length, dtype=torch.long, device=device
|
| 1116 |
+
)
|
| 1117 |
+
position_ids = position_ids.unsqueeze(0).view(-1, seq_length)
|
| 1118 |
+
else:
|
| 1119 |
+
position_ids = position_ids.view(-1, seq_length).long()
|
| 1120 |
+
|
| 1121 |
+
if inputs_embeds is None:
|
| 1122 |
+
inputs_embeds = self.embed_tokens(input_ids)
|
| 1123 |
+
|
| 1124 |
+
if attention_mask is not None and self._attn_implementation == 'flash_attention_2' and use_cache:
|
| 1125 |
+
is_padding_right = attention_mask[:, -1].sum().item() != batch_size
|
| 1126 |
+
if is_padding_right:
|
| 1127 |
+
raise ValueError(
|
| 1128 |
+
"You are attempting to perform batched generation with padding_side='right'"
|
| 1129 |
+
' this may lead to unexpected behaviour for Flash Attention version of Phi3. Make sure to '
|
| 1130 |
+
" call `tokenizer.padding_side = 'left'` before tokenizing the input. "
|
| 1131 |
+
)
|
| 1132 |
+
|
| 1133 |
+
if self._attn_implementation == 'flash_attention_2':
|
| 1134 |
+
# 2d mask is passed through the layers
|
| 1135 |
+
attention_mask = attention_mask if (attention_mask is not None and 0 in attention_mask) else None
|
| 1136 |
+
else:
|
| 1137 |
+
# 4d mask is passed through the layers
|
| 1138 |
+
attention_mask = _prepare_4d_causal_attention_mask(
|
| 1139 |
+
attention_mask,
|
| 1140 |
+
(batch_size, seq_length),
|
| 1141 |
+
inputs_embeds,
|
| 1142 |
+
past_key_values_length,
|
| 1143 |
+
sliding_window=self.config.sliding_window,
|
| 1144 |
+
)
|
| 1145 |
+
|
| 1146 |
+
hidden_states = inputs_embeds
|
| 1147 |
+
|
| 1148 |
+
# decoder layers
|
| 1149 |
+
all_hidden_states = () if output_hidden_states else None
|
| 1150 |
+
all_self_attns = () if output_attentions else None
|
| 1151 |
+
next_decoder_cache = None
|
| 1152 |
+
|
| 1153 |
+
for decoder_layer in self.layers:
|
| 1154 |
+
if output_hidden_states:
|
| 1155 |
+
all_hidden_states += (hidden_states,)
|
| 1156 |
+
|
| 1157 |
+
if self.gradient_checkpointing and self.training:
|
| 1158 |
+
layer_outputs = self._gradient_checkpointing_func(
|
| 1159 |
+
decoder_layer.__call__,
|
| 1160 |
+
hidden_states,
|
| 1161 |
+
attention_mask,
|
| 1162 |
+
position_ids,
|
| 1163 |
+
past_key_values,
|
| 1164 |
+
output_attentions,
|
| 1165 |
+
use_cache,
|
| 1166 |
+
)
|
| 1167 |
+
else:
|
| 1168 |
+
layer_outputs = decoder_layer(
|
| 1169 |
+
hidden_states,
|
| 1170 |
+
attention_mask=attention_mask,
|
| 1171 |
+
position_ids=position_ids,
|
| 1172 |
+
past_key_value=past_key_values,
|
| 1173 |
+
output_attentions=output_attentions,
|
| 1174 |
+
use_cache=use_cache,
|
| 1175 |
+
)
|
| 1176 |
+
|
| 1177 |
+
hidden_states = layer_outputs[0]
|
| 1178 |
+
|
| 1179 |
+
if use_cache:
|
| 1180 |
+
next_decoder_cache = layer_outputs[2 if output_attentions else 1]
|
| 1181 |
+
|
| 1182 |
+
if output_attentions:
|
| 1183 |
+
all_self_attns += (layer_outputs[1],)
|
| 1184 |
+
|
| 1185 |
+
hidden_states = self.norm(hidden_states)
|
| 1186 |
+
|
| 1187 |
+
# add hidden states from the last decoder layer
|
| 1188 |
+
if output_hidden_states:
|
| 1189 |
+
all_hidden_states += (hidden_states,)
|
| 1190 |
+
|
| 1191 |
+
next_cache = None
|
| 1192 |
+
if use_cache:
|
| 1193 |
+
next_cache = next_decoder_cache.to_legacy_cache() if use_legacy_cache else next_decoder_cache
|
| 1194 |
+
if not return_dict:
|
| 1195 |
+
return tuple(v for v in [hidden_states, next_cache, all_hidden_states, all_self_attns] if v is not None)
|
| 1196 |
+
return BaseModelOutputWithPast(
|
| 1197 |
+
last_hidden_state=hidden_states,
|
| 1198 |
+
past_key_values=next_cache,
|
| 1199 |
+
hidden_states=all_hidden_states,
|
| 1200 |
+
attentions=all_self_attns,
|
| 1201 |
+
)
|
| 1202 |
+
|
| 1203 |
+
|
| 1204 |
+
class Phi3ForCausalLM(Phi3PreTrainedModel):
|
| 1205 |
+
_tied_weights_keys = ['lm_head.weight']
|
| 1206 |
+
|
| 1207 |
+
# Copied from transformers.models.llama.modeling_llama.LlamaForCausalLM.__init__ with Llama->Phi3
|
| 1208 |
+
def __init__(self, config):
|
| 1209 |
+
super().__init__(config)
|
| 1210 |
+
self.model = Phi3Model(config)
|
| 1211 |
+
self.vocab_size = config.vocab_size
|
| 1212 |
+
self.lm_head = nn.Linear(config.hidden_size, config.vocab_size, bias=False)
|
| 1213 |
+
|
| 1214 |
+
# Initialize weights and apply final processing
|
| 1215 |
+
self.post_init()
|
| 1216 |
+
|
| 1217 |
+
# Copied from transformers.models.llama.modeling_llama.LlamaForCausalLM.get_input_embeddings
|
| 1218 |
+
def get_input_embeddings(self):
|
| 1219 |
+
return self.model.embed_tokens
|
| 1220 |
+
|
| 1221 |
+
# Copied from transformers.models.llama.modeling_llama.LlamaForCausalLM.set_input_embeddings
|
| 1222 |
+
def set_input_embeddings(self, value):
|
| 1223 |
+
self.model.embed_tokens = value
|
| 1224 |
+
|
| 1225 |
+
# Copied from transformers.models.llama.modeling_llama.LlamaForCausalLM.get_output_embeddings
|
| 1226 |
+
def get_output_embeddings(self):
|
| 1227 |
+
return self.lm_head
|
| 1228 |
+
|
| 1229 |
+
# Copied from transformers.models.llama.modeling_llama.LlamaForCausalLM.set_output_embeddings
|
| 1230 |
+
def set_output_embeddings(self, new_embeddings):
|
| 1231 |
+
self.lm_head = new_embeddings
|
| 1232 |
+
|
| 1233 |
+
# Copied from transformers.models.llama.modeling_llama.LlamaForCausalLM.set_decoder
|
| 1234 |
+
def set_decoder(self, decoder):
|
| 1235 |
+
self.model = decoder
|
| 1236 |
+
|
| 1237 |
+
# Copied from transformers.models.llama.modeling_llama.LlamaForCausalLM.get_decoder
|
| 1238 |
+
def get_decoder(self):
|
| 1239 |
+
return self.model
|
| 1240 |
+
|
| 1241 |
+
# Ignore copy
|
| 1242 |
+
@add_start_docstrings_to_model_forward(PHI3_INPUTS_DOCSTRING)
|
| 1243 |
+
@replace_return_docstrings(output_type=CausalLMOutputWithPast, config_class=_CONFIG_FOR_DOC)
|
| 1244 |
+
def forward(
|
| 1245 |
+
self,
|
| 1246 |
+
input_ids: torch.LongTensor = None,
|
| 1247 |
+
attention_mask: Optional[torch.Tensor] = None,
|
| 1248 |
+
position_ids: Optional[torch.LongTensor] = None,
|
| 1249 |
+
past_key_values: Optional[List[torch.FloatTensor]] = None,
|
| 1250 |
+
inputs_embeds: Optional[torch.FloatTensor] = None,
|
| 1251 |
+
labels: Optional[torch.LongTensor] = None,
|
| 1252 |
+
use_cache: Optional[bool] = None,
|
| 1253 |
+
output_attentions: Optional[bool] = None,
|
| 1254 |
+
output_hidden_states: Optional[bool] = None,
|
| 1255 |
+
return_dict: Optional[bool] = None,
|
| 1256 |
+
) -> Union[Tuple, CausalLMOutputWithPast]:
|
| 1257 |
+
r"""
|
| 1258 |
+
Args:
|
| 1259 |
+
labels (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
|
| 1260 |
+
Labels for computing the masked language modeling loss. Indices should either be in `[0, ...,
|
| 1261 |
+
config.vocab_size]` or -100 (see `input_ids` docstring). Tokens with indices set to `-100` are ignored
|
| 1262 |
+
(masked), the loss is only computed for the tokens with labels in `[0, ..., config.vocab_size]`.
|
| 1263 |
+
|
| 1264 |
+
Returns:
|
| 1265 |
+
|
| 1266 |
+
Example:
|
| 1267 |
+
|
| 1268 |
+
```python
|
| 1269 |
+
>>> from transformers import AutoTokenizer, Phi3ForCausalLM
|
| 1270 |
+
|
| 1271 |
+
>>> model = Phi3ForCausalLM.from_pretrained("microsoft/phi-3-mini-4k-instruct")
|
| 1272 |
+
>>> tokenizer = AutoTokenizer.from_pretrained("microsoft/phi-3-mini-4k-instruct")
|
| 1273 |
+
|
| 1274 |
+
>>> prompt = "This is an example script ."
|
| 1275 |
+
>>> inputs = tokenizer(prompt, return_tensors="pt")
|
| 1276 |
+
|
| 1277 |
+
>>> # Generate
|
| 1278 |
+
>>> generate_ids = model.generate(inputs.input_ids, max_length=30)
|
| 1279 |
+
>>> tokenizer.batch_decode(generate_ids, skip_special_tokens=True, clean_up_tokenization_spaces=False)[0]
|
| 1280 |
+
'This is an example script .\n Certainly! Below is a sample script that demonstrates a simple task, such as calculating the sum'
|
| 1281 |
+
```"""
|
| 1282 |
+
|
| 1283 |
+
output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions
|
| 1284 |
+
output_hidden_states = (
|
| 1285 |
+
output_hidden_states if output_hidden_states is not None else self.config.output_hidden_states
|
| 1286 |
+
)
|
| 1287 |
+
return_dict = return_dict if return_dict is not None else self.config.use_return_dict
|
| 1288 |
+
|
| 1289 |
+
# decoder outputs consists of (dec_features, layer_state, dec_hidden, dec_attn)
|
| 1290 |
+
outputs = self.model(
|
| 1291 |
+
input_ids=input_ids,
|
| 1292 |
+
attention_mask=attention_mask,
|
| 1293 |
+
position_ids=position_ids,
|
| 1294 |
+
past_key_values=past_key_values,
|
| 1295 |
+
inputs_embeds=inputs_embeds,
|
| 1296 |
+
use_cache=use_cache,
|
| 1297 |
+
output_attentions=output_attentions,
|
| 1298 |
+
output_hidden_states=output_hidden_states,
|
| 1299 |
+
return_dict=return_dict,
|
| 1300 |
+
)
|
| 1301 |
+
|
| 1302 |
+
hidden_states = outputs[0]
|
| 1303 |
+
logits = self.lm_head(hidden_states)
|
| 1304 |
+
logits = logits.float()
|
| 1305 |
+
|
| 1306 |
+
loss = None
|
| 1307 |
+
if labels is not None:
|
| 1308 |
+
# Shift so that tokens < n predict n
|
| 1309 |
+
shift_logits = logits[..., :-1, :].contiguous()
|
| 1310 |
+
shift_labels = labels[..., 1:].contiguous()
|
| 1311 |
+
# Flatten the tokens
|
| 1312 |
+
loss_fct = CrossEntropyLoss()
|
| 1313 |
+
shift_logits = shift_logits.view(-1, self.config.vocab_size)
|
| 1314 |
+
shift_labels = shift_labels.view(-1)
|
| 1315 |
+
# Enable model parallelism
|
| 1316 |
+
shift_labels = shift_labels.to(shift_logits.device)
|
| 1317 |
+
loss = loss_fct(shift_logits, shift_labels)
|
| 1318 |
+
|
| 1319 |
+
if not return_dict:
|
| 1320 |
+
output = (logits,) + outputs[1:]
|
| 1321 |
+
return (loss,) + output if loss is not None else output
|
| 1322 |
+
|
| 1323 |
+
return CausalLMOutputWithPast(
|
| 1324 |
+
loss=loss,
|
| 1325 |
+
logits=logits,
|
| 1326 |
+
past_key_values=outputs.past_key_values,
|
| 1327 |
+
hidden_states=outputs.hidden_states,
|
| 1328 |
+
attentions=outputs.attentions,
|
| 1329 |
+
)
|
| 1330 |
+
|
| 1331 |
+
# Copied from transformers.models.persimmon.modeling_persimmon.PersimmonForCausalLM.prepare_inputs_for_generation
|
| 1332 |
+
def prepare_inputs_for_generation(
|
| 1333 |
+
self, input_ids, past_key_values=None, attention_mask=None, inputs_embeds=None, **kwargs
|
| 1334 |
+
):
|
| 1335 |
+
if past_key_values is not None:
|
| 1336 |
+
if isinstance(past_key_values, Cache):
|
| 1337 |
+
cache_length = past_key_values.get_seq_length()
|
| 1338 |
+
past_length = past_key_values.seen_tokens
|
| 1339 |
+
max_cache_length = past_key_values.get_max_length()
|
| 1340 |
+
else:
|
| 1341 |
+
cache_length = past_length = past_key_values[0][0].shape[2]
|
| 1342 |
+
max_cache_length = None
|
| 1343 |
+
|
| 1344 |
+
# Keep only the unprocessed tokens:
|
| 1345 |
+
# 1 - If the length of the attention_mask exceeds the length of input_ids, then we are in a setting where
|
| 1346 |
+
# some of the inputs are exclusively passed as part of the cache (e.g. when passing input_embeds as
|
| 1347 |
+
# input)
|
| 1348 |
+
if attention_mask is not None and attention_mask.shape[1] > input_ids.shape[1]:
|
| 1349 |
+
input_ids = input_ids[:, -(attention_mask.shape[1] - past_length) :]
|
| 1350 |
+
# 2 - If the past_length is smaller than input_ids', then input_ids holds all input tokens. We can discard
|
| 1351 |
+
# input_ids based on the past_length.
|
| 1352 |
+
elif past_length < input_ids.shape[1]:
|
| 1353 |
+
input_ids = input_ids[:, past_length:]
|
| 1354 |
+
# 3 - Otherwise (past_length >= input_ids.shape[1]), let's assume input_ids only has unprocessed tokens.
|
| 1355 |
+
|
| 1356 |
+
# If we are about to go beyond the maximum cache length, we need to crop the input attention mask.
|
| 1357 |
+
if (
|
| 1358 |
+
max_cache_length is not None
|
| 1359 |
+
and attention_mask is not None
|
| 1360 |
+
and cache_length + input_ids.shape[1] > max_cache_length
|
| 1361 |
+
):
|
| 1362 |
+
attention_mask = attention_mask[:, -max_cache_length:]
|
| 1363 |
+
|
| 1364 |
+
position_ids = kwargs.get('position_ids', None)
|
| 1365 |
+
if attention_mask is not None and position_ids is None:
|
| 1366 |
+
# create position_ids on the fly for batch generation
|
| 1367 |
+
position_ids = attention_mask.long().cumsum(-1) - 1
|
| 1368 |
+
position_ids.masked_fill_(attention_mask == 0, 1)
|
| 1369 |
+
if past_key_values:
|
| 1370 |
+
position_ids = position_ids[:, -input_ids.shape[1] :]
|
| 1371 |
+
|
| 1372 |
+
# if `inputs_embeds` are passed, we only want to use them in the 1st generation step
|
| 1373 |
+
if (inputs_embeds is not None and past_key_values is None) or (inputs_embeds is not None and len(past_key_values) == 0):
|
| 1374 |
+
model_inputs = {'inputs_embeds': inputs_embeds}
|
| 1375 |
+
else:
|
| 1376 |
+
model_inputs = {'input_ids': input_ids}
|
| 1377 |
+
|
| 1378 |
+
model_inputs.update(
|
| 1379 |
+
{
|
| 1380 |
+
'position_ids': position_ids,
|
| 1381 |
+
'past_key_values': past_key_values,
|
| 1382 |
+
'use_cache': kwargs.get('use_cache'),
|
| 1383 |
+
'attention_mask': attention_mask,
|
| 1384 |
+
}
|
| 1385 |
+
)
|
| 1386 |
+
return model_inputs
|
| 1387 |
+
|
| 1388 |
+
@staticmethod
|
| 1389 |
+
# Copied from transformers.models.llama.modeling_llama.LlamaForCausalLM._reorder_cache
|
| 1390 |
+
def _reorder_cache(past_key_values, beam_idx):
|
| 1391 |
+
reordered_past = ()
|
| 1392 |
+
for layer_past in past_key_values:
|
| 1393 |
+
reordered_past += (
|
| 1394 |
+
tuple(past_state.index_select(0, beam_idx.to(past_state.device)) for past_state in layer_past),
|
| 1395 |
+
)
|
| 1396 |
+
return reordered_past
|
| 1397 |
+
|
| 1398 |
+
|
| 1399 |
+
@add_start_docstrings(
|
| 1400 |
+
"""
|
| 1401 |
+
The [`Phi3Model`] with a sequence classification head on top (linear layer).
|
| 1402 |
+
|
| 1403 |
+
[`Phi3ForSequenceClassification`] uses the last token in order to do the classification, as other causal models
|
| 1404 |
+
(e.g. GPT-2) do.
|
| 1405 |
+
|
| 1406 |
+
Since it does classification on the last token, it requires to know the position of the last token. If a
|
| 1407 |
+
`pad_token_id` is defined in the configuration, it finds the last token that is not a padding token in each row. If
|
| 1408 |
+
no `pad_token_id` is defined, it simply takes the last value in each row of the batch. Since it cannot guess the
|
| 1409 |
+
padding tokens when `inputs_embeds` are passed instead of `input_ids`, it does the same (take the last value in
|
| 1410 |
+
each row of the batch).
|
| 1411 |
+
""",
|
| 1412 |
+
PHI3_START_DOCSTRING,
|
| 1413 |
+
)
|
| 1414 |
+
# Copied from transformers.models.llama.modeling_llama.LlamaForSequenceClassification with Llama->Phi3, LLAMA->PHI3, self.transformer->self.model, transformer_outputs->model_outputs
|
| 1415 |
+
class Phi3ForSequenceClassification(Phi3PreTrainedModel):
|
| 1416 |
+
def __init__(self, config):
|
| 1417 |
+
super().__init__(config)
|
| 1418 |
+
self.num_labels = config.num_labels
|
| 1419 |
+
self.model = Phi3Model(config)
|
| 1420 |
+
self.score = nn.Linear(config.hidden_size, self.num_labels, bias=False)
|
| 1421 |
+
|
| 1422 |
+
# Initialize weights and apply final processing
|
| 1423 |
+
self.post_init()
|
| 1424 |
+
|
| 1425 |
+
def get_input_embeddings(self):
|
| 1426 |
+
return self.model.embed_tokens
|
| 1427 |
+
|
| 1428 |
+
def set_input_embeddings(self, value):
|
| 1429 |
+
self.model.embed_tokens = value
|
| 1430 |
+
|
| 1431 |
+
@add_start_docstrings_to_model_forward(PHI3_INPUTS_DOCSTRING)
|
| 1432 |
+
def forward(
|
| 1433 |
+
self,
|
| 1434 |
+
input_ids: torch.LongTensor = None,
|
| 1435 |
+
attention_mask: Optional[torch.Tensor] = None,
|
| 1436 |
+
position_ids: Optional[torch.LongTensor] = None,
|
| 1437 |
+
past_key_values: Optional[List[torch.FloatTensor]] = None,
|
| 1438 |
+
inputs_embeds: Optional[torch.FloatTensor] = None,
|
| 1439 |
+
labels: Optional[torch.LongTensor] = None,
|
| 1440 |
+
use_cache: Optional[bool] = None,
|
| 1441 |
+
output_attentions: Optional[bool] = None,
|
| 1442 |
+
output_hidden_states: Optional[bool] = None,
|
| 1443 |
+
return_dict: Optional[bool] = None,
|
| 1444 |
+
) -> Union[Tuple, SequenceClassifierOutputWithPast]:
|
| 1445 |
+
r"""
|
| 1446 |
+
labels (`torch.LongTensor` of shape `(batch_size,)`, *optional*):
|
| 1447 |
+
Labels for computing the sequence classification/regression loss. Indices should be in `[0, ...,
|
| 1448 |
+
config.num_labels - 1]`. If `config.num_labels == 1` a regression loss is computed (Mean-Square loss), If
|
| 1449 |
+
`config.num_labels > 1` a classification loss is computed (Cross-Entropy).
|
| 1450 |
+
"""
|
| 1451 |
+
return_dict = return_dict if return_dict is not None else self.config.use_return_dict
|
| 1452 |
+
|
| 1453 |
+
model_outputs = self.model(
|
| 1454 |
+
input_ids,
|
| 1455 |
+
attention_mask=attention_mask,
|
| 1456 |
+
position_ids=position_ids,
|
| 1457 |
+
past_key_values=past_key_values,
|
| 1458 |
+
inputs_embeds=inputs_embeds,
|
| 1459 |
+
use_cache=use_cache,
|
| 1460 |
+
output_attentions=output_attentions,
|
| 1461 |
+
output_hidden_states=output_hidden_states,
|
| 1462 |
+
return_dict=return_dict,
|
| 1463 |
+
)
|
| 1464 |
+
hidden_states = model_outputs[0]
|
| 1465 |
+
logits = self.score(hidden_states)
|
| 1466 |
+
|
| 1467 |
+
if input_ids is not None:
|
| 1468 |
+
batch_size = input_ids.shape[0]
|
| 1469 |
+
else:
|
| 1470 |
+
batch_size = inputs_embeds.shape[0]
|
| 1471 |
+
|
| 1472 |
+
if self.config.pad_token_id is None and batch_size != 1:
|
| 1473 |
+
raise ValueError('Cannot handle batch sizes > 1 if no padding token is defined.')
|
| 1474 |
+
if self.config.pad_token_id is None:
|
| 1475 |
+
sequence_lengths = -1
|
| 1476 |
+
else:
|
| 1477 |
+
if input_ids is not None:
|
| 1478 |
+
# if no pad token found, use modulo instead of reverse indexing for ONNX compatibility
|
| 1479 |
+
sequence_lengths = torch.eq(input_ids, self.config.pad_token_id).int().argmax(-1) - 1
|
| 1480 |
+
sequence_lengths = sequence_lengths % input_ids.shape[-1]
|
| 1481 |
+
sequence_lengths = sequence_lengths.to(logits.device)
|
| 1482 |
+
else:
|
| 1483 |
+
sequence_lengths = -1
|
| 1484 |
+
|
| 1485 |
+
pooled_logits = logits[torch.arange(batch_size, device=logits.device), sequence_lengths]
|
| 1486 |
+
|
| 1487 |
+
loss = None
|
| 1488 |
+
if labels is not None:
|
| 1489 |
+
labels = labels.to(logits.device)
|
| 1490 |
+
if self.config.problem_type is None:
|
| 1491 |
+
if self.num_labels == 1:
|
| 1492 |
+
self.config.problem_type = 'regression'
|
| 1493 |
+
elif self.num_labels > 1 and (labels.dtype == torch.long or labels.dtype == torch.int):
|
| 1494 |
+
self.config.problem_type = 'single_label_classification'
|
| 1495 |
+
else:
|
| 1496 |
+
self.config.problem_type = 'multi_label_classification'
|
| 1497 |
+
|
| 1498 |
+
if self.config.problem_type == 'regression':
|
| 1499 |
+
loss_fct = MSELoss()
|
| 1500 |
+
if self.num_labels == 1:
|
| 1501 |
+
loss = loss_fct(pooled_logits.squeeze(), labels.squeeze())
|
| 1502 |
+
else:
|
| 1503 |
+
loss = loss_fct(pooled_logits, labels)
|
| 1504 |
+
elif self.config.problem_type == 'single_label_classification':
|
| 1505 |
+
loss_fct = CrossEntropyLoss()
|
| 1506 |
+
loss = loss_fct(pooled_logits.view(-1, self.num_labels), labels.view(-1))
|
| 1507 |
+
elif self.config.problem_type == 'multi_label_classification':
|
| 1508 |
+
loss_fct = BCEWithLogitsLoss()
|
| 1509 |
+
loss = loss_fct(pooled_logits, labels)
|
| 1510 |
+
if not return_dict:
|
| 1511 |
+
output = (pooled_logits,) + model_outputs[1:]
|
| 1512 |
+
return ((loss,) + output) if loss is not None else output
|
| 1513 |
+
|
| 1514 |
+
return SequenceClassifierOutputWithPast(
|
| 1515 |
+
loss=loss,
|
| 1516 |
+
logits=pooled_logits,
|
| 1517 |
+
past_key_values=model_outputs.past_key_values,
|
| 1518 |
+
hidden_states=model_outputs.hidden_states,
|
| 1519 |
+
attentions=model_outputs.attentions,
|
| 1520 |
+
)
|
| 1521 |
+
|
| 1522 |
+
|
| 1523 |
+
@add_start_docstrings(
|
| 1524 |
+
"""
|
| 1525 |
+
[`Phi3Model`] with a token classification head on top (a linear layer on top of the hidden-states output) e.g. for
|
| 1526 |
+
Named-Entity-Recognition (NER) tasks.
|
| 1527 |
+
""",
|
| 1528 |
+
PHI3_START_DOCSTRING,
|
| 1529 |
+
)
|
| 1530 |
+
# Copied from transformers.models.mpt.modeling_mpt.MptForTokenClassification with Mpt->Phi3,MPT->PHI3,self.transformer->self.model,transformer_outputs->model_outputs
|
| 1531 |
+
class Phi3ForTokenClassification(Phi3PreTrainedModel):
|
| 1532 |
+
def __init__(self, config: Phi3Config):
|
| 1533 |
+
super().__init__(config)
|
| 1534 |
+
self.num_labels = config.num_labels
|
| 1535 |
+
|
| 1536 |
+
self.model = Phi3Model(config)
|
| 1537 |
+
if hasattr(config, 'classifier_dropout') and config.classifier_dropout is not None:
|
| 1538 |
+
classifier_dropout = config.classifier_dropout
|
| 1539 |
+
elif hasattr(config, 'hidden_dropout') and config.hidden_dropout is not None:
|
| 1540 |
+
classifier_dropout = config.hidden_dropout
|
| 1541 |
+
else:
|
| 1542 |
+
classifier_dropout = 0.1
|
| 1543 |
+
self.dropout = nn.Dropout(classifier_dropout)
|
| 1544 |
+
self.classifier = nn.Linear(config.hidden_size, config.num_labels)
|
| 1545 |
+
|
| 1546 |
+
# Initialize weights and apply final processing
|
| 1547 |
+
self.post_init()
|
| 1548 |
+
|
| 1549 |
+
@add_start_docstrings_to_model_forward(PHI3_INPUTS_DOCSTRING)
|
| 1550 |
+
@add_code_sample_docstrings(
|
| 1551 |
+
checkpoint=_CHECKPOINT_FOR_DOC,
|
| 1552 |
+
output_type=TokenClassifierOutput,
|
| 1553 |
+
config_class=_CONFIG_FOR_DOC,
|
| 1554 |
+
)
|
| 1555 |
+
def forward(
|
| 1556 |
+
self,
|
| 1557 |
+
input_ids: Optional[torch.LongTensor] = None,
|
| 1558 |
+
past_key_values: Optional[Tuple[Tuple[torch.Tensor, torch.Tensor], ...]] = None,
|
| 1559 |
+
attention_mask: Optional[torch.Tensor] = None,
|
| 1560 |
+
inputs_embeds: Optional[torch.Tensor] = None,
|
| 1561 |
+
labels: Optional[torch.Tensor] = None,
|
| 1562 |
+
use_cache: Optional[bool] = None,
|
| 1563 |
+
output_attentions: Optional[bool] = None,
|
| 1564 |
+
output_hidden_states: Optional[bool] = None,
|
| 1565 |
+
return_dict: Optional[bool] = None,
|
| 1566 |
+
**deprecated_arguments,
|
| 1567 |
+
) -> Union[Tuple[torch.Tensor], TokenClassifierOutput]:
|
| 1568 |
+
r"""
|
| 1569 |
+
labels (`torch.LongTensor` of shape `(batch_size,)`, *optional*):
|
| 1570 |
+
Labels for computing the sequence classification/regression loss. Indices should be in `[0, ...,
|
| 1571 |
+
config.num_labels - 1]`. If `config.num_labels == 1` a regression loss is computed (Mean-Square loss), If
|
| 1572 |
+
`config.num_labels > 1` a classification loss is computed (Cross-Entropy).
|
| 1573 |
+
"""
|
| 1574 |
+
return_dict = return_dict if return_dict is not None else self.config.use_return_dict
|
| 1575 |
+
|
| 1576 |
+
model_outputs = self.model(
|
| 1577 |
+
input_ids,
|
| 1578 |
+
past_key_values=past_key_values,
|
| 1579 |
+
attention_mask=attention_mask,
|
| 1580 |
+
inputs_embeds=inputs_embeds,
|
| 1581 |
+
use_cache=use_cache,
|
| 1582 |
+
output_attentions=output_attentions,
|
| 1583 |
+
output_hidden_states=output_hidden_states,
|
| 1584 |
+
return_dict=return_dict,
|
| 1585 |
+
)
|
| 1586 |
+
|
| 1587 |
+
hidden_states = model_outputs[0]
|
| 1588 |
+
hidden_states = self.dropout(hidden_states)
|
| 1589 |
+
logits = self.classifier(hidden_states)
|
| 1590 |
+
|
| 1591 |
+
loss = None
|
| 1592 |
+
if labels is not None:
|
| 1593 |
+
# move labels to correct device to enable model parallelism
|
| 1594 |
+
labels = labels.to(logits.device)
|
| 1595 |
+
batch_size, seq_length = labels.shape
|
| 1596 |
+
loss_fct = CrossEntropyLoss()
|
| 1597 |
+
loss = loss_fct(
|
| 1598 |
+
logits.view(batch_size * seq_length, self.num_labels), labels.view(batch_size * seq_length)
|
| 1599 |
+
)
|
| 1600 |
+
|
| 1601 |
+
if not return_dict:
|
| 1602 |
+
output = (logits,) + model_outputs[2:]
|
| 1603 |
+
return ((loss,) + output) if loss is not None else output
|
| 1604 |
+
|
| 1605 |
+
return TokenClassifierOutput(
|
| 1606 |
+
loss=loss,
|
| 1607 |
+
logits=logits,
|
| 1608 |
+
hidden_states=model_outputs.hidden_states,
|
| 1609 |
+
attentions=model_outputs.attentions,
|
| 1610 |
+
)
|
eneas/vendor/SeC/inference/modeling_sec.py
ADDED
|
@@ -0,0 +1,857 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# --------------------------------------------------------
|
| 2 |
+
# InternVL
|
| 3 |
+
# Copyright (c) 2024 OpenGVLab
|
| 4 |
+
# Licensed under The MIT License [see LICENSE for details]
|
| 5 |
+
# --------------------------------------------------------
|
| 6 |
+
import os
|
| 7 |
+
import warnings
|
| 8 |
+
from typing import Any, List, Optional, Tuple, Union
|
| 9 |
+
|
| 10 |
+
import torchvision.transforms as T
|
| 11 |
+
from torchvision.transforms.functional import InterpolationMode
|
| 12 |
+
|
| 13 |
+
import torch.utils.checkpoint
|
| 14 |
+
import transformers
|
| 15 |
+
|
| 16 |
+
from .modeling_internlm2 import InternLM2ForCausalLM
|
| 17 |
+
# from .modeling_phi3 import Phi3ForCausalLM # Not used by SeC-4B
|
| 18 |
+
from peft import LoraConfig, get_peft_model
|
| 19 |
+
from torch import nn
|
| 20 |
+
from torch.nn import CrossEntropyLoss
|
| 21 |
+
from transformers import (AutoModel, GenerationConfig, LlamaForCausalLM,
|
| 22 |
+
LlamaTokenizer, Qwen2ForCausalLM)
|
| 23 |
+
from transformers.modeling_outputs import CausalLMOutputWithPast
|
| 24 |
+
from transformers.modeling_utils import PreTrainedModel
|
| 25 |
+
from transformers.utils import ModelOutput, logging
|
| 26 |
+
from transformers import StoppingCriteriaList, StoppingCriteria
|
| 27 |
+
|
| 28 |
+
from .configuration_sec import SeCConfig
|
| 29 |
+
from .modeling_intern_vit import InternVisionModel, has_flash_attn
|
| 30 |
+
|
| 31 |
+
from .sam2_video_predictor import build_sam2_video_predictor, SAM2VideoPredictor
|
| 32 |
+
from .templates import PROMPT_TEMPLATE
|
| 33 |
+
|
| 34 |
+
import cv2
|
| 35 |
+
import numpy as np
|
| 36 |
+
from torchvision.transforms.functional import resize, to_pil_image
|
| 37 |
+
|
| 38 |
+
from types import MethodType
|
| 39 |
+
import torch.nn.functional as F
|
| 40 |
+
|
| 41 |
+
from tqdm import tqdm
|
| 42 |
+
from PIL import Image
|
| 43 |
+
import copy
|
| 44 |
+
import random
|
| 45 |
+
random.seed(42)
|
| 46 |
+
try:
|
| 47 |
+
from .flash_attention import FlashAttention
|
| 48 |
+
has_flash_attn = True
|
| 49 |
+
except:
|
| 50 |
+
print('FlashAttention is not installed.')
|
| 51 |
+
has_flash_attn = False
|
| 52 |
+
|
| 53 |
+
logger = logging.get_logger(__name__)
|
| 54 |
+
|
| 55 |
+
def version_cmp(v1, v2, op='eq'):
|
| 56 |
+
import operator
|
| 57 |
+
|
| 58 |
+
from packaging import version
|
| 59 |
+
op_func = getattr(operator, op)
|
| 60 |
+
return op_func(version.parse(v1), version.parse(v2))
|
| 61 |
+
|
| 62 |
+
class StopWordStoppingCriteria(StoppingCriteria):
|
| 63 |
+
"""StopWord stopping criteria."""
|
| 64 |
+
|
| 65 |
+
def __init__(self, tokenizer, stop_word):
|
| 66 |
+
self.tokenizer = tokenizer
|
| 67 |
+
self.stop_word = stop_word
|
| 68 |
+
self.length = len(self.stop_word)
|
| 69 |
+
|
| 70 |
+
def __call__(self, input_ids, *args, **kwargs) -> bool:
|
| 71 |
+
cur_text = self.tokenizer.decode(input_ids[0])
|
| 72 |
+
cur_text = cur_text.replace('\r', '').replace('\n', '')
|
| 73 |
+
return cur_text[-self.length:] == self.stop_word
|
| 74 |
+
|
| 75 |
+
def get_stop_criteria(
|
| 76 |
+
tokenizer,
|
| 77 |
+
stop_words=[],
|
| 78 |
+
):
|
| 79 |
+
stop_criteria = StoppingCriteriaList()
|
| 80 |
+
for word in stop_words:
|
| 81 |
+
stop_criteria.append(StopWordStoppingCriteria(tokenizer, word))
|
| 82 |
+
return stop_criteria
|
| 83 |
+
|
| 84 |
+
class DirectResize:
|
| 85 |
+
def __init__(self, target_length: int) -> None:
|
| 86 |
+
self.target_length = target_length
|
| 87 |
+
|
| 88 |
+
def apply_image(self, image: np.ndarray) -> np.ndarray:
|
| 89 |
+
"""
|
| 90 |
+
Expects a numpy array with shape HxWxC in uint8 format.
|
| 91 |
+
"""
|
| 92 |
+
img = to_pil_image(image, mode='RGB')
|
| 93 |
+
return np.array(img.resize((self.target_length, self.target_length)))
|
| 94 |
+
|
| 95 |
+
|
| 96 |
+
class SeCModel(PreTrainedModel):
|
| 97 |
+
config_class = SeCConfig
|
| 98 |
+
main_input_name = 'pixel_values'
|
| 99 |
+
base_model_prefix = 'language_model'
|
| 100 |
+
_no_split_modules = ['InternVisionModel', 'LlamaDecoderLayer', 'InternLM2DecoderLayer',
|
| 101 |
+
'Phi3DecoderLayer', 'Qwen2DecoderLayer', 'SAM2']
|
| 102 |
+
_supports_flash_attn_2 = True
|
| 103 |
+
supports_gradient_checkpointing = True
|
| 104 |
+
|
| 105 |
+
def __init__(self, config: SeCConfig, vision_model=None, language_model=None, use_flash_attn=True):
|
| 106 |
+
super().__init__(config)
|
| 107 |
+
|
| 108 |
+
assert version_cmp(transformers.__version__, '4.37.0', 'ge')
|
| 109 |
+
image_size = config.force_image_size or config.vision_config.image_size
|
| 110 |
+
patch_size = config.vision_config.patch_size
|
| 111 |
+
self.patch_size = patch_size
|
| 112 |
+
self.select_layer = config.select_layer
|
| 113 |
+
self.template = config.template
|
| 114 |
+
self.template = self.template.replace('-', '_')
|
| 115 |
+
self.num_image_token = int((image_size // patch_size) ** 2 * (config.downsample_ratio ** 2))
|
| 116 |
+
self.downsample_ratio = config.downsample_ratio
|
| 117 |
+
self.ps_version = config.ps_version
|
| 118 |
+
self.llm_arch_name = config.llm_config.architectures[0]
|
| 119 |
+
|
| 120 |
+
use_flash_attn = use_flash_attn if has_flash_attn else False
|
| 121 |
+
config.vision_config.use_flash_attn = True if use_flash_attn else False
|
| 122 |
+
config.llm_config._attn_implementation = 'flash_attention_2' if use_flash_attn else 'eager'
|
| 123 |
+
|
| 124 |
+
logger.info(f'num_image_token: {self.num_image_token}')
|
| 125 |
+
logger.info(f'ps_version: {self.ps_version}')
|
| 126 |
+
if vision_model is not None:
|
| 127 |
+
self.vision_model = vision_model
|
| 128 |
+
else:
|
| 129 |
+
self.vision_model = InternVisionModel(config.vision_config)
|
| 130 |
+
if language_model is not None:
|
| 131 |
+
self.language_model = language_model
|
| 132 |
+
else:
|
| 133 |
+
if config.llm_config.architectures[0] == 'LlamaForCausalLM':
|
| 134 |
+
self.language_model = LlamaForCausalLM(config.llm_config)
|
| 135 |
+
elif config.llm_config.architectures[0] == 'InternLM2ForCausalLM':
|
| 136 |
+
self.language_model = InternLM2ForCausalLM(config.llm_config)
|
| 137 |
+
# elif config.llm_config.architectures[0] == 'Phi3ForCausalLM':
|
| 138 |
+
# self.language_model = Phi3ForCausalLM(config.llm_config) # Not used by SeC-4B
|
| 139 |
+
elif config.llm_config.architectures[0] == 'Qwen2ForCausalLM':
|
| 140 |
+
self.language_model = Qwen2ForCausalLM(config.llm_config)
|
| 141 |
+
else:
|
| 142 |
+
raise NotImplementedError(f'{config.llm_config.architectures[0]} is not implemented.')
|
| 143 |
+
|
| 144 |
+
vit_hidden_size = config.vision_config.hidden_size
|
| 145 |
+
llm_hidden_size = config.llm_config.hidden_size
|
| 146 |
+
|
| 147 |
+
self.mlp1 = nn.Sequential(
|
| 148 |
+
nn.LayerNorm(vit_hidden_size * int(1 / self.downsample_ratio) ** 2),
|
| 149 |
+
nn.Linear(vit_hidden_size * int(1 / self.downsample_ratio) ** 2, llm_hidden_size),
|
| 150 |
+
nn.GELU(),
|
| 151 |
+
nn.Linear(llm_hidden_size, llm_hidden_size)
|
| 152 |
+
)
|
| 153 |
+
|
| 154 |
+
self.img_context_token_id = None
|
| 155 |
+
self.conv_template = PROMPT_TEMPLATE[self.template]
|
| 156 |
+
self.template = self.conv_template
|
| 157 |
+
if hasattr(config, 'system_message'):
|
| 158 |
+
self.system_message = config.system_message
|
| 159 |
+
self.num_samples = 0
|
| 160 |
+
|
| 161 |
+
if config.use_backbone_lora:
|
| 162 |
+
self.wrap_backbone_lora(r=config.use_backbone_lora, lora_alpha=2 * config.use_backbone_lora)
|
| 163 |
+
|
| 164 |
+
if config.use_llm_lora:
|
| 165 |
+
self.wrap_llm_lora(r=config.use_llm_lora, lora_alpha=2 * config.use_llm_lora)
|
| 166 |
+
|
| 167 |
+
apply_postprocessing = getattr(config, 'apply_postprocessing', True)
|
| 168 |
+
hydra_overrides_extra = getattr(config, 'hydra_overrides_extra', [])
|
| 169 |
+
grounding_maskmem_num = getattr(config, 'grounding_maskmem_num', 22)
|
| 170 |
+
self.grounding_encoder = build_sam2_video_predictor(
|
| 171 |
+
config.grounding_encoder_config,
|
| 172 |
+
num_maskmem=grounding_maskmem_num,
|
| 173 |
+
apply_postprocessing=apply_postprocessing,
|
| 174 |
+
hydra_overrides_extra=hydra_overrides_extra
|
| 175 |
+
)
|
| 176 |
+
self.grounding_encoder.token_attn = copy.deepcopy(self.grounding_encoder.memory_attention)
|
| 177 |
+
|
| 178 |
+
in_dim = llm_hidden_size
|
| 179 |
+
out_dim = self.grounding_encoder.hidden_dim
|
| 180 |
+
self.text_hidden_fcs = nn.Sequential(
|
| 181 |
+
nn.Linear(in_dim, in_dim), nn.ReLU(inplace=True),
|
| 182 |
+
nn.Linear(in_dim, out_dim), nn.Dropout(0.0)
|
| 183 |
+
)
|
| 184 |
+
|
| 185 |
+
self.init_prediction_config = False
|
| 186 |
+
|
| 187 |
+
def wrap_backbone_lora(self, r=128, lora_alpha=256, lora_dropout=0.05):
|
| 188 |
+
lora_config = LoraConfig(
|
| 189 |
+
r=r,
|
| 190 |
+
target_modules=['attn.qkv', 'attn.proj', 'mlp.fc1', 'mlp.fc2'],
|
| 191 |
+
lora_alpha=lora_alpha,
|
| 192 |
+
lora_dropout=lora_dropout,
|
| 193 |
+
)
|
| 194 |
+
self.vision_model = get_peft_model(self.vision_model, lora_config)
|
| 195 |
+
self.vision_model.print_trainable_parameters()
|
| 196 |
+
|
| 197 |
+
def wrap_llm_lora(self, r=128, lora_alpha=256, lora_dropout=0.05):
|
| 198 |
+
# Determine the target modules based on the architecture of the language model
|
| 199 |
+
if self.llm_arch_name == 'InternLM2ForCausalLM':
|
| 200 |
+
target_modules = ['attention.wqkv', 'attention.wo', 'feed_forward.w1', 'feed_forward.w2', 'feed_forward.w3']
|
| 201 |
+
elif self.llm_arch_name == 'Phi3ForCausalLM':
|
| 202 |
+
target_modules = ['mlp.down_proj', 'mlp.gate_up_proj', 'self_attn.o_proj', 'self_attn.qkv_proj']
|
| 203 |
+
elif self.llm_arch_name in ['Qwen2ForCausalLM', 'LlamaForCausalLM']:
|
| 204 |
+
target_modules = ['self_attn.q_proj', 'self_attn.k_proj', 'self_attn.v_proj', 'self_attn.o_proj',
|
| 205 |
+
'mlp.gate_proj', 'mlp.down_proj', 'mlp.up_proj']
|
| 206 |
+
else:
|
| 207 |
+
raise NotImplemented
|
| 208 |
+
lora_config = LoraConfig(
|
| 209 |
+
r=r,
|
| 210 |
+
target_modules=target_modules,
|
| 211 |
+
lora_alpha=lora_alpha,
|
| 212 |
+
lora_dropout=lora_dropout,
|
| 213 |
+
task_type='CAUSAL_LM'
|
| 214 |
+
)
|
| 215 |
+
self.language_model = get_peft_model(self.language_model, lora_config)
|
| 216 |
+
self.language_model.enable_input_require_grads()
|
| 217 |
+
self.language_model.print_trainable_parameters()
|
| 218 |
+
|
| 219 |
+
def pixel_shuffle(self, x, scale_factor=0.5):
|
| 220 |
+
n, w, h, c = x.size()
|
| 221 |
+
# N, W, H, C --> N, W, H * scale, C // scale
|
| 222 |
+
x = x.view(n, w, int(h * scale_factor), int(c / scale_factor))
|
| 223 |
+
# N, W, H * scale, C // scale --> N, H * scale, W, C // scale
|
| 224 |
+
x = x.permute(0, 2, 1, 3).contiguous()
|
| 225 |
+
# N, H * scale, W, C // scale --> N, H * scale, W * scale, C // (scale ** 2)
|
| 226 |
+
x = x.view(n, int(h * scale_factor), int(w * scale_factor),
|
| 227 |
+
int(c / (scale_factor * scale_factor)))
|
| 228 |
+
if self.ps_version == 'v1':
|
| 229 |
+
warnings.warn("In ps_version 'v1', the height and width have not been swapped back, "
|
| 230 |
+
'which results in a transposed image.')
|
| 231 |
+
else:
|
| 232 |
+
x = x.permute(0, 2, 1, 3).contiguous()
|
| 233 |
+
return x
|
| 234 |
+
|
| 235 |
+
def extract_feature(self, pixel_values):
|
| 236 |
+
if self.select_layer == -1:
|
| 237 |
+
vit_embeds = self.vision_model(
|
| 238 |
+
pixel_values=pixel_values,
|
| 239 |
+
output_hidden_states=False,
|
| 240 |
+
return_dict=True).last_hidden_state
|
| 241 |
+
else:
|
| 242 |
+
vit_embeds = self.vision_model(
|
| 243 |
+
pixel_values=pixel_values,
|
| 244 |
+
output_hidden_states=True,
|
| 245 |
+
return_dict=True).hidden_states[self.select_layer]
|
| 246 |
+
vit_embeds = vit_embeds[:, 1:, :]
|
| 247 |
+
|
| 248 |
+
h = w = int(vit_embeds.shape[1] ** 0.5)
|
| 249 |
+
vit_embeds = vit_embeds.reshape(vit_embeds.shape[0], h, w, -1)
|
| 250 |
+
vit_embeds = self.pixel_shuffle(vit_embeds, scale_factor=self.downsample_ratio)
|
| 251 |
+
vit_embeds = vit_embeds.reshape(vit_embeds.shape[0], -1, vit_embeds.shape[-1])
|
| 252 |
+
vit_embeds = self.mlp1(vit_embeds)
|
| 253 |
+
return vit_embeds
|
| 254 |
+
|
| 255 |
+
@property
|
| 256 |
+
def lm_head(self):
|
| 257 |
+
return self.language_model.get_output_embeddings()
|
| 258 |
+
|
| 259 |
+
def get_input_embeddings(self):
|
| 260 |
+
return self.language_model.get_input_embeddings()
|
| 261 |
+
|
| 262 |
+
def get_output_embeddings(self):
|
| 263 |
+
return self.language_model.get_output_embeddings()
|
| 264 |
+
|
| 265 |
+
def forward(self, data, data_samples=None, mode='loss'):
|
| 266 |
+
pixel_values = data['pixel_values']
|
| 267 |
+
|
| 268 |
+
if type(pixel_values) is list or pixel_values.ndim == 5:
|
| 269 |
+
if type(pixel_values) is list:
|
| 270 |
+
pixel_values = [
|
| 271 |
+
x.unsqueeze(0) if x.ndim == 3 else x for x in pixel_values
|
| 272 |
+
]
|
| 273 |
+
# b*n, c, h, w
|
| 274 |
+
concat_images = torch.cat(
|
| 275 |
+
[image.to(self.vision_model.dtype) for image in pixel_values], dim=0)
|
| 276 |
+
else:
|
| 277 |
+
raise NotImplementedError()
|
| 278 |
+
|
| 279 |
+
input_ids = data['input_ids']
|
| 280 |
+
position_ids = data['position_ids']
|
| 281 |
+
attention_mask = data['attention_mask']
|
| 282 |
+
# sum is 0 are text
|
| 283 |
+
image_flags = torch.sum(concat_images, dim=(1, 2, 3)) != 0
|
| 284 |
+
image_flags = image_flags.long()
|
| 285 |
+
|
| 286 |
+
labels = data['labels']
|
| 287 |
+
use_cache = False
|
| 288 |
+
|
| 289 |
+
outputs = self._llm_forward(
|
| 290 |
+
input_ids=input_ids,
|
| 291 |
+
position_ids=position_ids,
|
| 292 |
+
attention_mask=attention_mask,
|
| 293 |
+
image_flags=image_flags,
|
| 294 |
+
pixel_values=concat_images,
|
| 295 |
+
labels=labels,
|
| 296 |
+
use_cache=use_cache,
|
| 297 |
+
output_hidden_states=True,
|
| 298 |
+
)
|
| 299 |
+
|
| 300 |
+
return outputs
|
| 301 |
+
|
| 302 |
+
def _llm_forward(
|
| 303 |
+
self,
|
| 304 |
+
pixel_values: torch.FloatTensor,
|
| 305 |
+
input_ids: torch.LongTensor = None,
|
| 306 |
+
attention_mask: Optional[torch.Tensor] = None,
|
| 307 |
+
position_ids: Optional[torch.LongTensor] = None,
|
| 308 |
+
image_flags: Optional[torch.LongTensor] = None,
|
| 309 |
+
past_key_values: Optional[List[torch.FloatTensor]] = None,
|
| 310 |
+
labels: Optional[torch.LongTensor] = None,
|
| 311 |
+
use_cache: Optional[bool] = None,
|
| 312 |
+
output_attentions: Optional[bool] = None,
|
| 313 |
+
output_hidden_states: Optional[bool] = None,
|
| 314 |
+
return_dict: Optional[bool] = None,
|
| 315 |
+
) -> Union[Tuple, CausalLMOutputWithPast]:
|
| 316 |
+
return_dict = return_dict if return_dict is not None \
|
| 317 |
+
else self.config.use_return_dict
|
| 318 |
+
|
| 319 |
+
image_flags = image_flags.squeeze(-1)
|
| 320 |
+
# We only added the clone code here to avoid the error.
|
| 321 |
+
input_embeds = self.language_model.get_input_embeddings()(
|
| 322 |
+
input_ids).clone()
|
| 323 |
+
|
| 324 |
+
vit_embeds = self.extract_feature(pixel_values)
|
| 325 |
+
vit_embeds = vit_embeds.to(input_embeds.dtype) # FIXME: why vit_embeds is float16?
|
| 326 |
+
fast_vit_embeds = None
|
| 327 |
+
|
| 328 |
+
vit_embeds = vit_embeds[image_flags == 1]
|
| 329 |
+
vit_batch_size = pixel_values.shape[0]
|
| 330 |
+
|
| 331 |
+
B, N, C = input_embeds.shape
|
| 332 |
+
input_embeds = input_embeds.reshape(B * N, C)
|
| 333 |
+
|
| 334 |
+
input_ids = input_ids.reshape(B * N)
|
| 335 |
+
selected = (input_ids == self.img_context_token_id)
|
| 336 |
+
|
| 337 |
+
try:
|
| 338 |
+
input_embeds[selected] = vit_embeds.reshape(-1, C)
|
| 339 |
+
except Exception as e:
|
| 340 |
+
vit_embeds = vit_embeds.reshape(-1, C)
|
| 341 |
+
print(f'warning: {e}, input_embeds[selected].shape='
|
| 342 |
+
f'{input_embeds[selected].shape}, '
|
| 343 |
+
f'vit_embeds.shape={vit_embeds.shape}')
|
| 344 |
+
n_token = selected.sum()
|
| 345 |
+
if n_token > len(vit_embeds):
|
| 346 |
+
print(f"Wrong !!! {n_token} image tokens in text but only {len(vit_embeds)} vit embeds !!!")
|
| 347 |
+
expand_ratio = n_token // len(vit_embeds) + 1
|
| 348 |
+
vit_embeds = torch.cat([vit_embeds] * expand_ratio, dim=0)
|
| 349 |
+
|
| 350 |
+
input_embeds[selected] = vit_embeds[:n_token]
|
| 351 |
+
|
| 352 |
+
input_embeds = input_embeds.reshape(B, N, C)
|
| 353 |
+
|
| 354 |
+
outputs = self.language_model(
|
| 355 |
+
inputs_embeds=input_embeds,
|
| 356 |
+
attention_mask=attention_mask,
|
| 357 |
+
position_ids=position_ids,
|
| 358 |
+
past_key_values=past_key_values,
|
| 359 |
+
use_cache=use_cache,
|
| 360 |
+
output_attentions=output_attentions,
|
| 361 |
+
output_hidden_states=output_hidden_states,
|
| 362 |
+
return_dict=return_dict,
|
| 363 |
+
)
|
| 364 |
+
logits = outputs.logits
|
| 365 |
+
|
| 366 |
+
loss = None
|
| 367 |
+
if labels is not None:
|
| 368 |
+
# Shift so that tokens < n predict n
|
| 369 |
+
shift_logits = logits[..., :-1, :].contiguous()
|
| 370 |
+
shift_labels = labels[..., 1:].contiguous()
|
| 371 |
+
# Flatten the tokens
|
| 372 |
+
loss_fct = CrossEntropyLoss()
|
| 373 |
+
shift_logits = shift_logits.view(
|
| 374 |
+
-1, self.language_model.config.vocab_size)
|
| 375 |
+
shift_labels = shift_labels.view(-1)
|
| 376 |
+
# Enable model parallelism
|
| 377 |
+
shift_labels = shift_labels.to(shift_logits.device)
|
| 378 |
+
loss = loss_fct(shift_logits, shift_labels)
|
| 379 |
+
|
| 380 |
+
if not return_dict:
|
| 381 |
+
output = (logits,) + outputs[1:]
|
| 382 |
+
return (loss,) + output if loss is not None else output
|
| 383 |
+
|
| 384 |
+
return CausalLMOutputWithPast(
|
| 385 |
+
loss=loss,
|
| 386 |
+
logits=logits,
|
| 387 |
+
past_key_values=outputs.past_key_values,
|
| 388 |
+
hidden_states=outputs.hidden_states,
|
| 389 |
+
attentions=outputs.attentions,
|
| 390 |
+
)
|
| 391 |
+
|
| 392 |
+
@torch.no_grad()
|
| 393 |
+
def generate(
|
| 394 |
+
self,
|
| 395 |
+
pixel_values: Optional[torch.FloatTensor] = None,
|
| 396 |
+
input_ids: Optional[torch.FloatTensor] = None,
|
| 397 |
+
attention_mask: Optional[torch.LongTensor] = None,
|
| 398 |
+
visual_features: Optional[torch.FloatTensor] = None,
|
| 399 |
+
generation_config: Optional[GenerationConfig] = None,
|
| 400 |
+
output_hidden_states: Optional[bool] = None,
|
| 401 |
+
return_dict: Optional[bool] = None,
|
| 402 |
+
**generate_kwargs,
|
| 403 |
+
) -> torch.LongTensor:
|
| 404 |
+
device = self.device
|
| 405 |
+
assert self.img_context_token_id is not None
|
| 406 |
+
|
| 407 |
+
if pixel_values is not None:
|
| 408 |
+
if visual_features is not None:
|
| 409 |
+
vit_embeds = visual_features
|
| 410 |
+
else:
|
| 411 |
+
if type(pixel_values) is list or pixel_values.ndim == 5:
|
| 412 |
+
if type(pixel_values) is list:
|
| 413 |
+
pixel_values = [
|
| 414 |
+
x.unsqueeze(0) if x.ndim == 3 else x for x in pixel_values
|
| 415 |
+
]
|
| 416 |
+
# b*n, c, h, w
|
| 417 |
+
pixel_values = torch.cat(
|
| 418 |
+
[image.to(self.vision_model.dtype) for image in pixel_values], dim=0)
|
| 419 |
+
|
| 420 |
+
vit_embeds = self.extract_feature(pixel_values.to(device))
|
| 421 |
+
image_flags = torch.sum(pixel_values, dim=(1, 2, 3)) != 0
|
| 422 |
+
image_flags = image_flags.long()
|
| 423 |
+
vit_embeds = vit_embeds[image_flags == 1]
|
| 424 |
+
|
| 425 |
+
input_embeds = self.language_model.get_input_embeddings()(input_ids.to(device))
|
| 426 |
+
B, N, C = input_embeds.shape
|
| 427 |
+
input_embeds = input_embeds.reshape(B * N, C)
|
| 428 |
+
|
| 429 |
+
input_ids = input_ids.reshape(B * N)
|
| 430 |
+
selected = (input_ids == self.img_context_token_id)
|
| 431 |
+
assert selected.sum() != 0
|
| 432 |
+
|
| 433 |
+
input_embeds[selected] = vit_embeds.reshape(-1, C).to(input_embeds.device)
|
| 434 |
+
input_embeds = input_embeds.reshape(B, N, C)
|
| 435 |
+
else:
|
| 436 |
+
input_embeds = self.language_model.get_input_embeddings()(input_ids)
|
| 437 |
+
|
| 438 |
+
outputs = self.language_model.generate(
|
| 439 |
+
inputs_embeds=input_embeds,
|
| 440 |
+
attention_mask=attention_mask.to(device),
|
| 441 |
+
generation_config=generation_config,
|
| 442 |
+
output_hidden_states=output_hidden_states,
|
| 443 |
+
# return_dict=return_dict,
|
| 444 |
+
use_cache=True,
|
| 445 |
+
**generate_kwargs,
|
| 446 |
+
)
|
| 447 |
+
|
| 448 |
+
return outputs
|
| 449 |
+
|
| 450 |
+
def preparing_for_generation(self, tokenizer, max_new_tokens=2048, torch_dtype=torch.bfloat16):
|
| 451 |
+
# set stop criteria and generation configs for model
|
| 452 |
+
if not hasattr(self, 'tokenizer'):
|
| 453 |
+
self.tokenizer = tokenizer
|
| 454 |
+
self.bot_name = 'BOT'
|
| 455 |
+
stop_words = []
|
| 456 |
+
stop_words += self.template.get('STOP_WORDS', [])
|
| 457 |
+
stop_criteria = get_stop_criteria(
|
| 458 |
+
tokenizer=self.tokenizer, stop_words=stop_words)
|
| 459 |
+
self.stop_criteria = stop_criteria
|
| 460 |
+
|
| 461 |
+
default_generation_kwargs = dict(
|
| 462 |
+
max_new_tokens=max_new_tokens,
|
| 463 |
+
do_sample=False,
|
| 464 |
+
eos_token_id=self.tokenizer.eos_token_id,
|
| 465 |
+
pad_token_id=(
|
| 466 |
+
self.tokenizer.pad_token_id
|
| 467 |
+
if self.tokenizer.pad_token_id is not None
|
| 468 |
+
else self.tokenizer.eos_token_id
|
| 469 |
+
),
|
| 470 |
+
)
|
| 471 |
+
|
| 472 |
+
self.gen_config = GenerationConfig(**default_generation_kwargs)
|
| 473 |
+
self.init_prediction_config = True
|
| 474 |
+
self.torch_dtype = torch_dtype
|
| 475 |
+
self.to(torch_dtype)
|
| 476 |
+
self.extra_image_processor = DirectResize(target_length=1024, )
|
| 477 |
+
# for multi image process
|
| 478 |
+
self.min_dynamic_patch = 1
|
| 479 |
+
self.max_dynamic_patch = 12
|
| 480 |
+
self.downsample_ratio = 0.5
|
| 481 |
+
self.image_size = 448
|
| 482 |
+
self.use_thumbnail = True
|
| 483 |
+
patch_size = 14
|
| 484 |
+
self.patch_size = patch_size
|
| 485 |
+
|
| 486 |
+
self.patch_token = int((self.image_size // patch_size) ** 2 * (self.downsample_ratio ** 2))
|
| 487 |
+
self.IMAGENET_MEAN = (0.485, 0.456, 0.406)
|
| 488 |
+
self.IMAGENET_STD = (0.229, 0.224, 0.225)
|
| 489 |
+
self.IMG_CONTEXT_TOKEN = '<IMG_CONTEXT>'
|
| 490 |
+
self.IMG_START_TOKEN = '<img>'
|
| 491 |
+
self.IMG_END_TOKEN = '</img>'
|
| 492 |
+
|
| 493 |
+
self.transformer = T.Compose([
|
| 494 |
+
T.Lambda(lambda img: img.convert('RGB') if img.mode != 'RGB' else img),
|
| 495 |
+
T.Resize((self.image_size, self.image_size), interpolation=InterpolationMode.BICUBIC),
|
| 496 |
+
T.ToTensor(),
|
| 497 |
+
T.Normalize(mean=self.IMAGENET_MEAN, std=self.IMAGENET_STD)
|
| 498 |
+
])
|
| 499 |
+
|
| 500 |
+
# change phi3 prepare for generation fuction
|
| 501 |
+
if self.config.llm_config.architectures[0] == 'Phi3ForCausalLM':
|
| 502 |
+
self.language_model.prepare_inputs_for_generation = MethodType(prepare_inputs_for_generation_phi3, self.language_model)
|
| 503 |
+
|
| 504 |
+
img_context_token_id = tokenizer.convert_tokens_to_ids('<IMG_CONTEXT>')
|
| 505 |
+
self.img_context_token_id = img_context_token_id
|
| 506 |
+
self.seg_token_idx = tokenizer.convert_tokens_to_ids('[SEG]')
|
| 507 |
+
return
|
| 508 |
+
|
| 509 |
+
@torch.inference_mode()
|
| 510 |
+
def propagate_in_video(
|
| 511 |
+
self,
|
| 512 |
+
inference_state,
|
| 513 |
+
start_frame_idx=None,
|
| 514 |
+
max_frame_num_to_track=None,
|
| 515 |
+
reverse=False,
|
| 516 |
+
init_mask=None,
|
| 517 |
+
tokenizer=None,
|
| 518 |
+
mllm_memory_size=7,
|
| 519 |
+
):
|
| 520 |
+
if not self.init_prediction_config:
|
| 521 |
+
assert tokenizer
|
| 522 |
+
self.preparing_for_generation(tokenizer=tokenizer)
|
| 523 |
+
|
| 524 |
+
"""Propagate the input points across frames to track in the entire video."""
|
| 525 |
+
self.grounding_encoder.propagate_in_video_preflight(inference_state)
|
| 526 |
+
|
| 527 |
+
output_dict = inference_state["output_dict"]
|
| 528 |
+
consolidated_frame_inds = inference_state["consolidated_frame_inds"]
|
| 529 |
+
obj_ids = inference_state["obj_ids"]
|
| 530 |
+
num_frames = inference_state["num_frames"]
|
| 531 |
+
video_paths = inference_state["video_paths"]
|
| 532 |
+
|
| 533 |
+
batch_size = self.grounding_encoder._get_obj_num(inference_state)
|
| 534 |
+
|
| 535 |
+
if len(output_dict["cond_frame_outputs"]) == 0:
|
| 536 |
+
raise RuntimeError("No points are provided; please add points first")
|
| 537 |
+
clear_non_cond_mem = self.grounding_encoder.clear_non_cond_mem_around_input and (
|
| 538 |
+
self.grounding_encoder.clear_non_cond_mem_for_multi_obj or batch_size <= 1
|
| 539 |
+
)
|
| 540 |
+
|
| 541 |
+
# set start index, end index, and processing order
|
| 542 |
+
if start_frame_idx is None:
|
| 543 |
+
# default: start from the earliest frame with input points
|
| 544 |
+
start_frame_idx = min(output_dict["cond_frame_outputs"])
|
| 545 |
+
if max_frame_num_to_track is None:
|
| 546 |
+
# default: track all the frames in the video
|
| 547 |
+
max_frame_num_to_track = num_frames
|
| 548 |
+
if reverse:
|
| 549 |
+
end_frame_idx = max(start_frame_idx - max_frame_num_to_track, 0)
|
| 550 |
+
if start_frame_idx > 0:
|
| 551 |
+
processing_order = range(start_frame_idx, end_frame_idx - 1, -1)
|
| 552 |
+
else:
|
| 553 |
+
processing_order = [] # skip reverse tracking if starting from frame 0
|
| 554 |
+
else:
|
| 555 |
+
end_frame_idx = min(
|
| 556 |
+
start_frame_idx + max_frame_num_to_track, num_frames - 1
|
| 557 |
+
)
|
| 558 |
+
processing_order = range(start_frame_idx, end_frame_idx + 1)
|
| 559 |
+
|
| 560 |
+
|
| 561 |
+
mllm_memory = [(start_frame_idx, Image.open(video_paths[start_frame_idx]).convert('RGB'), init_mask)]
|
| 562 |
+
|
| 563 |
+
for frame_idx in tqdm(processing_order, desc="propagate in video"):
|
| 564 |
+
# We skip those frames already in consolidated outputs (these are frames
|
| 565 |
+
# that received input clicks or mask). Note that we cannot directly run
|
| 566 |
+
# batched forward on them via `_run_single_frame_inference` because the
|
| 567 |
+
# number of clicks on each object might be different.
|
| 568 |
+
_update_flag = False
|
| 569 |
+
if frame_idx in consolidated_frame_inds["cond_frame_outputs"]:
|
| 570 |
+
storage_key = "cond_frame_outputs"
|
| 571 |
+
current_out = output_dict[storage_key][frame_idx]
|
| 572 |
+
pred_masks = current_out["pred_masks"]
|
| 573 |
+
if clear_non_cond_mem:
|
| 574 |
+
# clear non-conditioning memory of the surrounding frames
|
| 575 |
+
self.grounding_encoder._clear_non_cond_mem_around_input(inference_state, frame_idx)
|
| 576 |
+
elif frame_idx in consolidated_frame_inds["non_cond_frame_outputs"]:
|
| 577 |
+
storage_key = "non_cond_frame_outputs"
|
| 578 |
+
current_out = output_dict[storage_key][frame_idx]
|
| 579 |
+
pred_masks = current_out["pred_masks"]
|
| 580 |
+
else:
|
| 581 |
+
storage_key = "non_cond_frame_outputs"
|
| 582 |
+
# language_embd = None
|
| 583 |
+
inference_params = {
|
| 584 |
+
"inference_state": inference_state,
|
| 585 |
+
"output_dict": output_dict,
|
| 586 |
+
"frame_idx": frame_idx,
|
| 587 |
+
"batch_size": batch_size,
|
| 588 |
+
"is_init_cond_frame": False,
|
| 589 |
+
"point_inputs": None,
|
| 590 |
+
"mask_inputs": None,
|
| 591 |
+
"reverse": reverse,
|
| 592 |
+
"run_mem_encoder": True,
|
| 593 |
+
"start_frame_idx": start_frame_idx,
|
| 594 |
+
}
|
| 595 |
+
|
| 596 |
+
current_img = Image.open(video_paths[frame_idx]).convert('RGB')
|
| 597 |
+
last_img = Image.open(video_paths[frame_idx-1]).convert('RGB')
|
| 598 |
+
flags = [is_scene_change_hsv(current_img, last_img)]
|
| 599 |
+
if len(mllm_memory) > mllm_memory_size:
|
| 600 |
+
_mllm_memory = [mllm_memory[0]] + mllm_memory[-(mllm_memory_size-1):]
|
| 601 |
+
else:
|
| 602 |
+
_mllm_memory = mllm_memory
|
| 603 |
+
|
| 604 |
+
if False in flags:
|
| 605 |
+
_update_flag = False
|
| 606 |
+
language_embd = None
|
| 607 |
+
else:
|
| 608 |
+
_update_flag = True
|
| 609 |
+
video = [label_img_with_mask(img, mask) for _, img, mask in _mllm_memory]
|
| 610 |
+
video.append(current_img)
|
| 611 |
+
text = "<image>Please segment the object in the last frame based on the object labeled in the first several images."
|
| 612 |
+
specific_language_embd = self.predict_forward(video=video, text=text)
|
| 613 |
+
language_embd = specific_language_embd.unsqueeze(0)
|
| 614 |
+
|
| 615 |
+
|
| 616 |
+
current_out, pred_masks = self.grounding_encoder._run_single_frame_inference(
|
| 617 |
+
**inference_params, language_embd=language_embd
|
| 618 |
+
)
|
| 619 |
+
# optionally offload the output to CPU memory to save GPU space
|
| 620 |
+
for key, value in current_out.items():
|
| 621 |
+
if isinstance(value, torch.Tensor):
|
| 622 |
+
current_out[key] = value.to('cpu', non_blocking=True)
|
| 623 |
+
pred_masks = pred_masks.to('cpu', non_blocking=True)
|
| 624 |
+
|
| 625 |
+
output_dict[storage_key][frame_idx] = current_out
|
| 626 |
+
|
| 627 |
+
# Create slices of per-object outputs for subsequent interaction with each
|
| 628 |
+
# individual object after tracking.
|
| 629 |
+
self.grounding_encoder._add_output_per_object(
|
| 630 |
+
inference_state, frame_idx, current_out, storage_key
|
| 631 |
+
)
|
| 632 |
+
inference_state["frames_already_tracked"][frame_idx] = {"reverse": reverse}
|
| 633 |
+
|
| 634 |
+
# Resize the output mask to the original video resolution (we directly use
|
| 635 |
+
# the mask scores on GPU for output to avoid any CPU conversion in between)
|
| 636 |
+
_, video_res_masks = self.grounding_encoder._get_orig_video_res_output(
|
| 637 |
+
inference_state, pred_masks
|
| 638 |
+
)
|
| 639 |
+
if _update_flag and (video_res_masks[0] > 0.0).sum() != 0 and current_out["object_score_logits"].item() > 1:
|
| 640 |
+
mllm_memory.append((
|
| 641 |
+
frame_idx, Image.open(video_paths[frame_idx]).convert('RGB'),
|
| 642 |
+
(video_res_masks[0] > 0.0).cpu().numpy()
|
| 643 |
+
))
|
| 644 |
+
yield frame_idx, obj_ids, video_res_masks
|
| 645 |
+
|
| 646 |
+
def predict_forward(
|
| 647 |
+
self,
|
| 648 |
+
image=None,
|
| 649 |
+
video=None,
|
| 650 |
+
text=None,
|
| 651 |
+
num_seg_token=1
|
| 652 |
+
):
|
| 653 |
+
assert image is not None or video is not None
|
| 654 |
+
|
| 655 |
+
input_dict = {}
|
| 656 |
+
if video is not None:
|
| 657 |
+
pixel_values = []
|
| 658 |
+
ori_image_size = video[0].size
|
| 659 |
+
for frame_idx, frame_image in enumerate(video):
|
| 660 |
+
assert ori_image_size == frame_image.size
|
| 661 |
+
img = self.transformer(frame_image)
|
| 662 |
+
pixel_values.append(img)
|
| 663 |
+
|
| 664 |
+
pixel_values = torch.stack(pixel_values, dim=0).to(self.torch_dtype) # (n_f, 3, h, w)
|
| 665 |
+
num_image_tokens = self.patch_token
|
| 666 |
+
num_frames = len(pixel_values)
|
| 667 |
+
else:
|
| 668 |
+
ori_image_size = image.size
|
| 669 |
+
images = dynamic_preprocess(
|
| 670 |
+
image, self.min_dynamic_patch, self.max_dynamic_patch,
|
| 671 |
+
self.image_size, self.use_thumbnail
|
| 672 |
+
)
|
| 673 |
+
|
| 674 |
+
pixel_values = [self.transformer(image) for image in images]
|
| 675 |
+
pixel_values = torch.stack(pixel_values).to(self.torch_dtype)
|
| 676 |
+
num_image_tokens = pixel_values.shape[0] * self.patch_token
|
| 677 |
+
num_frames = 1
|
| 678 |
+
|
| 679 |
+
input_dict['pixel_values'] = pixel_values
|
| 680 |
+
image_token_str = f'{self.IMG_START_TOKEN}' \
|
| 681 |
+
f'{self.IMG_CONTEXT_TOKEN * num_image_tokens}' \
|
| 682 |
+
f'{self.IMG_END_TOKEN}'
|
| 683 |
+
image_token_str = image_token_str + '\n'
|
| 684 |
+
image_token_str = image_token_str * num_frames
|
| 685 |
+
image_token_str = image_token_str.strip()
|
| 686 |
+
|
| 687 |
+
text += "It is [SEG].".replace('[SEG]', '[SEG]' * num_seg_token)
|
| 688 |
+
text = text.replace('<image>', image_token_str)
|
| 689 |
+
input_text = ''
|
| 690 |
+
input_text += self.template['INSTRUCTION'].format(
|
| 691 |
+
input=text, round=1, bot_name=self.bot_name)
|
| 692 |
+
|
| 693 |
+
ids = self.tokenizer.encode(input_text)
|
| 694 |
+
ids = torch.tensor(ids).cuda().unsqueeze(0)
|
| 695 |
+
|
| 696 |
+
attention_mask = torch.ones_like(ids, dtype=torch.bool)
|
| 697 |
+
|
| 698 |
+
data ={
|
| 699 |
+
'input_ids': ids,
|
| 700 |
+
'attention_mask': attention_mask,
|
| 701 |
+
'pixel_values': pixel_values.unsqueeze(0).to(self.device),
|
| 702 |
+
'position_ids': None,
|
| 703 |
+
'labels': None,
|
| 704 |
+
}
|
| 705 |
+
|
| 706 |
+
output = self.forward(data)
|
| 707 |
+
seg_token_mask = ids == self.seg_token_idx
|
| 708 |
+
hidden_states = output.hidden_states
|
| 709 |
+
hidden_states = hidden_states[-1][seg_token_mask]
|
| 710 |
+
hidden_states = self.text_hidden_fcs(hidden_states)
|
| 711 |
+
_zero = hidden_states.mean() * 0.0
|
| 712 |
+
pred_embeddings = hidden_states + _zero # [n, 256]
|
| 713 |
+
|
| 714 |
+
return pred_embeddings
|
| 715 |
+
|
| 716 |
+
def label_img_with_mask(img, mask):
|
| 717 |
+
frame = np.array(img)
|
| 718 |
+
mask = np.uint8(mask).squeeze()
|
| 719 |
+
contours, _ = cv2.findContours(mask, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
|
| 720 |
+
for contour in contours:
|
| 721 |
+
cv2.drawContours(frame, [contour], -1, (0, 255, 0), 2)
|
| 722 |
+
frame = Image.fromarray(frame)
|
| 723 |
+
return frame
|
| 724 |
+
|
| 725 |
+
def is_scene_change_hsv(img1, img2, threshold=0.35):
|
| 726 |
+
img1 = cv2.resize(np.array(img1), (1024, 1024))
|
| 727 |
+
img2 = cv2.resize(np.array(img2), (1024, 1024))
|
| 728 |
+
|
| 729 |
+
hsv1 = cv2.cvtColor(img1, cv2.COLOR_BGR2HSV)
|
| 730 |
+
hsv2 = cv2.cvtColor(img2, cv2.COLOR_BGR2HSV)
|
| 731 |
+
|
| 732 |
+
hist1 = cv2.calcHist([hsv1], [0, 1], None, [60, 80], [0, 180, 0, 256])
|
| 733 |
+
hist2 = cv2.calcHist([hsv2], [0, 1], None, [60, 80], [0, 180, 0, 256])
|
| 734 |
+
cv2.normalize(hist1, hist1)
|
| 735 |
+
cv2.normalize(hist2, hist2)
|
| 736 |
+
|
| 737 |
+
distance = cv2.compareHist(hist1, hist2, cv2.HISTCMP_BHATTACHARYYA)
|
| 738 |
+
|
| 739 |
+
return distance > threshold
|
| 740 |
+
|
| 741 |
+
|
| 742 |
+
def find_closest_aspect_ratio(aspect_ratio, target_ratios, width, height,
|
| 743 |
+
image_size):
|
| 744 |
+
best_ratio_diff = float('inf')
|
| 745 |
+
best_ratio = (1, 1)
|
| 746 |
+
area = width * height
|
| 747 |
+
for ratio in target_ratios:
|
| 748 |
+
target_aspect_ratio = ratio[0] / ratio[1]
|
| 749 |
+
ratio_diff = abs(aspect_ratio - target_aspect_ratio)
|
| 750 |
+
if ratio_diff < best_ratio_diff:
|
| 751 |
+
best_ratio_diff = ratio_diff
|
| 752 |
+
best_ratio = ratio
|
| 753 |
+
elif ratio_diff == best_ratio_diff:
|
| 754 |
+
if area > 0.5 * image_size * image_size * ratio[0] * ratio[1]:
|
| 755 |
+
best_ratio = ratio
|
| 756 |
+
return best_ratio
|
| 757 |
+
|
| 758 |
+
def dynamic_preprocess(image,
|
| 759 |
+
min_num=1,
|
| 760 |
+
max_num=6,
|
| 761 |
+
image_size=448,
|
| 762 |
+
use_thumbnail=False):
|
| 763 |
+
orig_width, orig_height = image.size
|
| 764 |
+
aspect_ratio = orig_width / orig_height
|
| 765 |
+
|
| 766 |
+
# calculate the existing image aspect ratio
|
| 767 |
+
target_ratios = {(i, j)
|
| 768 |
+
for n in range(min_num, max_num + 1)
|
| 769 |
+
for i in range(1, n + 1) for j in range(1, n + 1)
|
| 770 |
+
if i * j <= max_num and i * j >= min_num}
|
| 771 |
+
target_ratios = sorted(target_ratios, key=lambda x: x[0] * x[1])
|
| 772 |
+
|
| 773 |
+
# find the closest aspect ratio to the target
|
| 774 |
+
target_aspect_ratio = find_closest_aspect_ratio(aspect_ratio,
|
| 775 |
+
target_ratios, orig_width,
|
| 776 |
+
orig_height, image_size)
|
| 777 |
+
|
| 778 |
+
# calculate the target width and height
|
| 779 |
+
target_width = image_size * target_aspect_ratio[0]
|
| 780 |
+
target_height = image_size * target_aspect_ratio[1]
|
| 781 |
+
blocks = target_aspect_ratio[0] * target_aspect_ratio[1]
|
| 782 |
+
|
| 783 |
+
# resize the image
|
| 784 |
+
resized_img = image.resize((target_width, target_height))
|
| 785 |
+
processed_images = []
|
| 786 |
+
for i in range(blocks):
|
| 787 |
+
box = ((i % (target_width // image_size)) * image_size,
|
| 788 |
+
(i // (target_width // image_size)) * image_size,
|
| 789 |
+
((i % (target_width // image_size)) + 1) * image_size,
|
| 790 |
+
((i // (target_width // image_size)) + 1) * image_size)
|
| 791 |
+
# split the image
|
| 792 |
+
split_img = resized_img.crop(box)
|
| 793 |
+
processed_images.append(split_img)
|
| 794 |
+
assert len(processed_images) == blocks
|
| 795 |
+
if use_thumbnail and len(processed_images) != 1:
|
| 796 |
+
thumbnail_img = image.resize((image_size, image_size))
|
| 797 |
+
processed_images.append(thumbnail_img)
|
| 798 |
+
return processed_images
|
| 799 |
+
|
| 800 |
+
|
| 801 |
+
from transformers.cache_utils import Cache, DynamicCache
|
| 802 |
+
|
| 803 |
+
def prepare_inputs_for_generation_phi3(
|
| 804 |
+
self, input_ids, past_key_values=None, attention_mask=None, inputs_embeds=None, **kwargs
|
| 805 |
+
):
|
| 806 |
+
if past_key_values is not None:
|
| 807 |
+
if isinstance(past_key_values, Cache):
|
| 808 |
+
cache_length = past_key_values.get_seq_length()
|
| 809 |
+
past_length = past_key_values.seen_tokens
|
| 810 |
+
max_cache_length = past_key_values.get_max_length()
|
| 811 |
+
else:
|
| 812 |
+
cache_length = past_length = past_key_values[0][0].shape[2]
|
| 813 |
+
max_cache_length = None
|
| 814 |
+
|
| 815 |
+
# Keep only the unprocessed tokens:
|
| 816 |
+
# 1 - If the length of the attention_mask exceeds the length of input_ids, then we are in a setting where
|
| 817 |
+
# some of the inputs are exclusively passed as part of the cache (e.g. when passing input_embeds as
|
| 818 |
+
# input)
|
| 819 |
+
if attention_mask is not None and attention_mask.shape[1] > input_ids.shape[1]:
|
| 820 |
+
input_ids = input_ids[:, -(attention_mask.shape[1] - past_length):]
|
| 821 |
+
# 2 - If the past_length is smaller than input_ids', then input_ids holds all input tokens. We can discard
|
| 822 |
+
# input_ids based on the past_length.
|
| 823 |
+
elif past_length < input_ids.shape[1]:
|
| 824 |
+
input_ids = input_ids[:, past_length:]
|
| 825 |
+
# 3 - Otherwise (past_length >= input_ids.shape[1]), let's assume input_ids only has unprocessed tokens.
|
| 826 |
+
|
| 827 |
+
# If we are about to go beyond the maximum cache length, we need to crop the input attention mask.
|
| 828 |
+
if (
|
| 829 |
+
max_cache_length is not None
|
| 830 |
+
and attention_mask is not None
|
| 831 |
+
and cache_length + input_ids.shape[1] > max_cache_length
|
| 832 |
+
):
|
| 833 |
+
attention_mask = attention_mask[:, -max_cache_length:]
|
| 834 |
+
|
| 835 |
+
position_ids = kwargs.get('position_ids', None)
|
| 836 |
+
if attention_mask is not None and position_ids is None:
|
| 837 |
+
# create position_ids on the fly for batch generation
|
| 838 |
+
position_ids = attention_mask.long().cumsum(-1) - 1
|
| 839 |
+
position_ids.masked_fill_(attention_mask == 0, 1)
|
| 840 |
+
if past_key_values:
|
| 841 |
+
position_ids = position_ids[:, -input_ids.shape[1]:]
|
| 842 |
+
|
| 843 |
+
# if `inputs_embeds` are passed, we only want to use them in the 1st generation step
|
| 844 |
+
if inputs_embeds is not None and (past_key_values is None or len(past_key_values)==0):
|
| 845 |
+
model_inputs = {'inputs_embeds': inputs_embeds}
|
| 846 |
+
else:
|
| 847 |
+
model_inputs = {'input_ids': input_ids}
|
| 848 |
+
|
| 849 |
+
model_inputs.update(
|
| 850 |
+
{
|
| 851 |
+
'position_ids': position_ids,
|
| 852 |
+
'past_key_values': past_key_values,
|
| 853 |
+
'use_cache': kwargs.get('use_cache'),
|
| 854 |
+
'attention_mask': attention_mask,
|
| 855 |
+
}
|
| 856 |
+
)
|
| 857 |
+
return model_inputs
|
eneas/vendor/SeC/inference/sam2/__init__.py
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
| 2 |
+
# All rights reserved.
|
| 3 |
+
|
| 4 |
+
# This source code is licensed under the license found in the
|
| 5 |
+
# LICENSE file in the root directory of this source tree.
|
| 6 |
+
|
| 7 |
+
from hydra import initialize_config_module
|
| 8 |
+
from hydra.core.global_hydra import GlobalHydra
|
| 9 |
+
|
| 10 |
+
if GlobalHydra.instance().is_initialized():
|
| 11 |
+
GlobalHydra.instance().clear()
|
| 12 |
+
|
| 13 |
+
# Patched by eneas: use vendored SeC path
|
| 14 |
+
initialize_config_module("eneas.vendor.SeC.inference.sam2.configs", version_base="1.2")
|