Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/conda-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
shell: bash

- name: Caching of the happypose installation and data
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
${{ env.CONDA }}/envs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pip-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
sudo apt-get install -y -qq libjpeg-dev

- name: Caching of the happypose installation and data
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: local_data
key: data
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/uv-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
sudo apt-get install -y -qq libjpeg-dev

- name: Caching of the happypose installation and data
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: local_data
key: data
Expand Down
2 changes: 1 addition & 1 deletion happypose/toolbox/inference/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def filter_detections(
detections: DetectionsType,
labels: Optional[List[str]] = None,
one_instance_per_class: bool = False,
detection_th: float = None,
detection_th: Optional[float] = None,
) -> DetectionsType:
"""Filter detections based on kwargs."""

Expand Down
Loading