File size: 15,828 Bytes
7344bef | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 | # Copyright (c) Meta Platforms, Inc. and affiliates. All Rights Reserved
# pyre-unsafe
"""
Base predictor class shared by SAM3 and SAM3.1 (multiplex) video predictors.
Provides the common handle_request/handle_stream_request API and session management.
Subclasses only need to override methods where their behavior differs.
"""
import gc
import time
import uuid
from typing import Dict, List, Optional
import torch
from ..logger import get_logger
from ..model.device_utils import accelerator_autocast, empty_accelerator_cache
logger = get_logger(__name__)
class Sam3BasePredictor:
"""
Base class for SAM3 video predictors. Provides:
- Session management (start, reset, close)
- Request dispatch (handle_request / handle_stream_request)
- Common add_prompt / propagate_in_video / remove_object / reset_session / close_session
Subclasses must set `self.model` and `self._all_inference_states` before use.
"""
def __init__(self):
# Subclasses must populate these
self.model = None
self._all_inference_states: Dict[str, dict] = {}
@staticmethod
def _bf16_autocast():
return accelerator_autocast()
# ββ Request dispatch ββββββββββββββββββββββββββββββββββββββββββββββ
@torch.inference_mode()
def handle_request(self, request):
"""Dispatch a request based on its type."""
request_type = request["type"]
if request_type == "start_session":
return self.start_session(
resource_path=request["resource_path"],
session_id=request.get("session_id", None),
offload_video_to_cpu=request.get("offload_video_to_cpu", False),
offload_state_to_cpu=request.get("offload_state_to_cpu", False),
cache_frame_outputs=request.get("cache_frame_outputs", True),
)
elif request_type == "add_prompt":
return self.add_prompt(
session_id=request["session_id"],
frame_idx=request["frame_index"],
text=request.get("text", None),
points=request.get("points", None),
point_labels=request.get("point_labels", None),
clear_old_points=request.get("clear_old_points", True),
bounding_boxes=request.get("bounding_boxes", None),
bounding_box_labels=request.get("bounding_box_labels", None),
clear_old_boxes=request.get("clear_old_boxes", True),
output_prob_thresh=request.get(
"output_prob_thresh",
getattr(self, "default_output_prob_thresh", 0.5),
),
obj_id=request.get("obj_id", None),
rel_coordinates=request.get("rel_coordinates", True),
preencoded_text_outputs=request.get("preencoded_text_outputs", None),
)
elif request_type == "remove_object":
return self.remove_object(
session_id=request["session_id"],
frame_idx=request.get("frame_index", 0),
obj_id=request["obj_id"],
)
elif request_type == "reset_session":
return self.reset_session(session_id=request["session_id"])
elif request_type == "cancel_propagation":
return self.cancel_propagation(session_id=request["session_id"])
elif request_type == "close_session":
return self.close_session(
session_id=request["session_id"],
run_gc_collect=request.get("run_gc_collect", True),
)
else:
raise RuntimeError(f"invalid request type: {request_type}")
@torch.inference_mode()
def handle_stream_request(self, request):
"""Dispatch a stream request based on its type."""
request_type = request["type"]
if request_type == "propagate_in_video":
yield from self.propagate_in_video(
session_id=request["session_id"],
propagation_direction=request.get("propagation_direction", "both"),
start_frame_idx=request.get("start_frame_index", None),
max_frame_num_to_track=request.get("max_frame_num_to_track", None),
output_prob_thresh=request.get(
"output_prob_thresh",
getattr(self, "default_output_prob_thresh", 0.5),
),
progress_callback=request.get("progress_callback", None),
)
else:
raise RuntimeError(f"invalid request type: {request_type}")
# ββ Session management ββββββββββββββββββββββββββββββββββββββββββββ
def start_session(
self,
resource_path,
session_id=None,
offload_video_to_cpu=False,
offload_state_to_cpu=False,
cache_frame_outputs=True,
):
"""Start a new inference session on a video directory or path."""
init_kwargs = dict(
resource_path=resource_path,
offload_video_to_cpu=offload_video_to_cpu,
offload_state_to_cpu=offload_state_to_cpu,
)
if hasattr(self, "async_loading_frames"):
init_kwargs["async_loading_frames"] = self.async_loading_frames
if hasattr(self, "video_loader_type"):
init_kwargs["video_loader_type"] = self.video_loader_type
import inspect
sig = inspect.signature(self.model.init_state)
filtered_kwargs = {k: v for k, v in init_kwargs.items() if k in sig.parameters}
inference_state = self.model.init_state(**filtered_kwargs)
inference_state["cache_frame_outputs"] = bool(cache_frame_outputs)
if not session_id:
session_id = str(uuid.uuid4())
self._all_inference_states[session_id] = {
"state": inference_state,
"session_id": session_id,
"start_time": time.time(),
"last_use_time": time.time(),
}
logger.info(f"started new session {session_id}")
return {"session_id": session_id}
def add_prompt(
self,
session_id: str,
frame_idx: int,
text: Optional[str] = None,
points=None,
point_labels=None,
clear_old_points: bool = True,
bounding_boxes=None,
bounding_box_labels=None,
clear_old_boxes: bool = True,
output_prob_thresh: float = 0.5,
obj_id: Optional[int] = None,
rel_coordinates: bool = True,
preencoded_text_outputs=None,
):
"""Add text, box and/or point prompt on a specific video frame."""
session = self._get_session(session_id)
inference_state = session["state"]
self._extend_expiration_time(session)
# Convert lists to tensors if needed
if points is not None and not isinstance(points, torch.Tensor):
points = torch.tensor(points, dtype=torch.float32)
if point_labels is not None and not isinstance(point_labels, torch.Tensor):
point_labels = torch.tensor(point_labels, dtype=torch.int32)
if bounding_boxes is not None and not isinstance(bounding_boxes, torch.Tensor):
bounding_boxes = torch.tensor(bounding_boxes, dtype=torch.float32)
if bounding_box_labels is not None and not isinstance(
bounding_box_labels, torch.Tensor
):
bounding_box_labels = torch.tensor(bounding_box_labels, dtype=torch.int32)
kwargs = dict(
inference_state=inference_state,
frame_idx=frame_idx,
text_str=text,
points=points,
point_labels=point_labels,
clear_old_points=clear_old_points,
boxes_xywh=bounding_boxes,
box_labels=bounding_box_labels,
clear_old_boxes=clear_old_boxes,
output_prob_thresh=output_prob_thresh,
rel_coordinates=rel_coordinates,
preencoded_text_outputs=preencoded_text_outputs,
)
if obj_id is not None:
kwargs["obj_id"] = obj_id
# Filter kwargs to only pass what the model accepts
# (SAM3 has a simpler add_prompt than SAM3.1)
import inspect
sig = inspect.signature(self.model.add_prompt)
valid_params = set(sig.parameters.keys())
filtered_kwargs = {k: v for k, v in kwargs.items() if k in valid_params}
with self._bf16_autocast():
frame_idx, outputs = self.model.add_prompt(**filtered_kwargs)
return {"frame_index": frame_idx, "outputs": outputs}
def remove_object(
self,
session_id: str,
frame_idx: int = 0,
obj_id: int = 0,
is_user_action: bool = True,
):
"""Remove an object from tracking."""
session = self._get_session(session_id)
inference_state = session["state"]
self._extend_expiration_time(session)
result = self.model.remove_object(
inference_state, obj_id, frame_idx=frame_idx, is_user_action=is_user_action
)
# Handle both return conventions
if result is None or (isinstance(result, tuple) and result[1] is None):
import numpy as np
out_obj_ids = torch.zeros(0, dtype=torch.int64)
out_binary_masks = torch.zeros(
0,
inference_state["orig_height"],
inference_state["orig_width"],
dtype=torch.bool,
)
out_boxes_xywh = torch.zeros(0, 4, dtype=torch.float32)
outputs = {
"out_obj_ids": out_obj_ids.cpu().numpy(),
"out_boxes_xywh": out_boxes_xywh.cpu().numpy(),
"out_binary_masks": out_binary_masks.cpu().numpy(),
}
elif isinstance(result, tuple):
_, outputs = result
else:
outputs = result
return {"frame_index": frame_idx, "outputs": outputs}
def cancel_propagation(self, session_id):
"""Cancel any ongoing propagation. No-op if not supported by the model."""
session = self._get_session(session_id)
inference_state = session["state"]
self._extend_expiration_time(session)
if hasattr(self.model, "cancel_propagation"):
self.model.cancel_propagation(inference_state)
return {"is_success": True}
def propagate_in_video(
self,
session_id,
propagation_direction="both",
start_frame_idx=None,
max_frame_num_to_track=None,
output_prob_thresh=0.5,
**kwargs,
):
"""Propagate the added prompts to get results on all video frames."""
try:
session = self._get_session(session_id)
inference_state = session["state"]
self._extend_expiration_time(session)
if propagation_direction not in ["both", "forward", "backward"]:
raise ValueError(
f"invalid propagation direction: {propagation_direction}"
)
propagate_kwargs = dict(
inference_state=inference_state,
start_frame_idx=start_frame_idx,
max_frame_num_to_track=max_frame_num_to_track,
)
# Only pass output_prob_thresh / extra kwargs if the model supports them
import inspect
sig = inspect.signature(self.model.propagate_in_video)
if "output_prob_thresh" in sig.parameters:
propagate_kwargs["output_prob_thresh"] = output_prob_thresh
for k, v in kwargs.items():
if k in sig.parameters:
propagate_kwargs[k] = v
# Forward propagation
with self._bf16_autocast():
if propagation_direction in ["both", "forward"]:
for frame_idx, outputs in self.model.propagate_in_video(
**propagate_kwargs,
reverse=False,
):
yield {"frame_index": frame_idx, "outputs": outputs}
# Backward propagation
if propagation_direction in ["both", "backward"]:
for frame_idx, outputs in self.model.propagate_in_video(
**propagate_kwargs,
reverse=True,
):
yield {"frame_index": frame_idx, "outputs": outputs}
finally:
logger.info(f"propagation ended in session {session_id}")
def reset_session(self, session_id):
"""Reset the session to its initial state."""
session = self._get_session(session_id)
inference_state = session["state"]
self._extend_expiration_time(session)
self.model.reset_state(inference_state)
return {"is_success": True}
def close_session(self, session_id, run_gc_collect=True):
"""Close a session. Idempotent."""
session = self._all_inference_states.pop(session_id, None)
if session is None:
logger.warning(f"cannot close session {session_id} as it does not exist")
else:
del session
if run_gc_collect:
gc.collect()
logger.info(f"removed session {session_id}")
return {"is_success": True}
def _get_session(self, session_id):
session = self._all_inference_states.get(session_id, None)
if session is None:
raise RuntimeError(
f"Cannot find session {session_id}; it might have expired"
)
return session
def _extend_expiration_time(self, session):
"""Update last-use time for session expiration tracking."""
session["last_use_time"] = time.time()
def shutdown(self):
"""Shutdown the predictor, release runtime caches, and move model weights off CUDA."""
self._all_inference_states.clear()
self._exit_bf16_contexts()
model = self.model
if model is not None:
self._clear_cuda_runtime_caches(model)
if isinstance(model, torch.nn.Module):
model.to("cpu")
self.model = None
gc.collect()
empty_accelerator_cache()
def _exit_bf16_contexts(self):
seen = set()
for obj in [self, self.model]:
if obj is None:
continue
modules = obj.modules() if isinstance(obj, torch.nn.Module) else [obj]
for module in modules:
context = getattr(module, "bf16_context", None)
if context is None or id(context) in seen:
continue
seen.add(id(context))
context.__exit__(None, None, None)
module.bf16_context = None
@staticmethod
def _clear_cuda_runtime_caches(model):
for module in model.modules():
cache = getattr(module, "cache", None)
if isinstance(cache, dict):
cache.clear()
coord_cache = getattr(module, "coord_cache", None)
if isinstance(coord_cache, dict):
coord_cache.clear()
if hasattr(module, "compilable_cord_cache"):
module.compilable_cord_cache = None
if hasattr(module, "compilable_stored_size"):
module.compilable_stored_size = None
for name in ("freqs_cis", "freqs_cis_real", "freqs_cis_imag"):
tensor = getattr(module, name, None)
if torch.is_tensor(tensor) and tensor.is_cuda:
setattr(module, name, tensor.cpu())
|