Skip to content

Commit

Permalink
separate linux and windows dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mikel-brostrom committed May 12, 2024
2 parents 5af729f + 4fe2e95 commit a7d321c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
python -m pip install --upgrade pip setuptools wheel
pip install poetry
poetry config virtualenvs.create false
poetry install --with yolo
poetry install --with cpu,yolo
- name: Generate detections and embeddings
run: |
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
run: |
python -m pip install --upgrade pip setuptools wheel poetry
poetry config virtualenvs.create false
poetry install --with yolo,evolve
poetry install --with cpu,yolo,evolve
- name: Generate detections and embeddings
run: |
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
run: |
python -m pip install --upgrade pip setuptools wheel poetry
poetry config virtualenvs.create false
poetry install
poetry install --with cpu
- name: Generate detections and embeddings
run: |
Expand All @@ -141,7 +141,7 @@ jobs:
- run: |
python -m pip install --upgrade pip setuptools wheel poetry
poetry config virtualenvs.create false
poetry install --with yolo
poetry install --with cpu,yolo
- name: Test tracking with pose models
env:
IMG: ./assets/MOT17-mini/train/MOT17-02-FRCNN/img1/000001.jpg
Expand All @@ -160,7 +160,7 @@ jobs:
- run: |
python -m pip install --upgrade pip setuptools wheel poetry
poetry config virtualenvs.create false
poetry install --with yolo
poetry install --with cpu,yolo
- name: Test tracking with pose models
env:
IMG: ./assets/MOT17-mini/train/MOT17-02-FRCNN/img1/000001.jpg
Expand All @@ -186,7 +186,7 @@ jobs:
run: |
python -m pip install --upgrade pip setuptools wheel poetry
poetry config virtualenvs.create false
poetry install --with yolo
poetry install --with cpu,yolo
- name: Test tracking with seg models
env:
IMG: ./assets/MOT17-mini/train/MOT17-02-FRCNN/img1/000001.jpg
Expand All @@ -209,7 +209,7 @@ jobs:
run: |
python -m pip install --upgrade pip setuptools wheel poetry
poetry config virtualenvs.create false
poetry install --with export
poetry install --with cpu,export
- name: Test export models
run: python boxmot/appearance/reid_export.py --include torchscript onnx openvino --device cpu --batch-size 3 --dynamic
- name: Test inference on exported models
Expand All @@ -234,7 +234,7 @@ jobs:
- run: |
python -m pip install --upgrade pip setuptools wheel poetry
poetry config virtualenvs.create false
poetry install --with test
poetry install --with cpu,test
- name: Test export models
run: python boxmot/appearance/reid_export.py --include torchscript onnx openvino --device cpu --batch-size 3 --dynamic
- name: Pytest tests # after tracking options as this does not download models
Expand Down
2 changes: 1 addition & 1 deletion boxmot/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Mikel Broström 🔥 Yolo Tracking 🧾 AGPL-3.0 license

__version__ = '10.0.69'
__version__ = '10.0.70'

from boxmot.postprocessing.gsi import gsi
from boxmot.tracker_zoo import create_tracker, get_tracker_config
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "boxmot"
version = "10.0.69"
version = "10.0.70"
description = "BoxMOT: pluggable SOTA tracking modules for segmentation, object detection and pose estimation models"
authors = ["Mikel Broström"]
license = "AGPL-3.0"
Expand Down

0 comments on commit a7d321c

Please sign in to comment.