LICENSE
MANIFEST.in
NOTICE
README.md
pyproject.toml
src/otx/__init__.py
src/otx.egg-info/PKG-INFO
src/otx.egg-info/SOURCES.txt
src/otx.egg-info/dependency_links.txt
src/otx.egg-info/entry_points.txt
src/otx.egg-info/requires.txt
src/otx.egg-info/top_level.txt
src/otx/algo/__init__.py
src/otx/algo/accelerators/__init__.py
src/otx/algo/accelerators/xpu.py
src/otx/algo/action_classification/__init__.py
src/otx/algo/action_classification/movinet.py
src/otx/algo/action_classification/x3d.py
src/otx/algo/action_classification/backbones/__init__.py
src/otx/algo/action_classification/backbones/movinet.py
src/otx/algo/action_classification/backbones/x3d.py
src/otx/algo/action_classification/heads/__init__.py
src/otx/algo/action_classification/heads/base_head.py
src/otx/algo/action_classification/heads/movinet_head.py
src/otx/algo/action_classification/heads/x3d_head.py
src/otx/algo/action_classification/recognizers/__init__.py
src/otx/algo/action_classification/recognizers/movinet_recognizer.py
src/otx/algo/action_classification/recognizers/recognizer.py
src/otx/algo/action_classification/utils/data_sample.py
src/otx/algo/anomaly/__init__.py
src/otx/algo/anomaly/openvino_model.py
src/otx/algo/anomaly/padim.py
src/otx/algo/anomaly/stfpm.py
src/otx/algo/callbacks/__init__.py
src/otx/algo/callbacks/adaptive_early_stopping.py
src/otx/algo/callbacks/adaptive_train_scheduling.py
src/otx/algo/callbacks/ema_mean_teacher.py
src/otx/algo/callbacks/iteration_timer.py
src/otx/algo/callbacks/unlabeled_loss_warmup.py
src/otx/algo/classification/__init__.py
src/otx/algo/classification/efficientnet.py
src/otx/algo/classification/huggingface_model.py
src/otx/algo/classification/mobilenet_v3.py
src/otx/algo/classification/timm_model.py
src/otx/algo/classification/torchvision_model.py
src/otx/algo/classification/vit.py
src/otx/algo/classification/backbones/__init__.py
src/otx/algo/classification/backbones/efficientnet.py
src/otx/algo/classification/backbones/mobilenet_v3.py
src/otx/algo/classification/backbones/timm.py
src/otx/algo/classification/backbones/torchvision.py
src/otx/algo/classification/backbones/vision_transformer.py
src/otx/algo/classification/classifier/__init__.py
src/otx/algo/classification/classifier/base_classifier.py
src/otx/algo/classification/classifier/h_label_classifier.py
src/otx/algo/classification/classifier/semi_sl_classifier.py
src/otx/algo/classification/heads/__init__.py
src/otx/algo/classification/heads/hlabel_cls_head.py
src/otx/algo/classification/heads/linear_head.py
src/otx/algo/classification/heads/multilabel_cls_head.py
src/otx/algo/classification/heads/semi_sl_head.py
src/otx/algo/classification/heads/vision_transformer_head.py
src/otx/algo/classification/losses/__init__.py
src/otx/algo/classification/losses/asymmetric_angular_loss_with_ignore.py
src/otx/algo/classification/necks/__init__.py
src/otx/algo/classification/necks/gap.py
src/otx/algo/classification/utils/__init__.py
src/otx/algo/classification/utils/attention.py
src/otx/algo/classification/utils/embed.py
src/otx/algo/classification/utils/ignored_labels.py
src/otx/algo/classification/utils/swiglu_ffn.py
src/otx/algo/common/backbones/__init__.py
src/otx/algo/common/backbones/cspnext.py
src/otx/algo/common/backbones/pytorchcv_backbones.py
src/otx/algo/common/backbones/resnet.py
src/otx/algo/common/backbones/resnext.py
src/otx/algo/common/layers/__init__.py
src/otx/algo/common/layers/res_layer.py
src/otx/algo/common/layers/spp_layer.py
src/otx/algo/common/losses/__init__.py
src/otx/algo/common/losses/cross_entropy_loss.py
src/otx/algo/common/losses/cross_focal_loss.py
src/otx/algo/common/losses/focal_loss.py
src/otx/algo/common/losses/gfocal_loss.py
src/otx/algo/common/losses/iou_loss.py
src/otx/algo/common/losses/smooth_l1_loss.py
src/otx/algo/common/losses/utils.py
src/otx/algo/common/utils/bbox_overlaps.py
src/otx/algo/common/utils/nms.py
src/otx/algo/common/utils/structures.py
src/otx/algo/common/utils/utils.py
src/otx/algo/common/utils/assigners/__init__.py
src/otx/algo/common/utils/assigners/dynamic_soft_label_assigner.py
src/otx/algo/common/utils/assigners/iou2d_calculator.py
src/otx/algo/common/utils/assigners/max_iou_assigner.py
src/otx/algo/common/utils/coders/__init__.py
src/otx/algo/common/utils/coders/delta_xywh_bbox_coder.py
src/otx/algo/common/utils/coders/distance_point_bbox_coder.py
src/otx/algo/common/utils/prior_generators/__init__.py
src/otx/algo/common/utils/prior_generators/anchor_generator.py
src/otx/algo/common/utils/prior_generators/point_generator.py
src/otx/algo/common/utils/prior_generators/utils.py
src/otx/algo/common/utils/samplers/__init__.py
src/otx/algo/common/utils/samplers/base_sampler.py
src/otx/algo/detection/__init__.py
src/otx/algo/detection/atss.py
src/otx/algo/detection/huggingface_model.py
src/otx/algo/detection/rtdetr.py
src/otx/algo/detection/rtmdet.py
src/otx/algo/detection/ssd.py
src/otx/algo/detection/yolox.py
src/otx/algo/detection/backbones/__init__.py
src/otx/algo/detection/backbones/csp_darknet.py
src/otx/algo/detection/backbones/presnet.py
src/otx/algo/detection/base_models/__init__.py
src/otx/algo/detection/base_models/detection_transformer.py
src/otx/algo/detection/base_models/single_stage_detector.py
src/otx/algo/detection/heads/__init__.py
src/otx/algo/detection/heads/anchor_head.py
src/otx/algo/detection/heads/atss_head.py
src/otx/algo/detection/heads/base_head.py
src/otx/algo/detection/heads/class_incremental_mixin.py
src/otx/algo/detection/heads/rtdetr_decoder.py
src/otx/algo/detection/heads/rtmdet_head.py
src/otx/algo/detection/heads/ssd_head.py
src/otx/algo/detection/heads/yolox_head.py
src/otx/algo/detection/layers/__init__.py
src/otx/algo/detection/layers/channel_attention_layer.py
src/otx/algo/detection/layers/csp_layer.py
src/otx/algo/detection/losses/__init__.py
src/otx/algo/detection/losses/iou_loss.py
src/otx/algo/detection/losses/rtdetr_loss.py
src/otx/algo/detection/necks/__init__.py
src/otx/algo/detection/necks/cspnext_pafpn.py
src/otx/algo/detection/necks/fpn.py
src/otx/algo/detection/necks/hybrid_encoder.py
src/otx/algo/detection/necks/yolox_pafpn.py
src/otx/algo/detection/utils/__init__.py
src/otx/algo/detection/utils/utils.py
src/otx/algo/detection/utils/assigners/__init__.py
src/otx/algo/detection/utils/assigners/atss_assigner.py
src/otx/algo/detection/utils/assigners/sim_ota_assigner.py
src/otx/algo/detection/utils/matchers/__init__.py
src/otx/algo/detection/utils/matchers/hungarian_matcher.py
src/otx/algo/detection/utils/prior_generators/__init__.py
src/otx/algo/detection/utils/prior_generators/anchor_generator.py
src/otx/algo/detection/utils/prior_generators/utils.py
src/otx/algo/explain/__init__.py
src/otx/algo/explain/explain_algo.py
src/otx/algo/instance_segmentation/__init__.py
src/otx/algo/instance_segmentation/maskrcnn.py
src/otx/algo/instance_segmentation/maskrcnn_tv.py
src/otx/algo/instance_segmentation/rtmdet_inst.py
src/otx/algo/instance_segmentation/two_stage.py
src/otx/algo/instance_segmentation/backbones/__init__.py
src/otx/algo/instance_segmentation/backbones/swin.py
src/otx/algo/instance_segmentation/heads/__init__.py
src/otx/algo/instance_segmentation/heads/base_roi_head.py
src/otx/algo/instance_segmentation/heads/bbox_head.py
src/otx/algo/instance_segmentation/heads/convfc_bbox_head.py
src/otx/algo/instance_segmentation/heads/custom_roi_head.py
src/otx/algo/instance_segmentation/heads/fcn_mask_head.py
src/otx/algo/instance_segmentation/heads/roi_head_tv.py
src/otx/algo/instance_segmentation/heads/rpn_head.py
src/otx/algo/instance_segmentation/heads/rtmdet_ins_head.py
src/otx/algo/instance_segmentation/heads/utils.py
src/otx/algo/instance_segmentation/layers/__init__.py
src/otx/algo/instance_segmentation/layers/bbox_nms.py
src/otx/algo/instance_segmentation/layers/transformer.py
src/otx/algo/instance_segmentation/losses/__init__.py
src/otx/algo/instance_segmentation/losses/accuracy.py
src/otx/algo/instance_segmentation/losses/dice_loss.py
src/otx/algo/instance_segmentation/necks/__init__.py
src/otx/algo/instance_segmentation/necks/fpn.py
src/otx/algo/instance_segmentation/torchvision/maskrcnn.py
src/otx/algo/instance_segmentation/utils/__init__.py
src/otx/algo/instance_segmentation/utils/utils.py
src/otx/algo/instance_segmentation/utils/roi_extractors/__init__.py
src/otx/algo/instance_segmentation/utils/roi_extractors/base_roi_extractor.py
src/otx/algo/instance_segmentation/utils/roi_extractors/roi_align.py
src/otx/algo/instance_segmentation/utils/roi_extractors/single_level_roi_extractor.py
src/otx/algo/instance_segmentation/utils/structures/bbox/__init__.py
src/otx/algo/instance_segmentation/utils/structures/bbox/transforms.py
src/otx/algo/instance_segmentation/utils/structures/mask/__init__.py
src/otx/algo/instance_segmentation/utils/structures/mask/mask_target.py
src/otx/algo/keypoint_detection/rtmpose.py
src/otx/algo/keypoint_detection/topdown.py
src/otx/algo/keypoint_detection/heads/rtmcc_head.py
src/otx/algo/keypoint_detection/losses/kl_discret_loss.py
src/otx/algo/keypoint_detection/utils/keypoint_eval.py
src/otx/algo/keypoint_detection/utils/rtmcc_block.py
src/otx/algo/keypoint_detection/utils/scale_norm.py
src/otx/algo/keypoint_detection/utils/simcc_label.py
src/otx/algo/modules/__init__.py
src/otx/algo/modules/activation.py
src/otx/algo/modules/base_module.py
src/otx/algo/modules/conv_module.py
src/otx/algo/modules/drop.py
src/otx/algo/modules/norm.py
src/otx/algo/modules/padding.py
src/otx/algo/modules/scale.py
src/otx/algo/modules/transformer.py
src/otx/algo/plugins/__init__.py
src/otx/algo/plugins/xpu_precision.py
src/otx/algo/samplers/__init__.py
src/otx/algo/samplers/balanced_sampler.py
src/otx/algo/samplers/class_incremental_sampler.py
src/otx/algo/segmentation/__init__.py
src/otx/algo/segmentation/dino_v2_seg.py
src/otx/algo/segmentation/huggingface_model.py
src/otx/algo/segmentation/litehrnet.py
src/otx/algo/segmentation/segnext.py
src/otx/algo/segmentation/backbones/__init__.py
src/otx/algo/segmentation/backbones/dinov2.py
src/otx/algo/segmentation/backbones/litehrnet.py
src/otx/algo/segmentation/backbones/mscan.py
src/otx/algo/segmentation/heads/__init__.py
src/otx/algo/segmentation/heads/base_segm_head.py
src/otx/algo/segmentation/heads/fcn_head.py
src/otx/algo/segmentation/heads/ham_head.py
src/otx/algo/segmentation/losses/__init__.py
src/otx/algo/segmentation/losses/cross_entropy_loss_with_ignore.py
src/otx/algo/segmentation/modules/__init__.py
src/otx/algo/segmentation/modules/aggregators.py
src/otx/algo/segmentation/modules/blocks.py
src/otx/algo/segmentation/modules/utils.py
src/otx/algo/segmentation/segmentors/__init__.py
src/otx/algo/segmentation/segmentors/base_model.py
src/otx/algo/segmentation/segmentors/mean_teacher.py
src/otx/algo/strategies/__init__.py
src/otx/algo/strategies/xpu_single.py
src/otx/algo/utils/__init__.py
src/otx/algo/utils/mmengine_utils.py
src/otx/algo/utils/support_otx_v1.py
src/otx/algo/utils/utils.py
src/otx/algo/utils/weight_init.py
src/otx/algo/utils/xai_utils.py
src/otx/algo/visual_prompting/__init__.py
src/otx/algo/visual_prompting/sam.py
src/otx/algo/visual_prompting/backbones/__init__.py
src/otx/algo/visual_prompting/backbones/tiny_vit.py
src/otx/algo/visual_prompting/backbones/vit.py
src/otx/algo/visual_prompting/decoders/__init__.py
src/otx/algo/visual_prompting/decoders/sam_mask_decoder.py
src/otx/algo/visual_prompting/encoders/__init__.py
src/otx/algo/visual_prompting/encoders/sam_image_encoder.py
src/otx/algo/visual_prompting/encoders/sam_prompt_encoder.py
src/otx/algo/visual_prompting/losses/__init__.py
src/otx/algo/visual_prompting/losses/sam_loss.py
src/otx/algo/visual_prompting/utils/__init__.py
src/otx/algo/visual_prompting/utils/layer_norm_2d.py
src/otx/algo/visual_prompting/utils/mlp_block.py
src/otx/algo/visual_prompting/utils/postprocess.py
src/otx/algo/visual_prompting/visual_prompters/__init__.py
src/otx/algo/visual_prompting/visual_prompters/segment_anything.py
src/otx/cli/__init__.py
src/otx/cli/cli.py
src/otx/cli/install.py
src/otx/cli/patches/mmaction2.patch
src/otx/cli/utils/__init__.py
src/otx/cli/utils/help_formatter.py
src/otx/cli/utils/installation.py
src/otx/cli/utils/jsonargparse.py
src/otx/cli/utils/workspace.py
src/otx/core/__init__.py
src/otx/core/config/__init__.py
src/otx/core/config/data.py
src/otx/core/config/device.py
src/otx/core/config/explain.py
src/otx/core/config/hpo.py
src/otx/core/data/__init__.py
src/otx/core/data/factory.py
src/otx/core/data/mem_cache.py
src/otx/core/data/module.py
src/otx/core/data/pre_filtering.py
src/otx/core/data/dataset/__init__.py
src/otx/core/data/dataset/action_classification.py
src/otx/core/data/dataset/anomaly.py
src/otx/core/data/dataset/base.py
src/otx/core/data/dataset/classification.py
src/otx/core/data/dataset/detection.py
src/otx/core/data/dataset/instance_segmentation.py
src/otx/core/data/dataset/keypoint_detection.py
src/otx/core/data/dataset/segmentation.py
src/otx/core/data/dataset/tile.py
src/otx/core/data/dataset/visual_prompting.py
src/otx/core/data/entity/__init__.py
src/otx/core/data/entity/action_classification.py
src/otx/core/data/entity/base.py
src/otx/core/data/entity/classification.py
src/otx/core/data/entity/detection.py
src/otx/core/data/entity/instance_segmentation.py
src/otx/core/data/entity/keypoint_detection.py
src/otx/core/data/entity/segmentation.py
src/otx/core/data/entity/tile.py
src/otx/core/data/entity/utils.py
src/otx/core/data/entity/visual_prompting.py
src/otx/core/data/entity/anomaly/__init__.py
src/otx/core/data/entity/anomaly/classification.py
src/otx/core/data/entity/anomaly/detection.py
src/otx/core/data/entity/anomaly/segmentation.py
src/otx/core/data/transform_libs/__init__.py
src/otx/core/data/transform_libs/mmaction.py
src/otx/core/data/transform_libs/mmcv.py
src/otx/core/data/transform_libs/mmdet.py
src/otx/core/data/transform_libs/mmpretrain.py
src/otx/core/data/transform_libs/mmseg.py
src/otx/core/data/transform_libs/torchvision.py
src/otx/core/data/transform_libs/utils.py
src/otx/core/data/utils/__init__.py
src/otx/core/data/utils/utils.py
src/otx/core/exporter/__init__.py
src/otx/core/exporter/anomaly.py
src/otx/core/exporter/base.py
src/otx/core/exporter/native.py
src/otx/core/exporter/visual_prompting.py
src/otx/core/exporter/exportable_code/__init__.py
src/otx/core/exporter/exportable_code/demo/LICENSE
src/otx/core/exporter/exportable_code/demo/README.md
src/otx/core/exporter/exportable_code/demo/__init__.py
src/otx/core/exporter/exportable_code/demo/demo.py
src/otx/core/exporter/exportable_code/demo/requirements.txt
src/otx/core/exporter/exportable_code/demo/setup.py
src/otx/core/exporter/exportable_code/demo/demo_package/__init__.py
src/otx/core/exporter/exportable_code/demo/demo_package/model_wrapper.py
src/otx/core/exporter/exportable_code/demo/demo_package/utils.py
src/otx/core/exporter/exportable_code/demo/demo_package/executors/__init__.py
src/otx/core/exporter/exportable_code/demo/demo_package/executors/asynchronous.py
src/otx/core/exporter/exportable_code/demo/demo_package/executors/synchronous.py
src/otx/core/exporter/exportable_code/demo/demo_package/streamer/__init__.py
src/otx/core/exporter/exportable_code/demo/demo_package/streamer/streamer.py
src/otx/core/exporter/exportable_code/demo/demo_package/visualizers/__init__.py
src/otx/core/exporter/exportable_code/demo/demo_package/visualizers/vis_utils.py
src/otx/core/exporter/exportable_code/demo/demo_package/visualizers/visualizer.py
src/otx/core/metrics/__init__.py
src/otx/core/metrics/accuracy.py
src/otx/core/metrics/dice.py
src/otx/core/metrics/fmeasure.py
src/otx/core/metrics/mean_ap.py
src/otx/core/metrics/pck.py
src/otx/core/metrics/types.py
src/otx/core/metrics/visual_prompting.py
src/otx/core/model/__init__.py
src/otx/core/model/action_classification.py
src/otx/core/model/anomaly.py
src/otx/core/model/base.py
src/otx/core/model/classification.py
src/otx/core/model/detection.py
src/otx/core/model/instance_segmentation.py
src/otx/core/model/keypoint_detection.py
src/otx/core/model/rotated_detection.py
src/otx/core/model/segmentation.py
src/otx/core/model/visual_prompting.py
src/otx/core/optimizer/__init__.py
src/otx/core/optimizer/callable.py
src/otx/core/schedulers/__init__.py
src/otx/core/schedulers/callable.py
src/otx/core/schedulers/warmup_schedulers.py
src/otx/core/types/__init__.py
src/otx/core/types/device.py
src/otx/core/types/explain.py
src/otx/core/types/export.py
src/otx/core/types/image.py
src/otx/core/types/label.py
src/otx/core/types/precision.py
src/otx/core/types/task.py
src/otx/core/types/transformer_libs.py
src/otx/core/utils/__init__.py
src/otx/core/utils/build.py
src/otx/core/utils/cache.py
src/otx/core/utils/config.py
src/otx/core/utils/imports.py
src/otx/core/utils/instantiators.py
src/otx/core/utils/mask_util.py
src/otx/core/utils/miscellaneous.py
src/otx/core/utils/pylogger.py
src/otx/core/utils/tile_merge.py
src/otx/core/utils/utils.py
src/otx/engine/__init__.py
src/otx/engine/engine.py
src/otx/engine/adaptive_bs/__init__.py
src/otx/engine/adaptive_bs/adaptive_bs_api.py
src/otx/engine/adaptive_bs/bs_search_algo.py
src/otx/engine/hpo/__init__.py
src/otx/engine/hpo/hpo_api.py
src/otx/engine/hpo/hpo_trial.py
src/otx/engine/hpo/utils.py
src/otx/engine/utils/__init__.py
src/otx/engine/utils/api.py
src/otx/engine/utils/auto_configurator.py
src/otx/hpo/__init__.py
src/otx/hpo/hpo_base.py
src/otx/hpo/hpo_runner.py
src/otx/hpo/hyperband.py
src/otx/hpo/resource_manager.py
src/otx/hpo/search_space.py
src/otx/hpo/utils.py
src/otx/recipe/__init__.py
src/otx/recipe/_base_/test.yaml
src/otx/recipe/_base_/train.yaml
src/otx/recipe/_base_/data/anomaly.yaml
src/otx/recipe/_base_/data/classification.yaml
src/otx/recipe/_base_/data/detection.yaml
src/otx/recipe/_base_/data/detection_tile.yaml
src/otx/recipe/_base_/data/instance_segmentation.yaml
src/otx/recipe/_base_/data/keypoint_detection.yaml
src/otx/recipe/_base_/data/semantic_segmentation.yaml
src/otx/recipe/_base_/data/torchvision_base.yaml
src/otx/recipe/_base_/data/visual_prompting.yaml
src/otx/recipe/_base_/data/zero_shot_visual_prompting.yaml
src/otx/recipe/_base_/data/semisl/semantic_segmentation_semisl.yaml
src/otx/recipe/_base_/data/semisl/torchvision_semisl.yaml
src/otx/recipe/action_classification/movinet.yaml
src/otx/recipe/action_classification/openvino_model.yaml
src/otx/recipe/action_classification/x3d.yaml
src/otx/recipe/anomaly_classification/openvino_model.yaml
src/otx/recipe/anomaly_classification/padim.yaml
src/otx/recipe/anomaly_classification/stfpm.yaml
src/otx/recipe/anomaly_detection/openvino_model.yaml
src/otx/recipe/anomaly_detection/padim.yaml
src/otx/recipe/anomaly_detection/stfpm.yaml
src/otx/recipe/anomaly_segmentation/openvino_model.yaml
src/otx/recipe/anomaly_segmentation/padim.yaml
src/otx/recipe/anomaly_segmentation/stfpm.yaml
src/otx/recipe/classification/h_label_cls/deit_tiny.yaml
src/otx/recipe/classification/h_label_cls/efficientnet_b0.yaml
src/otx/recipe/classification/h_label_cls/efficientnet_v2.yaml
src/otx/recipe/classification/h_label_cls/mobilenet_v3_large.yaml
src/otx/recipe/classification/h_label_cls/openvino_model.yaml
src/otx/recipe/classification/h_label_cls/tv_efficientnet_b3.yaml
src/otx/recipe/classification/h_label_cls/tv_efficientnet_v2_l.yaml
src/otx/recipe/classification/h_label_cls/tv_mobilenet_v3_small.yaml
src/otx/recipe/classification/multi_class_cls/deit_tiny.yaml
src/otx/recipe/classification/multi_class_cls/dino_v2.yaml
src/otx/recipe/classification/multi_class_cls/efficientnet_b0.yaml
src/otx/recipe/classification/multi_class_cls/efficientnet_v2.yaml
src/otx/recipe/classification/multi_class_cls/mobilenet_v3_large.yaml
src/otx/recipe/classification/multi_class_cls/openvino_model.yaml
src/otx/recipe/classification/multi_class_cls/tv_efficientnet_b3.yaml
src/otx/recipe/classification/multi_class_cls/tv_efficientnet_v2_l.yaml
src/otx/recipe/classification/multi_class_cls/tv_mobilenet_v3_small.yaml
src/otx/recipe/classification/multi_class_cls/semisl/deit_tiny_semisl.yaml
src/otx/recipe/classification/multi_class_cls/semisl/dino_v2_semisl.yaml
src/otx/recipe/classification/multi_class_cls/semisl/efficientnet_b0_semisl.yaml
src/otx/recipe/classification/multi_class_cls/semisl/efficientnet_v2_semisl.yaml
src/otx/recipe/classification/multi_class_cls/semisl/mobilenet_v3_large_semisl.yaml
src/otx/recipe/classification/multi_class_cls/semisl/tv_efficientnet_b3_semisl.yaml
src/otx/recipe/classification/multi_class_cls/semisl/tv_efficientnet_v2_l_semisl.yaml
src/otx/recipe/classification/multi_class_cls/semisl/tv_mobilenet_v3_small_semisl.yaml
src/otx/recipe/classification/multi_label_cls/deit_tiny.yaml
src/otx/recipe/classification/multi_label_cls/efficientnet_b0.yaml
src/otx/recipe/classification/multi_label_cls/efficientnet_v2.yaml
src/otx/recipe/classification/multi_label_cls/mobilenet_v3_large.yaml
src/otx/recipe/classification/multi_label_cls/openvino_model.yaml
src/otx/recipe/classification/multi_label_cls/tv_efficientnet_b3.yaml
src/otx/recipe/classification/multi_label_cls/tv_efficientnet_v2_l.yaml
src/otx/recipe/classification/multi_label_cls/tv_mobilenet_v3_small.yaml
src/otx/recipe/detection/atss_mobilenetv2.yaml
src/otx/recipe/detection/atss_mobilenetv2_tile.yaml
src/otx/recipe/detection/atss_resnext101.yaml
src/otx/recipe/detection/atss_resnext101_tile.yaml
src/otx/recipe/detection/openvino_model.yaml
src/otx/recipe/detection/rtdetr_101.yaml
src/otx/recipe/detection/rtdetr_101_tile.yaml
src/otx/recipe/detection/rtdetr_18.yaml
src/otx/recipe/detection/rtdetr_18_tile.yaml
src/otx/recipe/detection/rtdetr_50.yaml
src/otx/recipe/detection/rtdetr_50_tile.yaml
src/otx/recipe/detection/rtmdet_tiny.yaml
src/otx/recipe/detection/rtmdet_tiny_tile.yaml
src/otx/recipe/detection/ssd_mobilenetv2.yaml
src/otx/recipe/detection/ssd_mobilenetv2_tile.yaml
src/otx/recipe/detection/yolox_l.yaml
src/otx/recipe/detection/yolox_l_tile.yaml
src/otx/recipe/detection/yolox_s.yaml
src/otx/recipe/detection/yolox_s_tile.yaml
src/otx/recipe/detection/yolox_tiny.yaml
src/otx/recipe/detection/yolox_tiny_tile.yaml
src/otx/recipe/detection/yolox_x.yaml
src/otx/recipe/detection/yolox_x_tile.yaml
src/otx/recipe/instance_segmentation/maskrcnn_efficientnetb2b.yaml
src/otx/recipe/instance_segmentation/maskrcnn_efficientnetb2b_tile.yaml
src/otx/recipe/instance_segmentation/maskrcnn_r50.yaml
src/otx/recipe/instance_segmentation/maskrcnn_r50_tile.yaml
src/otx/recipe/instance_segmentation/maskrcnn_r50_tv.yaml
src/otx/recipe/instance_segmentation/maskrcnn_r50_tv_tile.yaml
src/otx/recipe/instance_segmentation/maskrcnn_swint.yaml
src/otx/recipe/instance_segmentation/maskrcnn_swint_tile.yaml
src/otx/recipe/instance_segmentation/openvino_model.yaml
src/otx/recipe/instance_segmentation/rtmdet_inst_tiny.yaml
src/otx/recipe/instance_segmentation/rtmdet_inst_tiny_tile.yaml
src/otx/recipe/keypoint_detection/rtmpose_tiny.yaml
src/otx/recipe/keypoint_detection/rtmpose_tiny_single_obj.yaml
src/otx/recipe/rotated_detection/maskrcnn_efficientnetb2b.yaml
src/otx/recipe/rotated_detection/maskrcnn_efficientnetb2b_tile.yaml
src/otx/recipe/rotated_detection/maskrcnn_r50.yaml
src/otx/recipe/rotated_detection/maskrcnn_r50_tile.yaml
src/otx/recipe/rotated_detection/openvino_model.yaml
src/otx/recipe/semantic_segmentation/dino_v2.yaml
src/otx/recipe/semantic_segmentation/litehrnet_18.yaml
src/otx/recipe/semantic_segmentation/litehrnet_s.yaml
src/otx/recipe/semantic_segmentation/litehrnet_x.yaml
src/otx/recipe/semantic_segmentation/openvino_model.yaml
src/otx/recipe/semantic_segmentation/segnext_b.yaml
src/otx/recipe/semantic_segmentation/segnext_s.yaml
src/otx/recipe/semantic_segmentation/segnext_t.yaml
src/otx/recipe/semantic_segmentation/semisl/dino_v2_semisl.yaml
src/otx/recipe/semantic_segmentation/semisl/litehrnet_18_semisl.yaml
src/otx/recipe/semantic_segmentation/semisl/litehrnet_s_semisl.yaml
src/otx/recipe/semantic_segmentation/semisl/litehrnet_x_semisl.yaml
src/otx/recipe/semantic_segmentation/semisl/segnext_b_semisl.yaml
src/otx/recipe/semantic_segmentation/semisl/segnext_s_semisl.yaml
src/otx/recipe/semantic_segmentation/semisl/segnext_t_semisl.yaml
src/otx/recipe/visual_prompting/openvino_model.yaml
src/otx/recipe/visual_prompting/sam_tiny_vit.yaml
src/otx/recipe/visual_prompting/sam_vit_b.yaml
src/otx/recipe/zero_shot_visual_prompting/openvino_model.yaml
src/otx/recipe/zero_shot_visual_prompting/sam_tiny_vit.yaml
src/otx/recipe/zero_shot_visual_prompting/sam_vit_b.yaml
src/otx/tools/__init__.py
src/otx/tools/converter.py
src/otx/tools/translate_mmrecipe.py
src/otx/tools/templates/__init__.py
src/otx/tools/templates/action/classification/configuration.yaml
src/otx/tools/templates/action/classification/movinet/template.yaml
src/otx/tools/templates/action/classification/x3d/template.yaml
src/otx/tools/templates/action/detection/configuration.yaml
src/otx/tools/templates/action/detection/x3d_fast_rcnn/template.yaml
src/otx/tools/templates/anomaly/classification/padim/configuration.yaml
src/otx/tools/templates/anomaly/classification/padim/template.yaml
src/otx/tools/templates/anomaly/classification/stfpm/configuration.yaml
src/otx/tools/templates/anomaly/classification/stfpm/template.yaml
src/otx/tools/templates/anomaly/detection/padim/configuration.yaml
src/otx/tools/templates/anomaly/detection/padim/template.yaml
src/otx/tools/templates/anomaly/detection/stfpm/configuration.yaml
src/otx/tools/templates/anomaly/detection/stfpm/template.yaml
src/otx/tools/templates/anomaly/segmentation/padim/configuration.yaml
src/otx/tools/templates/anomaly/segmentation/padim/template.yaml
src/otx/tools/templates/anomaly/segmentation/stfpm/configuration.yaml
src/otx/tools/templates/anomaly/segmentation/stfpm/template.yaml
src/otx/tools/templates/classification/configuration.yaml
src/otx/tools/templates/classification/deit_tiny/template.yaml
src/otx/tools/templates/classification/efficientnet_b0_cls_incr/template.yaml
src/otx/tools/templates/classification/efficientnet_b3/template.yaml
src/otx/tools/templates/classification/efficientnet_v2_l/template.yaml
src/otx/tools/templates/classification/efficientnet_v2_s_cls_incr/template.yaml
src/otx/tools/templates/classification/mobilenet_v3_large_1_cls_incr/template.yaml
src/otx/tools/templates/classification/mobilenet_v3_small/template.yaml
src/otx/tools/templates/detection/detection/configuration.yaml
src/otx/tools/templates/detection/detection/cspdarknet_yolox_l/template.yaml
src/otx/tools/templates/detection/detection/cspdarknet_yolox_s/template.yaml
src/otx/tools/templates/detection/detection/cspdarknet_yolox_tiny/template.yaml
src/otx/tools/templates/detection/detection/cspdarknet_yolox_x/template.yaml
src/otx/tools/templates/detection/detection/mobilenetv2_atss/template.yaml
src/otx/tools/templates/detection/detection/mobilenetv2_ssd/template.yaml
src/otx/tools/templates/detection/detection/resnext101_atss/template.yaml
src/otx/tools/templates/detection/detection/rtdetr_101/template.yaml
src/otx/tools/templates/detection/detection/rtdetr_18/template.yaml
src/otx/tools/templates/detection/detection/rtdetr_50/template.yaml
src/otx/tools/templates/detection/detection/rtmdet_tiny/template.yaml
src/otx/tools/templates/detection/instance_segmentation/configuration.yaml
src/otx/tools/templates/detection/instance_segmentation/efficientnetb2b_maskrcnn/template.yaml
src/otx/tools/templates/detection/instance_segmentation/maskrcnn_swin_t/template.yaml
src/otx/tools/templates/detection/instance_segmentation/resnet50_maskrcnn/template.yaml
src/otx/tools/templates/detection/instance_segmentation/rtmdet_tiny/template.yaml
src/otx/tools/templates/detection/rotated_detection/configuration.yaml
src/otx/tools/templates/detection/rotated_detection/efficientnetb2b_maskrcnn/template.yaml
src/otx/tools/templates/detection/rotated_detection/resnet50_maskrcnn/template.yaml
src/otx/tools/templates/segmentation/configuration.yaml
src/otx/tools/templates/segmentation/dinov2_small/template.yaml
src/otx/tools/templates/segmentation/ham_segnext_b/template.yaml
src/otx/tools/templates/segmentation/ham_segnext_s/template.yaml
src/otx/tools/templates/segmentation/ham_segnext_t/template.yaml
src/otx/tools/templates/segmentation/ocr_lite_hrnet_18_mod2/template.yaml
src/otx/tools/templates/segmentation/ocr_lite_hrnet_s_mod2/template.yaml
src/otx/tools/templates/segmentation/ocr_lite_hrnet_x_mod3/template.yaml
src/otx/tools/templates/visual_prompting/configuration.yaml
src/otx/tools/templates/visual_prompting/sam_tiny_vit/template.yaml
src/otx/tools/templates/visual_prompting/sam_vit_b/template.yaml
src/otx/tools/templates/visual_prompting/zero_shot_sam_tiny_vit/configuration.yaml
src/otx/tools/templates/visual_prompting/zero_shot_sam_tiny_vit/template.yaml
src/otx/tools/templates/visual_prompting/zero_shot_sam_vit_b/configuration.yaml
src/otx/tools/templates/visual_prompting/zero_shot_sam_vit_b/template.yaml
src/otx/utils/__init__.py
src/otx/utils/signal.py
src/otx/utils/utils.py
tests/__init__.py
tests/conftest.py
tests/test_helpers.py
tests/utils.py
tests/assets/mmdeploy_config_sample.py
tests/assets/action_classification_dataset/test.csv
tests/assets/action_classification_dataset/train.csv
tests/assets/action_classification_dataset/val.csv
tests/assets/action_classification_dataset/test/0.mp4
tests/assets/action_classification_dataset/test/1.mp4
tests/assets/action_classification_dataset/train/0.mp4
tests/assets/action_classification_dataset/train/1.mp4
tests/assets/action_classification_dataset/val/0.mp4
tests/assets/action_classification_dataset/val/1.mp4
tests/assets/action_detection_dataset/annotations/ava_action_list_v2.2.pbtxt
tests/assets/action_detection_dataset/annotations/ava_test.csv
tests/assets/action_detection_dataset/annotations/ava_train.csv
tests/assets/action_detection_dataset/annotations/ava_val.csv
tests/assets/action_detection_dataset/annotations/test.pkl
tests/assets/action_detection_dataset/annotations/train.pkl
tests/assets/action_detection_dataset/annotations/val.pkl
tests/assets/action_detection_dataset/frames/train_video0/train_video0_0000.jpg
tests/assets/action_detection_dataset/frames/train_video0/train_video0_0001.jpg
tests/assets/action_detection_dataset/frames/train_video0/train_video0_0002.jpg
tests/assets/action_detection_dataset/frames/train_video0/train_video0_0003.jpg
tests/assets/action_detection_dataset/frames/train_video0/train_video0_0004.jpg
tests/assets/action_detection_dataset/frames/train_video0/train_video0_0005.jpg
tests/assets/action_detection_dataset/frames/train_video0/train_video0_0006.jpg
tests/assets/action_detection_dataset/frames/train_video0/train_video0_0007.jpg
tests/assets/action_detection_dataset/frames/train_video0/train_video0_0008.jpg
tests/assets/action_detection_dataset/frames/train_video0/train_video0_0009.jpg
tests/assets/action_detection_dataset/frames/train_video1/train_video1_0000.jpg
tests/assets/action_detection_dataset/frames/train_video1/train_video1_0001.jpg
tests/assets/action_detection_dataset/frames/train_video1/train_video1_0002.jpg
tests/assets/action_detection_dataset/frames/train_video1/train_video1_0003.jpg
tests/assets/action_detection_dataset/frames/train_video1/train_video1_0004.jpg
tests/assets/action_detection_dataset/frames/train_video1/train_video1_0005.jpg
tests/assets/action_detection_dataset/frames/train_video1/train_video1_0006.jpg
tests/assets/action_detection_dataset/frames/train_video1/train_video1_0007.jpg
tests/assets/action_detection_dataset/frames/train_video1/train_video1_0008.jpg
tests/assets/action_detection_dataset/frames/train_video1/train_video1_0009.jpg
tests/assets/action_detection_dataset/frames/train_video2/train_video2_0000.jpg
tests/assets/action_detection_dataset/frames/train_video2/train_video2_0001.jpg
tests/assets/action_detection_dataset/frames/train_video2/train_video2_0002.jpg
tests/assets/action_detection_dataset/frames/train_video2/train_video2_0003.jpg
tests/assets/action_detection_dataset/frames/train_video2/train_video2_0004.jpg
tests/assets/action_detection_dataset/frames/train_video2/train_video2_0005.jpg
tests/assets/action_detection_dataset/frames/train_video2/train_video2_0006.jpg
tests/assets/action_detection_dataset/frames/train_video2/train_video2_0007.jpg
tests/assets/action_detection_dataset/frames/train_video2/train_video2_0008.jpg
tests/assets/action_detection_dataset/frames/train_video2/train_video2_0009.jpg
tests/assets/action_detection_dataset/frames/train_video3/train_video3_0000.jpg
tests/assets/action_detection_dataset/frames/train_video3/train_video3_0001.jpg
tests/assets/action_detection_dataset/frames/train_video3/train_video3_0002.jpg
tests/assets/action_detection_dataset/frames/train_video3/train_video3_0003.jpg
tests/assets/action_detection_dataset/frames/train_video3/train_video3_0004.jpg
tests/assets/action_detection_dataset/frames/train_video3/train_video3_0005.jpg
tests/assets/action_detection_dataset/frames/train_video3/train_video3_0006.jpg
tests/assets/action_detection_dataset/frames/train_video3/train_video3_0007.jpg
tests/assets/action_detection_dataset/frames/train_video3/train_video3_0008.jpg
tests/assets/action_detection_dataset/frames/train_video3/train_video3_0009.jpg
tests/assets/anomaly_hazelnut/ground_truth/colour/00.png
tests/assets/anomaly_hazelnut/ground_truth/colour/01.png
tests/assets/anomaly_hazelnut/ground_truth/colour/02.png
tests/assets/anomaly_hazelnut/ground_truth/colour/03.png
tests/assets/anomaly_hazelnut/ground_truth/colour/04.png
tests/assets/anomaly_hazelnut/ground_truth/colour/05.png
tests/assets/anomaly_hazelnut/ground_truth/colour/06.png
tests/assets/anomaly_hazelnut/ground_truth/colour/07.png
tests/assets/anomaly_hazelnut/ground_truth/colour/08.png
tests/assets/anomaly_hazelnut/ground_truth/colour/09.png
tests/assets/anomaly_hazelnut/ground_truth/colour/10.png
tests/assets/anomaly_hazelnut/ground_truth/colour/11.png
tests/assets/anomaly_hazelnut/ground_truth/colour/12.png
tests/assets/anomaly_hazelnut/ground_truth/colour/13.png
tests/assets/anomaly_hazelnut/ground_truth/colour/14.png
tests/assets/anomaly_hazelnut/ground_truth/colour/15.png
tests/assets/anomaly_hazelnut/ground_truth/colour/16.png
tests/assets/anomaly_hazelnut/test/colour/00.jpg
tests/assets/anomaly_hazelnut/test/colour/01.jpg
tests/assets/anomaly_hazelnut/test/colour/02.jpg
tests/assets/anomaly_hazelnut/test/colour/03.jpg
tests/assets/anomaly_hazelnut/test/colour/04.jpg
tests/assets/anomaly_hazelnut/test/colour/05.jpg
tests/assets/anomaly_hazelnut/test/colour/06.jpg
tests/assets/anomaly_hazelnut/test/colour/07.jpg
tests/assets/anomaly_hazelnut/test/colour/08.jpg
tests/assets/anomaly_hazelnut/test/colour/09.jpg
tests/assets/anomaly_hazelnut/test/colour/10.jpg
tests/assets/anomaly_hazelnut/test/colour/11.jpg
tests/assets/anomaly_hazelnut/test/colour/12.jpg
tests/assets/anomaly_hazelnut/test/colour/13.jpg
tests/assets/anomaly_hazelnut/test/colour/14.jpg
tests/assets/anomaly_hazelnut/test/colour/15.jpg
tests/assets/anomaly_hazelnut/test/colour/16.jpg
tests/assets/anomaly_hazelnut/test/good/04.jpg
tests/assets/anomaly_hazelnut/test/good/05.jpg
tests/assets/anomaly_hazelnut/test/good/13.jpg
tests/assets/anomaly_hazelnut/test/good/23.jpg
tests/assets/anomaly_hazelnut/test/good/25.jpg
tests/assets/anomaly_hazelnut/test/good/28.jpg
tests/assets/anomaly_hazelnut/train/good/00.jpg
tests/assets/anomaly_hazelnut/train/good/01.jpg
tests/assets/anomaly_hazelnut/train/good/02.jpg
tests/assets/anomaly_hazelnut/train/good/03.jpg
tests/assets/anomaly_hazelnut/train/good/06.jpg
tests/assets/anomaly_hazelnut/train/good/07.jpg
tests/assets/anomaly_hazelnut/train/good/08.jpg
tests/assets/anomaly_hazelnut/train/good/09.jpg
tests/assets/anomaly_hazelnut/train/good/10.jpg
tests/assets/anomaly_hazelnut/train/good/11.jpg
tests/assets/anomaly_hazelnut/train/good/12.jpg
tests/assets/anomaly_hazelnut/train/good/14.jpg
tests/assets/anomaly_hazelnut/train/good/15.jpg
tests/assets/anomaly_hazelnut/train/good/16.jpg
tests/assets/anomaly_hazelnut/train/good/17.jpg
tests/assets/anomaly_hazelnut/train/good/18.jpg
tests/assets/anomaly_hazelnut/train/good/19.jpg
tests/assets/anomaly_hazelnut/train/good/20.jpg
tests/assets/anomaly_hazelnut/train/good/21.jpg
tests/assets/anomaly_hazelnut/train/good/22.jpg
tests/assets/anomaly_hazelnut/train/good/24.jpg
tests/assets/anomaly_hazelnut/train/good/26.jpg
tests/assets/anomaly_hazelnut/train/good/27.jpg
tests/assets/anomaly_hazelnut/train/good/29.jpg
tests/assets/anomaly_hazelnut/train/good/30.jpg
tests/assets/anomaly_hazelnut/train/good/31.jpg
tests/assets/anomaly_hazelnut/train/good/32.jpg
tests/assets/anomaly_hazelnut/train/good/33.jpg
tests/assets/car_tree_bug/annotations/instances_test.json
tests/assets/car_tree_bug/annotations/instances_train.json
tests/assets/car_tree_bug/annotations/instances_val.json
tests/assets/car_tree_bug/images/test/Slide20.PNG
tests/assets/car_tree_bug/images/test/Slide3.PNG
tests/assets/car_tree_bug/images/train/Slide4.PNG
tests/assets/car_tree_bug/images/train/Slide5.PNG
tests/assets/car_tree_bug/images/train/Slide6.PNG
tests/assets/car_tree_bug/images/train/Slide7.PNG
tests/assets/car_tree_bug/images/train/Slide8.PNG
tests/assets/car_tree_bug/images/train/Slide9.PNG
tests/assets/car_tree_bug/images/val/Slide20.PNG
tests/assets/car_tree_bug/images/val/Slide3.PNG
tests/assets/car_tree_bug_keypoint/annotations/person_keypoints_test.json
tests/assets/car_tree_bug_keypoint/annotations/person_keypoints_train.json
tests/assets/car_tree_bug_keypoint/annotations/person_keypoints_val.json
tests/assets/car_tree_bug_keypoint/images/test/Slide20.PNG
tests/assets/car_tree_bug_keypoint/images/test/Slide3.PNG
tests/assets/car_tree_bug_keypoint/images/train/Slide4.PNG
tests/assets/car_tree_bug_keypoint/images/train/Slide5.PNG
tests/assets/car_tree_bug_keypoint/images/train/Slide6.PNG
tests/assets/car_tree_bug_keypoint/images/train/Slide7.PNG
tests/assets/car_tree_bug_keypoint/images/train/Slide8.PNG
tests/assets/car_tree_bug_keypoint/images/train/Slide9.PNG
tests/assets/car_tree_bug_keypoint/images/val/Slide20.PNG
tests/assets/car_tree_bug_keypoint/images/val/Slide3.PNG
tests/assets/car_tree_bug_zero_shot/annotations/instances_test.json
tests/assets/car_tree_bug_zero_shot/annotations/instances_train.json
tests/assets/car_tree_bug_zero_shot/annotations/instances_val.json
tests/assets/car_tree_bug_zero_shot/images/test/Slide3.PNG
tests/assets/car_tree_bug_zero_shot/images/test/Slide4.PNG
tests/assets/car_tree_bug_zero_shot/images/test/Slide5.PNG
tests/assets/car_tree_bug_zero_shot/images/test/Slide6.PNG
tests/assets/car_tree_bug_zero_shot/images/test/Slide7.PNG
tests/assets/car_tree_bug_zero_shot/images/test/Slide8.PNG
tests/assets/car_tree_bug_zero_shot/images/test/Slide9.PNG
tests/assets/car_tree_bug_zero_shot/images/train/Slide4.PNG
tests/assets/car_tree_bug_zero_shot/images/val/Slide3.PNG
tests/assets/car_tree_bug_zero_shot/images/val/Slide4.PNG
tests/assets/car_tree_bug_zero_shot/images/val/Slide5.PNG
tests/assets/car_tree_bug_zero_shot/images/val/Slide6.PNG
tests/assets/car_tree_bug_zero_shot/images/val/Slide7.PNG
tests/assets/car_tree_bug_zero_shot/images/val/Slide8.PNG
tests/assets/car_tree_bug_zero_shot/images/val/Slide9.PNG
tests/assets/classification_dataset/test/0/11.jpg
tests/assets/classification_dataset/test/0/14.jpg
tests/assets/classification_dataset/test/0/16.jpg
tests/assets/classification_dataset/test/0/17.jpg
tests/assets/classification_dataset/test/0/18.jpg
tests/assets/classification_dataset/test/0/23.jpg
tests/assets/classification_dataset/test/0/26.jpg
tests/assets/classification_dataset/test/0/3.jpg
tests/assets/classification_dataset/test/0/30.jpg
tests/assets/classification_dataset/test/0/4.jpg
tests/assets/classification_dataset/test/0/5.jpg
tests/assets/classification_dataset/test/0/6.jpg
tests/assets/classification_dataset/test/0/7.jpg
tests/assets/classification_dataset/test/0/8.jpg
tests/assets/classification_dataset/test/1/0.jpg
tests/assets/classification_dataset/test/1/1.jpg
tests/assets/classification_dataset/test/1/10.jpg
tests/assets/classification_dataset/test/1/12.jpg
tests/assets/classification_dataset/test/1/15.jpg
tests/assets/classification_dataset/test/1/19.jpg
tests/assets/classification_dataset/test/1/2.jpg
tests/assets/classification_dataset/test/1/21.jpg
tests/assets/classification_dataset/test/1/27.jpg
tests/assets/classification_dataset/test/1/28.jpg
tests/assets/classification_dataset/test/1/29.jpg
tests/assets/classification_dataset/train/0/11.jpg
tests/assets/classification_dataset/train/0/14.jpg
tests/assets/classification_dataset/train/0/16.jpg
tests/assets/classification_dataset/train/0/17.jpg
tests/assets/classification_dataset/train/0/18.jpg
tests/assets/classification_dataset/train/0/23.jpg
tests/assets/classification_dataset/train/0/26.jpg
tests/assets/classification_dataset/train/0/3.jpg
tests/assets/classification_dataset/train/0/30.jpg
tests/assets/classification_dataset/train/0/4.jpg
tests/assets/classification_dataset/train/0/5.jpg
tests/assets/classification_dataset/train/0/6.jpg
tests/assets/classification_dataset/train/0/7.jpg
tests/assets/classification_dataset/train/0/8.jpg
tests/assets/classification_dataset/train/1/0.jpg
tests/assets/classification_dataset/train/1/1.jpg
tests/assets/classification_dataset/train/1/10.jpg
tests/assets/classification_dataset/train/1/12.jpg
tests/assets/classification_dataset/train/1/15.jpg
tests/assets/classification_dataset/train/1/19.jpg
tests/assets/classification_dataset/train/1/2.jpg
tests/assets/classification_dataset/train/1/21.jpg
tests/assets/classification_dataset/train/1/27.jpg
tests/assets/classification_dataset/train/1/28.jpg
tests/assets/classification_dataset/train/1/29.jpg
tests/assets/classification_dataset/val/0/11.jpg
tests/assets/classification_dataset/val/0/14.jpg
tests/assets/classification_dataset/val/0/16.jpg
tests/assets/classification_dataset/val/0/17.jpg
tests/assets/classification_dataset/val/0/18.jpg
tests/assets/classification_dataset/val/0/23.jpg
tests/assets/classification_dataset/val/0/26.jpg
tests/assets/classification_dataset/val/0/3.jpg
tests/assets/classification_dataset/val/0/30.jpg
tests/assets/classification_dataset/val/0/4.jpg
tests/assets/classification_dataset/val/0/5.jpg
tests/assets/classification_dataset/val/0/6.jpg
tests/assets/classification_dataset/val/0/7.jpg
tests/assets/classification_dataset/val/0/8.jpg
tests/assets/classification_dataset/val/1/0.jpg
tests/assets/classification_dataset/val/1/1.jpg
tests/assets/classification_dataset/val/1/10.jpg
tests/assets/classification_dataset/val/1/12.jpg
tests/assets/classification_dataset/val/1/15.jpg
tests/assets/classification_dataset/val/1/19.jpg
tests/assets/classification_dataset/val/1/2.jpg
tests/assets/classification_dataset/val/1/21.jpg
tests/assets/classification_dataset/val/1/27.jpg
tests/assets/classification_dataset/val/1/28.jpg
tests/assets/classification_dataset/val/1/29.jpg
tests/assets/classification_semisl_dataset/unlabeled/11.jpg
tests/assets/classification_semisl_dataset/unlabeled/14.jpg
tests/assets/classification_semisl_dataset/unlabeled/15.jpg
tests/assets/classification_semisl_dataset/unlabeled/16.jpg
tests/assets/classification_semisl_dataset/unlabeled/17.jpg
tests/assets/classification_semisl_dataset/unlabeled/18.jpg
tests/assets/classification_semisl_dataset/unlabeled/19.jpg
tests/assets/classification_semisl_dataset/unlabeled/21.jpg
tests/assets/classification_semisl_dataset/unlabeled/23.jpg
tests/assets/classification_semisl_dataset/unlabeled/26.jpg
tests/assets/classification_semisl_dataset/unlabeled/27.jpg
tests/assets/classification_semisl_dataset/unlabeled/28.jpg
tests/assets/classification_semisl_dataset/unlabeled/29.jpg
tests/assets/classification_semisl_dataset/unlabeled/30.jpg
tests/assets/common_semantic_segmentation_dataset/supervised/test/dataset_meta.json
tests/assets/common_semantic_segmentation_dataset/supervised/test/images/0001.png
tests/assets/common_semantic_segmentation_dataset/supervised/test/images/0002.png
tests/assets/common_semantic_segmentation_dataset/supervised/test/masks/0001.png
tests/assets/common_semantic_segmentation_dataset/supervised/test/masks/0002.png
tests/assets/common_semantic_segmentation_dataset/supervised/train/dataset_meta.json
tests/assets/common_semantic_segmentation_dataset/supervised/train/images/0001.png
tests/assets/common_semantic_segmentation_dataset/supervised/train/images/0002.png
tests/assets/common_semantic_segmentation_dataset/supervised/train/images/0003.png
tests/assets/common_semantic_segmentation_dataset/supervised/train/masks/0001.png
tests/assets/common_semantic_segmentation_dataset/supervised/train/masks/0002.png
tests/assets/common_semantic_segmentation_dataset/supervised/train/masks/0003.png
tests/assets/common_semantic_segmentation_dataset/supervised/val/dataset_meta.json
tests/assets/common_semantic_segmentation_dataset/supervised/val/images/0001.png
tests/assets/common_semantic_segmentation_dataset/supervised/val/images/0002.png
tests/assets/common_semantic_segmentation_dataset/supervised/val/masks/0001.png
tests/assets/common_semantic_segmentation_dataset/supervised/val/masks/0002.png
tests/assets/common_semantic_segmentation_dataset/unlabeled/0001.png
tests/assets/common_semantic_segmentation_dataset/unlabeled/0002.png
tests/assets/common_semantic_segmentation_dataset/unlabeled/0003.png
tests/assets/common_semantic_segmentation_dataset/unlabeled/0004.png
tests/assets/common_semantic_segmentation_dataset/unlabeled/0005.png
tests/assets/geti-configs/cls.json
tests/assets/geti-configs/det.json
tests/assets/hlabel_classification/annotations/test.json
tests/assets/hlabel_classification/annotations/train.json
tests/assets/hlabel_classification/annotations/val.json
tests/assets/hlabel_classification/images/test/078.jpg
tests/assets/hlabel_classification/images/test/092.jpg
tests/assets/hlabel_classification/images/test/100.jpg
tests/assets/hlabel_classification/images/test/154.jpg
tests/assets/hlabel_classification/images/train/077.jpg
tests/assets/hlabel_classification/images/train/083.jpg
tests/assets/hlabel_classification/images/train/093.jpg
tests/assets/hlabel_classification/images/train/099.jpg
tests/assets/hlabel_classification/images/train/099__1.jpg
tests/assets/hlabel_classification/images/train/106.jpg
tests/assets/hlabel_classification/images/train/152.jpg
tests/assets/hlabel_classification/images/train/153.jpg
tests/assets/hlabel_classification/images/val/076.jpg
tests/assets/hlabel_classification/images/val/094.jpg
tests/assets/hlabel_classification/images/val/101.jpg
tests/assets/hlabel_classification/images/val/155.jpg
tests/assets/mmdet_configs/rtmdet_tiny_8xb32-300e_coco.py
tests/assets/multilabel_classification/annotations/test.json
tests/assets/multilabel_classification/annotations/train.json
tests/assets/multilabel_classification/annotations/val.json
tests/assets/multilabel_classification/images/test/Slide12.jpg
tests/assets/multilabel_classification/images/test/Slide6.jpg
tests/assets/multilabel_classification/images/test/Slide8.jpg
tests/assets/multilabel_classification/images/train/Slide1.jpg
tests/assets/multilabel_classification/images/train/Slide10.jpg
tests/assets/multilabel_classification/images/train/Slide11.jpg
tests/assets/multilabel_classification/images/train/Slide2.jpg
tests/assets/multilabel_classification/images/train/Slide3.jpg
tests/assets/multilabel_classification/images/train/Slide4.jpg
tests/assets/multilabel_classification/images/train/Slide5.jpg
tests/assets/multilabel_classification/images/train/Slide7.jpg
tests/assets/multilabel_classification/images/train/Slide9.jpg
tests/assets/multilabel_classification/images/val/Slide1.jpg
tests/assets/multilabel_classification/images/val/Slide10.jpg
tests/assets/multilabel_classification/images/val/Slide11.jpg
tests/assets/multilabel_classification/images/val/Slide2.jpg
tests/assets/multilabel_classification/images/val/Slide3.jpg
tests/assets/multilabel_classification/images/val/Slide4.jpg
tests/assets/multilabel_classification/images/val/Slide5.jpg
tests/assets/multilabel_classification/images/val/Slide7.jpg
tests/assets/multilabel_classification/images/val/Slide9.jpg
tests/e2e/__init__.py
tests/e2e/conftest.py
tests/e2e/cli/__init__.py
tests/e2e/cli/test_cli.py
tests/e2e/cli/utils.py
tests/fuzzing/__init__.py
tests/fuzzing/cli_fuzzing.py
tests/fuzzing/eval_fuzzing_crash.py
tests/fuzzing/helper.py
tests/fuzzing/assets/cli/commands.dict
tests/integration/__init__.py
tests/integration/conftest.py
tests/integration/api/__init__.py
tests/integration/api/test_auto_configuration.py
tests/integration/api/test_engine_api.py
tests/integration/api/test_xai.py
tests/integration/cli/__init__.py
tests/integration/cli/test_auto_configuration.py
tests/integration/cli/test_cli.py
tests/integration/cli/test_export_inference.py
tests/perf/__init__.py
tests/perf/benchmark.py
tests/perf/conftest.py
tests/perf/test_action.py
tests/perf/test_anomaly.py
tests/perf/test_classification.py
tests/perf/test_detection.py
tests/perf/test_instance_segmentation.py
tests/perf/test_keypoint_detection.py
tests/perf/test_semantic_segmentation.py
tests/perf/test_visual_prompting.py
tests/perf/history/__init__.py
tests/perf/history/summary.ipynb
tests/perf/history/summary.py
tests/perf/history/v1.5.2/perf-benchmark-raw-all.csv
tests/perf/history/v1.6.0/perf-benchmark-raw-all.csv
tests/regression/__init__.py
tests/regression/conftest.py
tests/regression/test_regression.py
tests/unit/__init__.py
tests/unit/algo/__init__.py
tests/unit/algo/accelerators/__init__.py
tests/unit/algo/accelerators/test_xpu.py
tests/unit/algo/action_classification/__init__.py
tests/unit/algo/action_classification/test_movinet.py
tests/unit/algo/action_classification/test_x3d.py
tests/unit/algo/action_classification/backbones/__init__.py
tests/unit/algo/action_classification/backbones/test_movinet.py
tests/unit/algo/action_classification/heads/__init__.py
tests/unit/algo/action_classification/heads/test_movinet_head.py
tests/unit/algo/action_classification/recognizers/__init__.py
tests/unit/algo/action_classification/recognizers/test_movinet_recognizer.py
tests/unit/algo/anomaly/__init__.py
tests/unit/algo/anomaly/test_openvino_model.py
tests/unit/algo/callbacks/__init__.py
tests/unit/algo/callbacks/test_adaptive_train_scheduling.py
tests/unit/algo/callbacks/test_ema_mean_teacher.py
tests/unit/algo/callbacks/test_iteration_timer.py
tests/unit/algo/callbacks/test_unlabeled_loss_warmup.py
tests/unit/algo/classification/__init__.py
tests/unit/algo/classification/conftest.py
tests/unit/algo/classification/test_deit_tiny.py
tests/unit/algo/classification/test_efficientnet.py
tests/unit/algo/classification/test_huggingface_model.py
tests/unit/algo/classification/test_mobilenet_v3.py
tests/unit/algo/classification/test_timm_model.py
tests/unit/algo/classification/test_torchvision_model.py
tests/unit/algo/classification/backbones/__init__.py
tests/unit/algo/classification/backbones/test_otx_efficientnet.py
tests/unit/algo/classification/backbones/test_otx_mobilenet_v3.py
tests/unit/algo/classification/backbones/test_timm.py
tests/unit/algo/classification/backbones/test_vision_transformer.py
tests/unit/algo/classification/classifier/test_base_classifier.py
tests/unit/algo/classification/classifier/test_semi_sl_classifier.py
tests/unit/algo/classification/heads/__init__.py
tests/unit/algo/classification/heads/test_hlabel_cls_head.py
tests/unit/algo/classification/heads/test_multilabel_cls_head.py
tests/unit/algo/classification/heads/test_semi_sl_head.py
tests/unit/algo/classification/losses/__init__.py
tests/unit/algo/classification/losses/test_asymmetric_multilabel.py
tests/unit/algo/classification/utils/__init__.py
tests/unit/algo/classification/utils/test_embed.py
tests/unit/algo/classification/utils/test_ignored_labels.py
tests/unit/algo/classification/utils/test_swiglu_ffn.py
tests/unit/algo/common/test_iou2d_calculator.py
tests/unit/algo/common/backbones/__init__.py
tests/unit/algo/common/backbones/test_pytorchcv_backbones.py
tests/unit/algo/common/losses/__init__.py
tests/unit/algo/common/losses/test_smooth_l1_loss.py
tests/unit/algo/common/utils/__init__.py
tests/unit/algo/common/utils/test_nms.py
tests/unit/algo/common/utils/assigners/__init__.py
tests/unit/algo/common/utils/assigners/test_max_iou_assigner.py
tests/unit/algo/common/utils/prior_generators/__init__.py
tests/unit/algo/common/utils/prior_generators/test_point_generator.py
tests/unit/algo/detection/__init__.py
tests/unit/algo/detection/conftest.py
tests/unit/algo/detection/test_atss.py
tests/unit/algo/detection/test_huggingface_model.py
tests/unit/algo/detection/test_rtdetr.py
tests/unit/algo/detection/test_rtmdet.py
tests/unit/algo/detection/test_ssd.py
tests/unit/algo/detection/test_yolox.py
tests/unit/algo/detection/backbones/__init__.py
tests/unit/algo/detection/backbones/test_csp_darknet.py
tests/unit/algo/detection/backbones/test_presnet.py
tests/unit/algo/detection/base_models/test_detr.py
tests/unit/algo/detection/base_models/test_single_stage_detector.py
tests/unit/algo/detection/heads/__init__.py
tests/unit/algo/detection/heads/test_class_incremental_mixin.py
tests/unit/algo/detection/heads/test_custom_ssd_head.py
tests/unit/algo/detection/heads/test_rtdetr_decoder.py
tests/unit/algo/detection/heads/test_rtmdet_head.py
tests/unit/algo/detection/heads/test_yolox_head.py
tests/unit/algo/detection/layers/__init__.py
tests/unit/algo/detection/layers/test_channel_attention_layer.py
tests/unit/algo/detection/layers/test_csp_layer.py
tests/unit/algo/detection/losses/__init__.py
tests/unit/algo/detection/losses/test_iou_loss.py
tests/unit/algo/detection/losses/test_rtdetr_loss.py
tests/unit/algo/detection/necks/__init__.py
tests/unit/algo/detection/necks/test_hybrid_encoder.py
tests/unit/algo/detection/necks/test_yolox_pafpn.py
tests/unit/algo/detection/utils/__init__.py
tests/unit/algo/detection/utils/assigners/__init__.py
tests/unit/algo/detection/utils/assigners/test_sim_ota_assigner.py
tests/unit/algo/detection/utils/matchers/__init__.py
tests/unit/algo/detection/utils/matchers/test_hungarian_matcher.py
tests/unit/algo/detection/utils/prior_generators/__init__.py
tests/unit/algo/detection/utils/prior_generators/test_custom_anchor_generator.py
tests/unit/algo/explain/__init__.py
tests/unit/algo/explain/test_saliency_map_dumping.py
tests/unit/algo/explain/test_saliency_map_processing.py
tests/unit/algo/explain/test_xai_algorithms.py
tests/unit/algo/instance_segmentation/__init__.py
tests/unit/algo/instance_segmentation/conftest.py
tests/unit/algo/instance_segmentation/test_custom_roi_head.py
tests/unit/algo/instance_segmentation/test_evaluation.py
tests/unit/algo/instance_segmentation/test_maskrcnn.py
tests/unit/algo/instance_segmentation/test_rtmdet_inst.py
tests/unit/algo/keypoint_detection/__init__.py
tests/unit/algo/keypoint_detection/conftest.py
tests/unit/algo/keypoint_detection/test_rtmpose.py
tests/unit/algo/keypoint_detection/heads/test_rtmcc_head.py
tests/unit/algo/keypoint_detection/losses/test_loss_kldiscrete.py
tests/unit/algo/keypoint_detection/utils/test_rtmcc_block.py
tests/unit/algo/keypoint_detection/utils/test_scale_norm.py
tests/unit/algo/keypoint_detection/utils/test_simcc_label.py
tests/unit/algo/modules/__init__.py
tests/unit/algo/modules/test_activation.py
tests/unit/algo/modules/test_base_module.py
tests/unit/algo/modules/test_conv_module.py
tests/unit/algo/modules/test_norm.py
tests/unit/algo/modules/test_padding.py
tests/unit/algo/modules/test_scale.py
tests/unit/algo/modules/test_transformer.py
tests/unit/algo/plugins/__init__.py
tests/unit/algo/plugins/test_plugins.py
tests/unit/algo/samplers/__init__.py
tests/unit/algo/samplers/test_balanced_sampler.py
tests/unit/algo/samplers/test_class_incremental_sampler.py
tests/unit/algo/segmentation/__init__.py
tests/unit/algo/segmentation/test_dino_v2_seg.py
tests/unit/algo/segmentation/test_huggingface_model.py
tests/unit/algo/segmentation/test_segnext.py
tests/unit/algo/segmentation/backbones/__init__.py
tests/unit/algo/segmentation/backbones/test_dinov2.py
tests/unit/algo/segmentation/backbones/test_litehrnet.py
tests/unit/algo/segmentation/backbones/test_mscan.py
tests/unit/algo/segmentation/heads/__init__.py
tests/unit/algo/segmentation/heads/test_class_incremental.py
tests/unit/algo/segmentation/heads/test_ham_head.py
tests/unit/algo/segmentation/segmentors/test_base_model.py
tests/unit/algo/segmentation/segmentors/test_mean_teacher.py
tests/unit/algo/strategies/__init__.py
tests/unit/algo/strategies/test_strategies.py
tests/unit/algo/utils/__init__.py
tests/unit/algo/utils/test_mmengine_utils.py
tests/unit/algo/utils/test_segmentation.py
tests/unit/algo/utils/test_support_otx_v1.py
tests/unit/algo/visual_prompting/__init__.py
tests/unit/algo/visual_prompting/conftest.py
tests/unit/algo/visual_prompting/test_sam.py
tests/unit/algo/visual_prompting/backbones/__init__.py
tests/unit/algo/visual_prompting/backbones/test_tiny_vit.py
tests/unit/algo/visual_prompting/backbones/test_vit.py
tests/unit/algo/visual_prompting/decoders/__init__.py
tests/unit/algo/visual_prompting/decoders/test_sam_mask_decoder.py
tests/unit/algo/visual_prompting/encoders/__init__.py
tests/unit/algo/visual_prompting/encoders/test_sam_image_encoder.py
tests/unit/algo/visual_prompting/encoders/test_sam_prompt_encoder.py
tests/unit/algo/visual_prompting/losses/__init__.py
tests/unit/algo/visual_prompting/losses/test_sam_loss.py
tests/unit/algo/visual_prompting/utils/__init__.py
tests/unit/algo/visual_prompting/utils/test_layer_norm_2d.py
tests/unit/algo/visual_prompting/utils/test_postprocess.py
tests/unit/algo/visual_prompting/visual_prompters/__init__.py
tests/unit/algo/visual_prompting/visual_prompters/test_segment_anything.py
tests/unit/cli/__init__.py
tests/unit/cli/test_cli.py
tests/unit/cli/test_install.py
tests/unit/cli/utils/__init__.py
tests/unit/cli/utils/test_help_formatter.py
tests/unit/cli/utils/test_installation.py
tests/unit/cli/utils/test_jsonargparse.py
tests/unit/core/__init__.py
tests/unit/core/conftest.py
tests/unit/core/config/__init__.py
tests/unit/core/config/test_resolver.py
tests/unit/core/data/__init__.py
tests/unit/core/data/conftest.py
tests/unit/core/data/test_dataset.py
tests/unit/core/data/test_factory.py
tests/unit/core/data/test_mem_cache.py
tests/unit/core/data/test_module.py
tests/unit/core/data/test_pre_filtering.py
tests/unit/core/data/test_tiling.py
tests/unit/core/data/test_transform_libs.py
tests/unit/core/data/dataset/__init__.py
tests/unit/core/data/dataset/test_classification.py
tests/unit/core/data/dataset/test_keypoint_detection.py
tests/unit/core/data/dataset/test_segmentation.py
tests/unit/core/data/dataset/test_visual_prompting.py
tests/unit/core/data/entity/__init__.py
tests/unit/core/data/entity/conftest.py
tests/unit/core/data/entity/test_base.py
tests/unit/core/data/entity/test_detection.py
tests/unit/core/data/entity/test_utils.py
tests/unit/core/data/entity/test_visual_prompting.py
tests/unit/core/data/transform_libs/__init__.py
tests/unit/core/data/transform_libs/test_mmaction.py
tests/unit/core/data/transform_libs/test_mmcv.py
tests/unit/core/data/transform_libs/test_mmdet.py
tests/unit/core/data/transform_libs/test_mmpretrain.py
tests/unit/core/data/transform_libs/test_mmseg.py
tests/unit/core/data/transform_libs/test_torchvision.py
tests/unit/core/data/transform_libs/test_utils.py
tests/unit/core/data/utils/__init__.py
tests/unit/core/data/utils/test_utils.py
tests/unit/core/exporter/__init__.py
tests/unit/core/exporter/test_base.py
tests/unit/core/exporter/test_native.py
tests/unit/core/exporter/test_visual_prompting.py
tests/unit/core/exporter/exportable_code/__init__.py
tests/unit/core/exporter/exportable_code/conftest.py
tests/unit/core/exporter/exportable_code/demo/__init__.py
tests/unit/core/exporter/exportable_code/demo/demo_package/__init__.py
tests/unit/core/exporter/exportable_code/demo/demo_package/test_model_wrapper.py
tests/unit/core/exporter/exportable_code/demo/demo_package/test_utils.py
tests/unit/core/exporter/exportable_code/demo/demo_package/executors/__init__.py
tests/unit/core/exporter/exportable_code/demo/demo_package/executors/test_asynchronous.py
tests/unit/core/exporter/exportable_code/demo/demo_package/executors/test_synchronous.py
tests/unit/core/exporter/exportable_code/demo/demo_package/streamer/__init__.py
tests/unit/core/exporter/exportable_code/demo/demo_package/streamer/test_streamer.py
tests/unit/core/exporter/exportable_code/demo/demo_package/visualizers/test_vis_utils.py
tests/unit/core/exporter/exportable_code/demo/demo_package/visualizers/test_visualizers.py
tests/unit/core/metrics/__init__.py
tests/unit/core/metrics/test_accuracy.py
tests/unit/core/metrics/test_fmeasure.py
tests/unit/core/model/__init__.py
tests/unit/core/model/test_base.py
tests/unit/core/model/test_classification.py
tests/unit/core/model/test_detection.py
tests/unit/core/model/test_inst_segmentation.py
tests/unit/core/model/test_segmentation.py
tests/unit/core/model/test_visual_prompting.py
tests/unit/core/optimizer/__init__.py
tests/unit/core/optimizer/test_callable.py
tests/unit/core/schedulers/__init__.py
tests/unit/core/schedulers/test_callable.py
tests/unit/core/schedulers/test_warmup_schedulers.py
tests/unit/core/types/__init__.py
tests/unit/core/types/conftest.py
tests/unit/core/types/test_export.py
tests/unit/core/types/test_label.py
tests/unit/core/utils/__init__.py
tests/unit/core/utils/test_build.py
tests/unit/core/utils/test_cache.py
tests/unit/core/utils/test_config.py
tests/unit/core/utils/test_imports.py
tests/unit/core/utils/test_instantiators.py
tests/unit/core/utils/test_mask_utils.py
tests/unit/core/utils/test_tile.py
tests/unit/core/utils/test_utils.py
tests/unit/engine/__init__.py
tests/unit/engine/test_engine.py
tests/unit/engine/adaptive_bs/__init__.py
tests/unit/engine/adaptive_bs/test_adaptive_bs_api.py
tests/unit/engine/adaptive_bs/test_bs_search_algo.py
tests/unit/engine/hpo/__init__.py
tests/unit/engine/hpo/test_hpo_api.py
tests/unit/engine/hpo/test_hpo_trial.py
tests/unit/engine/hpo/test_utils.py
tests/unit/engine/utils/__init__.py
tests/unit/engine/utils/test_api.py
tests/unit/engine/utils/test_auto_configurator.py
tests/unit/hpo/__init__.py
tests/unit/hpo/test_hpo_base.py
tests/unit/hpo/test_hyperband.py
tests/unit/hpo/test_resource_manager.py
tests/unit/hpo/test_search_space.py
tests/unit/tools/__init__.py
tests/unit/tools/test_converter.py
tests/unit/utils/test_signal.py
tests/unit/utils/test_utils.py