feat(evaluation): add evaluator#154
Merged
Merged
Conversation
ee40ad0 to
8178653
Compare
0884a78 to
24756d6
Compare
8178653 to
6f84538
Compare
24756d6 to
bb1149b
Compare
6f84538 to
dfa7efe
Compare
bb1149b to
28f72a2
Compare
Contributor
☂️ Python Coverage
Overall Coverage
New Files
Modified Files
|
d7dfcab to
46c684f
Compare
Signed-off-by: ktro2828 <kotaro.uetake@tier4.jp>
46c684f to
052fee2
Compare
Signed-off-by: ktro2828 <kotaro.uetake@tier4.jp>
6 tasks
ktro2828
added a commit
that referenced
this pull request
Feb 11, 2026
* feat: add evaluator Signed-off-by: ktro2828 <kotaro.uetake@tier4.jp> * fix: update the usage of Tier4 Signed-off-by: ktro2828 <kotaro.uetake@tier4.jp> --------- Signed-off-by: ktro2828 <kotaro.uetake@tier4.jp>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a new evaluation framework for perception tasks, refactoring and extending the evaluation module to support a wider range of tasks, including segmentation, and providing a new, unified configuration and evaluator interface. The changes include the addition of new configuration and evaluator classes, updates to dataset handling for more generic annotation types, and extensions to the
EvaluationTaskenum to support segmentation tasks. Documentation and tests are updated accordingly.Evaluation Framework Enhancements:
PerceptionEvaluationConfigandPerceptionEvaluatorclasses to provide a unified configuration and evaluation interface for perception tasks. (t4_devkit/evaluation/config.py,t4_devkit/evaluation/evaluator.py,t4_devkit/evaluation/__init__.py) [1] [2] [3]EvaluationObjectLikeinstead of only boxes), and added preliminary support for segmentation tasks. (t4_devkit/evaluation/dataset.py) [1] [2] [3] [4]Task Enumeration Extensions:
EvaluationTaskto include segmentation tasks (SEGMENTATION3D,SEGMENTATION2D) and added helper methods (is_3d,is_2d,is_segmentation) for task type checks. (t4_devkit/evaluation/task.py)tests/evaluation/test_task.py)Documentation Updates:
docs/tutorials/evaluation.md,mkdocs.yaml) [1] [2]