Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
2abf37c
Trim superanimal_humanbody.yaml default project config
maximpavliv Jul 21, 2025
a1a6be1
Trim superanimal_humanbody_colors
maximpavliv Jul 21, 2025
dfbce1d
Correct get_checkpoint_epoch
maximpavliv Jul 21, 2025
1432a73
Add rtmpose_x modelzoo model config
maximpavliv Jul 21, 2025
a4d74cc
Add FilteredDetector
maximpavliv Jul 21, 2025
0cbfe59
Add get_filtered_coco_detector_inference_runner() method
maximpavliv Jul 21, 2025
84b230e
Add ScaleToUnitRange transform
maximpavliv Jul 21, 2025
c4c1318
Superanimal humanbody inference: use filtered detector runner
maximpavliv Jul 21, 2025
dc511cd
ModelZoo tab: make humanbody general case
maximpavliv Jul 21, 2025
479cc66
get_super_animal_scorer(): add torchvision_detector_name arg
maximpavliv Jul 21, 2025
6a14584
Remove superanimal_humanbody_video_inference.py module
maximpavliv Jul 21, 2025
6774812
Regularize get_super_animal_model_config_path()
maximpavliv Jul 21, 2025
424ac92
Regularize load_super_animal_config()
maximpavliv Jul 21, 2025
04438f8
Regularize download_super_animal_snapshot()
maximpavliv Jul 21, 2025
256977b
update_config(): superanimal_humanbody - compatible
maximpavliv Jul 21, 2025
8d4cf20
Revert video_inference()
maximpavliv Jul 21, 2025
edf4f9d
Revert create_df_from_prediction()
maximpavliv Jul 21, 2025
cded581
Restore CTDInferenceRunner
maximpavliv Jul 21, 2025
7eaf923
Remove TorchvisionDetectorInferenceRunner
maximpavliv Jul 21, 2025
feb34d1
Revert DetectorInferenceRunner
maximpavliv Jul 21, 2025
711a47e
superanimal_analyze_images() - make humanbody compatible
maximpavliv Jul 21, 2025
28e4dd0
Revert build_predictions_dataframe()
maximpavliv Jul 21, 2025
193f935
Revert get_inference_runners()
maximpavliv Jul 21, 2025
613b2ac
Revert detectors/fasterRCNN.py
maximpavliv Jul 21, 2025
d848741
Revert detectors/torchvision.py
maximpavliv Jul 21, 2025
bba8689
Revert base Runner
maximpavliv Jul 21, 2025
25fa08d
Fix superanimal_humanbody unit test
maximpavliv Jul 31, 2025
425484b
Disable video adaptation for superanimal_humanbody
maximpavliv Jul 31, 2025
4b04013
Fix testscript_superanimal_inference.py
maximpavliv Jul 31, 2025
eea470e
Remove debug print
maximpavliv Jul 31, 2025
3d47a36
Black formatting
maximpavliv Jul 31, 2025
03456da
SimCCPredictor: add visilibity computation
maximpavliv Aug 22, 2025
c6bd02b
Add new SimCCPredictor params to model configs
maximpavliv Aug 22, 2025
749ca90
Merge branch 'main' into maxim/fix_rtmpose_likelihood
MMathisLab Sep 1, 2025
bd9e618
SimCCPredictor constructor: restore args order
maximpavliv Sep 2, 2025
f7a993f
Merge branch 'main' into maxim/fix_rtmpose_likelihood
maximpavliv Sep 5, 2025
f6a9252
Merge branch 'main' into maxim/fix_rtmpose_likelihood
maximpavliv Sep 10, 2025
e0d570f
Merge branch 'main' into maxim/fix_rtmpose_likelihood
AlexEMG Sep 16, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Restore CTDInferenceRunner
  • Loading branch information
maximpavliv committed Jul 21, 2025
commit cded5817dde33eb89b1f8a9571115549ad436400
9 changes: 5 additions & 4 deletions deeplabcut/pose_estimation_pytorch/runners/inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -590,12 +590,13 @@ def predict(
raw_predictions = self.model.get_predictions(outputs)
predictions = [
{
"detection": {
"bboxes": item["boxes"].cpu().numpy().reshape(-1, 4),
"bbox_scores": item["scores"].cpu().numpy().reshape(-1),
head: {
pred_name: pred[b].cpu().numpy()
for pred_name, pred in head_outputs.items()
}
for head, head_outputs in raw_predictions.items()
}
for item in raw_predictions
for b in range(len(inputs))
]

return predictions
Expand Down