Skip to content

Commit

Permalink
Merge pull request #114 from deepghs/dev/head
Browse files Browse the repository at this point in the history
dev(narugo): use the newest head detection model
  • Loading branch information
narugo1992 authored Oct 30, 2024
2 parents 74d4a2d + 5b4fc1b commit 551ccee
Show file tree
Hide file tree
Showing 5 changed files with 1,193 additions and 826 deletions.
5 changes: 4 additions & 1 deletion docs/source/api_doc/detect/head_detect_benchmark.plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
from imgutils.detect.head import detect_heads, _REPO_ID
from imgutils.generic.yolo import _open_models_for_repo_id

_MODELS = _open_models_for_repo_id(_REPO_ID).model_names
_MODELS = [
name for name in _open_models_for_repo_id(_REPO_ID).model_names
if '_v2.0_' in name
]


class HeadDetectBenchmark(BaseBenchmark):
Expand Down
Loading

0 comments on commit 551ccee

Please sign in to comment.