Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lower bound albumentation version to handle Nan keypoints #1995

Merged
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
4 changes: 2 additions & 2 deletions .conda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ requirements:
- sleap-deps::tensorflow ==2.9.2
- conda-forge::tensorflow-hub
- conda-forge::qudida
- conda-forge::albumentations
- conda-forge::albumentations >=1.4.15 # Handle Nan keypoints
- conda-forge::ndx-pose <0.2.0
- conda-forge::importlib-metadata
run:
Expand Down Expand Up @@ -91,7 +91,7 @@ requirements:
- sleap-deps::tensorflow ==2.9.2
- conda-forge::tensorflow-hub
- conda-forge::qudida
- conda-forge::albumentations
- conda-forge::albumentations >=1.4.15 # Handle Nan keypoints
- conda-forge::ndx-pose <0.2.0
- conda-forge::importlib-metadata

Expand Down
4 changes: 2 additions & 2 deletions .conda_mac/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ requirements:
- conda-forge::seaborn
- sleap-deps::tensorflow ==2.12.0
- conda-forge::qudida
- conda-forge::albumentations
- conda-forge::albumentations >=1.4.15 # Handle Nan keypoints
- conda-forge::ndx-pose <0.2.0

run:
Expand Down Expand Up @@ -87,5 +87,5 @@ requirements:
- conda-forge::seaborn
- sleap-deps::tensorflow ==2.12.0
- conda-forge::qudida
- conda-forge::albumentations
- conda-forge::albumentations >=1.4.15 # Handle Nan keypoints
- conda-forge::ndx-pose <0.2.0
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ dependencies:
- sleap-deps::tensorflow ==2.9.2
- conda-forge::tensorflow-hub # Pinned in meta.yml, but no problems here... yet
- conda-forge::qudida
- conda-forge::albumentations
- conda-forge::albumentations >=1.4.15 # Handle Nan keypoints
- conda-forge::ndx-pose <0.2.0

# Packages required by tensorflow to find/use GPUs
Expand Down
2 changes: 1 addition & 1 deletion environment_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dependencies:
- conda-forge::seaborn
- sleap-deps::tensorflow ==2.12.0
- conda-forge::qudida
- conda-forge::albumentations
- conda-forge::albumentations >=1.4.15 # Handle Nan keypoints
- conda-forge::ndx-pose <0.2.0
- pip:
- "--editable=.[conda_dev]"
2 changes: 1 addition & 1 deletion environment_no_cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ dependencies:
- sleap-deps::tensorflow ==2.9.2
- conda-forge::tensorflow-hub # Pinned in meta.yml, but no problems here... yet
- conda-forge::qudida
- conda-forge::albumentations
- conda-forge::albumentations >=1.4.15 # Handle Nan keypoints
- conda-forge::ndx-pose <0.2.0

- pip:
Expand Down
2 changes: 1 addition & 1 deletion pypi_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ scikit-learn>=1.0.0
seaborn
tensorflow==2.9.2; platform_machine != 'arm64'
tensorflow-hub
albumentations
albumentations>=1.4.15 # Handle Nan keypoints
ndx-pose<0.2.0
# Silicon Mac specific packages
tensorflow-macos >=2.10.0,<2.13.0; sys_platform == 'darwin' and platform_machine == 'arm64'
Expand Down
Loading