├── .gitignore ├── .pre-commit-config.yaml ├── VERSION ├── aggme ├── __init__.py ├── abstracts │ ├── __init__.py │ └── aggregation.py ├── aggregation │ ├── __init__.py │ ├── bounding_boxes.py │ ├── readme.md │ ├── segmentation_masks.py │ └── time_intervals.py ├── tests │ ├── __init__.py │ ├── correct_answers.py │ ├── funcs.py │ ├── human.csv │ ├── inputs │ │ ├── bbox_drop.txt │ │ ├── bbox_hard.txt │ │ ├── bbox_soft.txt │ │ ├── mask_drop.txt │ │ ├── mask_hard.txt │ │ └── mask_soft.txt │ ├── outputs │ │ ├── bbox_drop.txt │ │ ├── bbox_hard.txt │ │ ├── bbox_soft.txt │ │ ├── mask_drop.txt │ │ ├── mask_hard.txt │ │ └── mask_soft.txt │ ├── skin.csv │ └── test_aggregation.py └── utils │ ├── __init__.py │ ├── dataclass.py │ ├── processing.py │ ├── readme.md │ └── visualization.py ├── examples ├── Bboxes.ipynb ├── Comparison.ipynb ├── Intervals.ipynb ├── Masks.ipynb └── input_files │ ├── bboxes_data.csv │ ├── bboxes_other_results.json │ ├── intervals_data.csv │ ├── intervals_other_results.json │ └── masks_data.csv ├── images ├── example.png ├── img.png ├── instruction_11.png ├── instruction_12.png ├── instruction_21.png ├── instruction_21_d.png ├── instruction_21_h.png ├── instruction_21_s.png ├── instruction_22_h.png ├── instruction_22_s.png ├── instruction_23_h.png ├── instruction_23_s.png └── title.png ├── instruction.md ├── license ├── en_us.pdf └── ru.pdf ├── pyproject.toml ├── readme.md ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | -------------------------------------------------------------------------------- /aggme/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/__init__.py -------------------------------------------------------------------------------- /aggme/abstracts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/abstracts/__init__.py -------------------------------------------------------------------------------- /aggme/abstracts/aggregation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/abstracts/aggregation.py -------------------------------------------------------------------------------- /aggme/aggregation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/aggregation/__init__.py -------------------------------------------------------------------------------- /aggme/aggregation/bounding_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/aggregation/bounding_boxes.py -------------------------------------------------------------------------------- /aggme/aggregation/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/aggregation/readme.md -------------------------------------------------------------------------------- /aggme/aggregation/segmentation_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/aggregation/segmentation_masks.py -------------------------------------------------------------------------------- /aggme/aggregation/time_intervals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/aggregation/time_intervals.py -------------------------------------------------------------------------------- /aggme/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aggme/tests/correct_answers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/tests/correct_answers.py -------------------------------------------------------------------------------- /aggme/tests/funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/tests/funcs.py -------------------------------------------------------------------------------- /aggme/tests/human.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/tests/human.csv -------------------------------------------------------------------------------- /aggme/tests/inputs/bbox_drop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/tests/inputs/bbox_drop.txt -------------------------------------------------------------------------------- /aggme/tests/inputs/bbox_hard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/tests/inputs/bbox_hard.txt -------------------------------------------------------------------------------- /aggme/tests/inputs/bbox_soft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/tests/inputs/bbox_soft.txt -------------------------------------------------------------------------------- /aggme/tests/inputs/mask_drop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/tests/inputs/mask_drop.txt -------------------------------------------------------------------------------- /aggme/tests/inputs/mask_hard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/tests/inputs/mask_hard.txt -------------------------------------------------------------------------------- /aggme/tests/inputs/mask_soft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/tests/inputs/mask_soft.txt -------------------------------------------------------------------------------- /aggme/tests/outputs/bbox_drop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/tests/outputs/bbox_drop.txt -------------------------------------------------------------------------------- /aggme/tests/outputs/bbox_hard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/tests/outputs/bbox_hard.txt -------------------------------------------------------------------------------- /aggme/tests/outputs/bbox_soft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/tests/outputs/bbox_soft.txt -------------------------------------------------------------------------------- /aggme/tests/outputs/mask_drop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/tests/outputs/mask_drop.txt -------------------------------------------------------------------------------- /aggme/tests/outputs/mask_hard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/tests/outputs/mask_hard.txt -------------------------------------------------------------------------------- /aggme/tests/outputs/mask_soft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/tests/outputs/mask_soft.txt -------------------------------------------------------------------------------- /aggme/tests/skin.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/tests/skin.csv -------------------------------------------------------------------------------- /aggme/tests/test_aggregation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/tests/test_aggregation.py -------------------------------------------------------------------------------- /aggme/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/utils/__init__.py -------------------------------------------------------------------------------- /aggme/utils/dataclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/utils/dataclass.py -------------------------------------------------------------------------------- /aggme/utils/processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/utils/processing.py -------------------------------------------------------------------------------- /aggme/utils/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/utils/readme.md -------------------------------------------------------------------------------- /aggme/utils/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/aggme/utils/visualization.py -------------------------------------------------------------------------------- /examples/Bboxes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/examples/Bboxes.ipynb -------------------------------------------------------------------------------- /examples/Comparison.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/examples/Comparison.ipynb -------------------------------------------------------------------------------- /examples/Intervals.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/examples/Intervals.ipynb -------------------------------------------------------------------------------- /examples/Masks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/examples/Masks.ipynb -------------------------------------------------------------------------------- /examples/input_files/bboxes_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/examples/input_files/bboxes_data.csv -------------------------------------------------------------------------------- /examples/input_files/bboxes_other_results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/examples/input_files/bboxes_other_results.json -------------------------------------------------------------------------------- /examples/input_files/intervals_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/examples/input_files/intervals_data.csv -------------------------------------------------------------------------------- /examples/input_files/intervals_other_results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/examples/input_files/intervals_other_results.json -------------------------------------------------------------------------------- /examples/input_files/masks_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/examples/input_files/masks_data.csv -------------------------------------------------------------------------------- /images/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/images/example.png -------------------------------------------------------------------------------- /images/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/images/img.png -------------------------------------------------------------------------------- /images/instruction_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/images/instruction_11.png -------------------------------------------------------------------------------- /images/instruction_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/images/instruction_12.png -------------------------------------------------------------------------------- /images/instruction_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/images/instruction_21.png -------------------------------------------------------------------------------- /images/instruction_21_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/images/instruction_21_d.png -------------------------------------------------------------------------------- /images/instruction_21_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/images/instruction_21_h.png -------------------------------------------------------------------------------- /images/instruction_21_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/images/instruction_21_s.png -------------------------------------------------------------------------------- /images/instruction_22_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/images/instruction_22_h.png -------------------------------------------------------------------------------- /images/instruction_22_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/images/instruction_22_s.png -------------------------------------------------------------------------------- /images/instruction_23_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/images/instruction_23_h.png -------------------------------------------------------------------------------- /images/instruction_23_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/images/instruction_23_s.png -------------------------------------------------------------------------------- /images/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/images/title.png -------------------------------------------------------------------------------- /instruction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/instruction.md -------------------------------------------------------------------------------- /license/en_us.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/license/en_us.pdf -------------------------------------------------------------------------------- /license/ru.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/license/ru.pdf -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/aggme/HEAD/setup.py --------------------------------------------------------------------------------