embedding
sleap_nn.inference.embedding
¶
Inference for the embedding model type: crops -> appearance vectors.
This module hosts:
- :class:
EmbeddingInferenceModel— the lightweightLoadedAssets.inference_modelholder that :func:sleap_nn.inference.loaders.load_model_assetsbuilds for anembeddingmodel and that :func:sleap_nn.inference.predictor._build_embedding_layerconsumes. - :func:
embed_labels— embed every detection of an in-memorysio.LabelsIN PLACE (attach ansio.Embeddingvector to each source detection) and return the vectors + per-detection track names. The forward routes through the native-framework :class:~sleap_nn.inference.layers.embedding.EmbeddingLayer, so the crop pipeline (grayscale + optional mask burn-in + per-crop standardize) is IDENTICAL to training and the embeddings are consistent with the validation retrieval metrics. Shared by the.slpwriter below and the post-training retrieval eval in :mod:sleap_nn.train. - :func:
predict_embeddings_to_slp— the re-ID entry point: embed every detection in a.slpand persist the vectors via the sleap-iosio.Embeddingdata model back into a.slp. With atracker_config(WF2: "embed + track on the fly") every detection — tracked OR untracked — is embedded and :func:~sleap_nn.inference.tracking.apply_trackingassignssio.Tracks by cosine similarity. Join an embedding back to its source on its host detection (sio.Instance/sio.SegmentationMask).
Reachable from sleap-nn predict (the CLI routes embedding models here); the
pose-packaging :func:sleap_nn.inference.run.predict flow rejects embedding models and
points back to this function. A fused -m centroid [-m centered_instance] -m
<embedding> -i <video> --tracking command first runs the detection stack and then
embeds + tracks the sio.Labels it returns, in memory (see
sleap_nn.cli._run_embeddings).
Classes:
| Name | Description |
|---|---|
EmbeddingInferenceModel |
Holder for a trained |
Functions:
| Name | Description |
|---|---|
embed_labels |
Embed every detection in |
predict_embeddings_to_slp |
Embed every detection in |
EmbeddingInferenceModel
¶
Holder for a trained embedding model + the knobs its layer needs.
Mirrors the *InferenceModel holders carried on LoadedAssets for the
other model types; consumed by _build_embedding_layer to construct an
:class:~sleap_nn.inference.layers.embedding.EmbeddingLayer.
Source code in sleap_nn/inference/embedding.py
embed_labels(model_dir, labels, *, device='cuda', batch_size=64, include_untracked=False)
¶
Embed every detection in labels IN PLACE and return the vectors.
Builds the SAME :class:~sleap_nn.data.custom_datasets.EmbeddingDataset as
training (centering per crop_centering, grayscale-by-default but RGB-capable via
ensure_rgb, optional mask burn-in + background_fill), runs the native
:class:~sleap_nn.inference.layers.embedding.EmbeddingLayer, and attaches each
crop's vector to its object-exact source detection (the exact sio.Instance /
sio.SegmentationMask) via the single identity_embedding slot (sleap-io #535).
Both pose and mask (owner_type=3) detections persist their embeddings.
This is the shared embedding kernel: :func:predict_embeddings_to_slp calls it then
writes a .slp; the post-training retrieval eval calls it for the (vectors,
track names) arrays without writing anything.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model_dir
|
Trained |
required | |
labels
|
Labels
|
|
required |
device
|
str
|
Torch device. |
'cuda'
|
batch_size
|
int
|
Crops per forward pass. |
64
|
include_untracked
|
bool
|
When |
False
|
Returns:
| Type | Description |
|---|---|
Tuple[ndarray, ndarray, int, int]
|
|
Source code in sleap_nn/inference/embedding.py
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 | |
predict_embeddings_to_slp(model_paths, data_path=None, output_path=None, device='cuda', batch_size=64, save_embeddings='slp', tracker_config=None, include_untracked=None, labels=None, restore_source_videos=False)
¶
Embed every detection in data_path and persist the vectors into a .slp.
The appearance vectors persist via the sleap-io sio.Embedding data model
(in the identity_embedding slot of each detection's host sio.Instance /
sio.SegmentationMask). The crop pipeline matches the trained model's config
exactly (see :func:embed_labels).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model_paths
|
Trained |
required | |
data_path
|
Optional[str]
|
|
None
|
output_path
|
Optional[str]
|
Output |
None
|
device
|
str
|
Torch device. |
'cuda'
|
batch_size
|
int
|
Crops per forward pass. |
64
|
save_embeddings
|
str
|
|
'slp'
|
tracker_config
|
Optional['TrackerConfig']
|
Optional :class: |
None
|
include_untracked
|
Optional[bool]
|
Whether to embed untracked detections too. |
None
|
labels
|
Optional[Labels]
|
Detections to embed, already in memory. When given, |
None
|
restore_source_videos
|
bool
|
Forwarded to sleap-io's |
False
|
Returns:
| Type | Description |
|---|---|
str
|
The output |
Raises:
| Type | Description |
|---|---|
ValueError
|
If neither |
Source code in sleap_nn/inference/embedding.py
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 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 | |