├── .codecov.yml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── build.yml │ └── doc.yml ├── .gitignore ├── .style.yapf ├── CONTRIBUTING.md ├── LICENSE ├── MAINTAINERS ├── Makefile ├── README.md ├── docs └── BENCHMARKS.md ├── notebooks ├── coco_training.ipynb ├── coco_training_multi_gpu.ipynb ├── detr_coco_training_multi_gpu.ipynb ├── mixed_precision_pascal_voc_training_fpn50.ipynb ├── overfit-detr.ipynb ├── pascal_voc_training_fpn50.ipynb └── smca_coco_training_multi_gpu.ipynb ├── pyproject.toml ├── requirements.txt ├── ressources ├── flatten_weight_map.png └── spatial_weight_map.png ├── setup.cfg ├── setup.py ├── src └── kerod │ ├── __init__.py │ ├── core │ ├── __init__.py │ ├── box_coder.py │ ├── box_ops.py │ ├── constants.py │ ├── learning_rate_schedule.py │ ├── losses.py │ ├── matcher.py │ ├── sampling_ops.py │ ├── similarity.py │ ├── standard_fields.py │ └── target_assigner.py │ ├── dataset │ ├── __init__.py │ ├── augmentation.py │ ├── preprocessing.py │ └── utils.py │ ├── layers │ ├── __init__.py │ ├── anchors.py │ ├── attentions.py │ ├── detection │ │ ├── __init__.py │ │ ├── abstract_detection_head.py │ │ ├── fast_rcnn.py │ │ ├── pooling_ops.py │ │ └── rpn.py │ ├── patches.py │ ├── positional_encoding.py │ ├── post_processing │ │ ├── __init__.py │ │ ├── non_maximum_suppression.py │ │ └── post_processing_detr.py │ ├── smca │ │ ├── __init__.py │ │ ├── reference_points.py │ │ └── weight_map.py │ └── transformer.py │ ├── model │ ├── __init__.py │ ├── backbone │ │ ├── __init__.py │ │ ├── fpn.py │ │ └── resnet.py │ ├── detr.py │ ├── factory.py │ ├── faster_rcnn.py │ └── smca_detr.py │ └── utils │ ├── __init__.py │ ├── documentation.py │ ├── drawing.py │ ├── ops.py │ └── training.py └── tests ├── core ├── test_box_coder.py ├── test_box_ops.py ├── test_learning_rate_schedule.py ├── test_losses.py ├── test_matcher.py ├── test_sampling_ops.py ├── test_similarity.py └── test_target_assigner.py ├── dataset ├── __init__.py ├── test_augmentation.py ├── test_preprocessing.py └── test_utils.py ├── layers ├── detection │ ├── post_processing │ │ ├── test_non_maximum_suppression.py │ │ └── test_postprocessing_detr.py │ ├── test_fast_rcnn.py │ ├── test_pooling_ops.py │ └── test_rpn.py ├── smca │ ├── test_reference_points.py │ └── test_weight_map.py ├── test_anchors.py ├── test_attentions.py ├── test_patches.py ├── test_positional_encoding.py └── test_transformer.py ├── model ├── backbone │ ├── test_fpn.py │ └── test_resnet.py ├── test_detr.py ├── test_factory.py ├── test_faster_rcnn.py └── test_smca_detr.py └── utils ├── test_drawing.py └── test_ops.py /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/.github/workflows/doc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/.gitignore -------------------------------------------------------------------------------- /.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/.style.yapf -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- 1 | emilien.garreau@gmail.com 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/README.md -------------------------------------------------------------------------------- /docs/BENCHMARKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/docs/BENCHMARKS.md -------------------------------------------------------------------------------- /notebooks/coco_training.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/notebooks/coco_training.ipynb -------------------------------------------------------------------------------- /notebooks/coco_training_multi_gpu.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/notebooks/coco_training_multi_gpu.ipynb -------------------------------------------------------------------------------- /notebooks/detr_coco_training_multi_gpu.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/notebooks/detr_coco_training_multi_gpu.ipynb -------------------------------------------------------------------------------- /notebooks/mixed_precision_pascal_voc_training_fpn50.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/notebooks/mixed_precision_pascal_voc_training_fpn50.ipynb -------------------------------------------------------------------------------- /notebooks/overfit-detr.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/notebooks/overfit-detr.ipynb -------------------------------------------------------------------------------- /notebooks/pascal_voc_training_fpn50.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/notebooks/pascal_voc_training_fpn50.ipynb -------------------------------------------------------------------------------- /notebooks/smca_coco_training_multi_gpu.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/notebooks/smca_coco_training_multi_gpu.ipynb -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/requirements.txt -------------------------------------------------------------------------------- /ressources/flatten_weight_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/ressources/flatten_weight_map.png -------------------------------------------------------------------------------- /ressources/spatial_weight_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/ressources/spatial_weight_map.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/setup.py -------------------------------------------------------------------------------- /src/kerod/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/kerod/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/kerod/core/box_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/core/box_coder.py -------------------------------------------------------------------------------- /src/kerod/core/box_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/core/box_ops.py -------------------------------------------------------------------------------- /src/kerod/core/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/core/constants.py -------------------------------------------------------------------------------- /src/kerod/core/learning_rate_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/core/learning_rate_schedule.py -------------------------------------------------------------------------------- /src/kerod/core/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/core/losses.py -------------------------------------------------------------------------------- /src/kerod/core/matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/core/matcher.py -------------------------------------------------------------------------------- /src/kerod/core/sampling_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/core/sampling_ops.py -------------------------------------------------------------------------------- /src/kerod/core/similarity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/core/similarity.py -------------------------------------------------------------------------------- /src/kerod/core/standard_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/core/standard_fields.py -------------------------------------------------------------------------------- /src/kerod/core/target_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/core/target_assigner.py -------------------------------------------------------------------------------- /src/kerod/dataset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/kerod/dataset/augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/dataset/augmentation.py -------------------------------------------------------------------------------- /src/kerod/dataset/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/dataset/preprocessing.py -------------------------------------------------------------------------------- /src/kerod/dataset/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/dataset/utils.py -------------------------------------------------------------------------------- /src/kerod/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/layers/__init__.py -------------------------------------------------------------------------------- /src/kerod/layers/anchors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/layers/anchors.py -------------------------------------------------------------------------------- /src/kerod/layers/attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/layers/attentions.py -------------------------------------------------------------------------------- /src/kerod/layers/detection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/kerod/layers/detection/abstract_detection_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/layers/detection/abstract_detection_head.py -------------------------------------------------------------------------------- /src/kerod/layers/detection/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/layers/detection/fast_rcnn.py -------------------------------------------------------------------------------- /src/kerod/layers/detection/pooling_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/layers/detection/pooling_ops.py -------------------------------------------------------------------------------- /src/kerod/layers/detection/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/layers/detection/rpn.py -------------------------------------------------------------------------------- /src/kerod/layers/patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/layers/patches.py -------------------------------------------------------------------------------- /src/kerod/layers/positional_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/layers/positional_encoding.py -------------------------------------------------------------------------------- /src/kerod/layers/post_processing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/layers/post_processing/__init__.py -------------------------------------------------------------------------------- /src/kerod/layers/post_processing/non_maximum_suppression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/layers/post_processing/non_maximum_suppression.py -------------------------------------------------------------------------------- /src/kerod/layers/post_processing/post_processing_detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/layers/post_processing/post_processing_detr.py -------------------------------------------------------------------------------- /src/kerod/layers/smca/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/kerod/layers/smca/reference_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/layers/smca/reference_points.py -------------------------------------------------------------------------------- /src/kerod/layers/smca/weight_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/layers/smca/weight_map.py -------------------------------------------------------------------------------- /src/kerod/layers/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/layers/transformer.py -------------------------------------------------------------------------------- /src/kerod/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/model/__init__.py -------------------------------------------------------------------------------- /src/kerod/model/backbone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/kerod/model/backbone/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/model/backbone/fpn.py -------------------------------------------------------------------------------- /src/kerod/model/backbone/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/model/backbone/resnet.py -------------------------------------------------------------------------------- /src/kerod/model/detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/model/detr.py -------------------------------------------------------------------------------- /src/kerod/model/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/model/factory.py -------------------------------------------------------------------------------- /src/kerod/model/faster_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/model/faster_rcnn.py -------------------------------------------------------------------------------- /src/kerod/model/smca_detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/model/smca_detr.py -------------------------------------------------------------------------------- /src/kerod/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/utils/__init__.py -------------------------------------------------------------------------------- /src/kerod/utils/documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/utils/documentation.py -------------------------------------------------------------------------------- /src/kerod/utils/drawing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/utils/drawing.py -------------------------------------------------------------------------------- /src/kerod/utils/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/utils/ops.py -------------------------------------------------------------------------------- /src/kerod/utils/training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/src/kerod/utils/training.py -------------------------------------------------------------------------------- /tests/core/test_box_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/core/test_box_coder.py -------------------------------------------------------------------------------- /tests/core/test_box_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/core/test_box_ops.py -------------------------------------------------------------------------------- /tests/core/test_learning_rate_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/core/test_learning_rate_schedule.py -------------------------------------------------------------------------------- /tests/core/test_losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/core/test_losses.py -------------------------------------------------------------------------------- /tests/core/test_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/core/test_matcher.py -------------------------------------------------------------------------------- /tests/core/test_sampling_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/core/test_sampling_ops.py -------------------------------------------------------------------------------- /tests/core/test_similarity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/core/test_similarity.py -------------------------------------------------------------------------------- /tests/core/test_target_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/core/test_target_assigner.py -------------------------------------------------------------------------------- /tests/dataset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dataset/test_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/dataset/test_augmentation.py -------------------------------------------------------------------------------- /tests/dataset/test_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/dataset/test_preprocessing.py -------------------------------------------------------------------------------- /tests/dataset/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/dataset/test_utils.py -------------------------------------------------------------------------------- /tests/layers/detection/post_processing/test_non_maximum_suppression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/layers/detection/post_processing/test_non_maximum_suppression.py -------------------------------------------------------------------------------- /tests/layers/detection/post_processing/test_postprocessing_detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/layers/detection/post_processing/test_postprocessing_detr.py -------------------------------------------------------------------------------- /tests/layers/detection/test_fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/layers/detection/test_fast_rcnn.py -------------------------------------------------------------------------------- /tests/layers/detection/test_pooling_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/layers/detection/test_pooling_ops.py -------------------------------------------------------------------------------- /tests/layers/detection/test_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/layers/detection/test_rpn.py -------------------------------------------------------------------------------- /tests/layers/smca/test_reference_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/layers/smca/test_reference_points.py -------------------------------------------------------------------------------- /tests/layers/smca/test_weight_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/layers/smca/test_weight_map.py -------------------------------------------------------------------------------- /tests/layers/test_anchors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/layers/test_anchors.py -------------------------------------------------------------------------------- /tests/layers/test_attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/layers/test_attentions.py -------------------------------------------------------------------------------- /tests/layers/test_patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/layers/test_patches.py -------------------------------------------------------------------------------- /tests/layers/test_positional_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/layers/test_positional_encoding.py -------------------------------------------------------------------------------- /tests/layers/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/layers/test_transformer.py -------------------------------------------------------------------------------- /tests/model/backbone/test_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/model/backbone/test_fpn.py -------------------------------------------------------------------------------- /tests/model/backbone/test_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/model/backbone/test_resnet.py -------------------------------------------------------------------------------- /tests/model/test_detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/model/test_detr.py -------------------------------------------------------------------------------- /tests/model/test_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/model/test_factory.py -------------------------------------------------------------------------------- /tests/model/test_faster_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/model/test_faster_rcnn.py -------------------------------------------------------------------------------- /tests/model/test_smca_detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/model/test_smca_detr.py -------------------------------------------------------------------------------- /tests/utils/test_drawing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/utils/test_drawing.py -------------------------------------------------------------------------------- /tests/utils/test_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmGarr/kerod/HEAD/tests/utils/test_ops.py --------------------------------------------------------------------------------