Skip to content

Commit 365c909

Browse files
Logger Info Added
1 parent ed0f576 commit 365c909

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

movement/io/load_poses.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,10 @@ def from_idtracker_style_dict(
319319
probs = idtracker_data.get("id_probabilities")
320320

321321
if probs is None:
322+
logger.info(
323+
"No identity probabilities found in the idtracker.ai data. "
324+
"Confidence scores will be set to NaN."
325+
)
322326
confidence_array = np.full((n_frames, 1, n_individuals), np.nan)
323327
else:
324328
probs = np.asarray(probs)

0 commit comments

Comments
 (0)