Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
d36c727
Example and lightning model
sfmig Nov 13, 2025
77fc4fe
Add evalution
sfmig Nov 13, 2025
e70f70f
Split ensemble inference and fusion
sfmig Nov 14, 2025
7285fc7
Simplify fusion module
sfmig Nov 18, 2025
5f98e48
Adding other fusion methods
sfmig Nov 18, 2025
fdb6901
Add general fusion functions. Add error for insufficient max n of det…
sfmig Nov 18, 2025
7deace1
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Nov 18, 2025
d989fa1
Validate supported detectors. Refactor model state dict fetching
sfmig Nov 19, 2025
62b45e5
Rename to ValidBboxAnnotationsDataset. Add validator for bbox detections
sfmig Nov 19, 2025
bc43d43
Add decorators to validate bbox detections dataset
sfmig Nov 19, 2025
1564e0b
Add abstract base class for dataset validators
sfmig Nov 19, 2025
3291606
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Nov 19, 2025
ff72ee4
Merge branch 'main' into smg/ensembles-basic
sfmig Nov 21, 2025
c384340
pre-commit fixes
sfmig Nov 21, 2025
7c076a2
Small comments
sfmig Nov 21, 2025
a610e20
Fix weights loading
sfmig Nov 21, 2025
c6c05ee
Filter low confidence predictions when evaluating single models in th…
sfmig Nov 21, 2025
db5910e
Rename variable
sfmig Nov 21, 2025
ef68989
Compute upper bound for max number of detections after fusion automat…
sfmig Nov 21, 2025
bce1ee7
Use new validators module
sfmig Nov 21, 2025
c26af24
Add an ensemble detections dataset validator
sfmig Nov 21, 2025
4440c12
Fix output validator
sfmig Dec 3, 2025
b38080d
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Dec 3, 2025
b88a412
Add ensembles yaml
sfmig Dec 3, 2025
1b9476a
Stop tracking evaluation
sfmig Dec 4, 2025
397c1a7
Accelerate fusion using joblib
sfmig Dec 4, 2025
a515f1f
Simplify fusion module
sfmig Dec 4, 2025
fb779dd
Add centroid, shape to corner utils
sfmig Dec 4, 2025
8d9a6df
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Dec 4, 2025
c3ab689
Make format_predictions a staticmethod
sfmig Dec 4, 2025
d1532a8
Update supported Python versions to 3.11 - 3.13 (#120)
niksirbi Nov 26, 2025
399bd24
[pre-commit.ci] pre-commit autoupdate (#121)
pre-commit-ci[bot] Dec 1, 2025
a10a96d
Make constant attributes in validators class variables (#123)
sfmig Dec 4, 2025
9202866
Expand validator tests for ensemble validator
sfmig Dec 4, 2025
3aa7f43
Start test for utils
sfmig Dec 4, 2025
b18a3e5
Make utils private
sfmig Dec 4, 2025
57333f6
add basic tests for utils
sfmig Dec 4, 2025
1c08875
pre-commit fixes
sfmig Dec 4, 2025
fba3b08
Merge branch 'main' into smg/ensembles-basic
sfmig Dec 4, 2025
5399fef
Remove example notebook
sfmig Dec 4, 2025
b34680d
Docs fixes
sfmig Dec 4, 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
1 change: 1 addition & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ sphinx-autodoc-typehints
sphinx-design
sphinx-gallery
sphinx-notfound-page
sphinx-paramlinks
sphinx-sitemap
4 changes: 4 additions & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,15 @@
"sphinx.ext.autosummary",
"sphinx.ext.viewcode",
"sphinx.ext.intersphinx",
"sphinx.ext.doctest", # for lightning docstrings
"myst_parser",
"nbsphinx",
"notfound.extension",
"sphinx_design",
"sphinx_gallery.gen_gallery",
"sphinx_sitemap",
"sphinx.ext.autosectionlabel",
"sphinx_paramlinks",
]

# Configure the myst parser to enable cool markdown features
Expand Down Expand Up @@ -186,6 +188,8 @@
"https://python-jsonschema.readthedocs.io/en/stable/",
None,
),
"torch": ("https://pytorch.org/docs/stable/", None),
"pytorch_lightning": ("https://lightning.ai/docs/pytorch/stable/", None),
}


Expand Down
Empty file added ethology/detectors/__init__.py
Empty file.
Empty file.
Loading