From 30a0024e1850542ec0557b9d28936dbc5f3bc4cf Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 8 Apr 2024 13:07:56 +0000 Subject: [PATCH] Update documentation --- develop/_modules/otx/core/model/segmentation.html | 8 ++++---- develop/_modules/otx/core/types/label.html | 5 +++-- .../_autosummary/otx.core.model.segmentation.html | 6 +++--- develop/guide/reference/_autosummary/otx.core.types.html | 4 ++-- develop/searchindex.js | 2 +- 5 files changed, 13 insertions(+), 12 deletions(-) diff --git a/develop/_modules/otx/core/model/segmentation.html b/develop/_modules/otx/core/model/segmentation.html index 6cd4fcec336..bf5b64f59fb 100644 --- a/develop/_modules/otx/core/model/segmentation.html +++ b/develop/_modules/otx/core/model/segmentation.html @@ -254,7 +254,7 @@

Source code for otx.core.model.segmentation

 from otx.core.exporter.base import OTXModelExporter
 from otx.core.exporter.native import OTXNativeModelExporter
 from otx.core.metrics import MetricInput
-from otx.core.metrics.dice import DiceCallable
+from otx.core.metrics.dice import SegmCallable
 from otx.core.model.base import DefaultOptimizerCallable, DefaultSchedulerCallable, OTXModel, OVModel
 from otx.core.schedulers import LRSchedulerListCallable
 from otx.core.types.label import SegLabelInfo
@@ -281,7 +281,7 @@ 

Source code for otx.core.model.segmentation

         num_classes: int,
         optimizer: OptimizerCallable = DefaultOptimizerCallable,
         scheduler: LRSchedulerCallable | LRSchedulerListCallable = DefaultSchedulerCallable,
-        metric: MetricCallable = DiceCallable,
+        metric: MetricCallable = SegmCallable,  # type: ignore[assignment]
         torch_compile: bool = False,
     ):
         super().__init__(
@@ -342,7 +342,7 @@ 

Source code for otx.core.model.segmentation

         config: DictConfig,
         optimizer: OptimizerCallable = DefaultOptimizerCallable,
         scheduler: LRSchedulerCallable | LRSchedulerListCallable = DefaultSchedulerCallable,
-        metric: MetricCallable = DiceCallable,
+        metric: MetricCallable = SegmCallable,  # type: ignore[assignment]
         torch_compile: bool = False,
     ) -> None:
         config = inplace_num_classes(cfg=config, num_classes=num_classes)
@@ -478,7 +478,7 @@ 

Source code for otx.core.model.segmentation

         max_num_requests: int | None = None,
         use_throughput_mode: bool = True,
         model_api_configuration: dict[str, Any] | None = None,
-        metric: MetricCallable = DiceCallable,
+        metric: MetricCallable = SegmCallable,  # type: ignore[assignment]
         **kwargs,
     ) -> None:
         super().__init__(
diff --git a/develop/_modules/otx/core/types/label.html b/develop/_modules/otx/core/types/label.html
index 68769cf914d..cf50c181adc 100644
--- a/develop/_modules/otx/core/types/label.html
+++ b/develop/_modules/otx/core/types/label.html
@@ -540,7 +540,7 @@ 

Source code for otx.core.types.label

 class SegLabelInfo(LabelInfo):
     """Meta information of Semantic Segmentation."""
 
-    def __init__(self, label_names: list[str], label_groups: list[list[str]]) -> None:
+    def __init__(self, label_names: list[str], label_groups: list[list[str]], ignore_index: int = 255) -> None:
         if not any(word.lower() == "background" for word in label_names):
             msg = (
                 "Currently, no background label exists for `label_names`. "
@@ -549,7 +549,8 @@ 

Source code for otx.core.types.label

             )
             warnings.warn(msg, stacklevel=2)
             label_names.insert(0, "Background")
-        super().__init__(label_names, label_groups)
+ super().__init__(label_names, label_groups) + self.ignore_index = ignore_index
diff --git a/develop/guide/reference/_autosummary/otx.core.model.segmentation.html b/develop/guide/reference/_autosummary/otx.core.model.segmentation.html index f0211b184dd..cc438913e20 100644 --- a/develop/guide/reference/_autosummary/otx.core.model.segmentation.html +++ b/develop/guide/reference/_autosummary/otx.core.model.segmentation.html @@ -392,7 +392,7 @@
-class otx.core.model.segmentation.MMSegCompatibleModel(num_classes: int, config: DictConfig, optimizer: OptimizerCallable = <function _default_optimizer_callable>, scheduler: LRSchedulerCallable | LRSchedulerListCallable = <function _default_scheduler_callable>, metric: MetricCallable = <function _dice_callable>, torch_compile: bool = False)[source]#
+class otx.core.model.segmentation.MMSegCompatibleModel(num_classes: int, config: DictConfig, optimizer: OptimizerCallable = <function _default_optimizer_callable>, scheduler: LRSchedulerCallable | LRSchedulerListCallable = <function _default_scheduler_callable>, metric: MetricCallable = <function _segm_callable>, torch_compile: bool = False)[source]#

Bases: OTXSegmentationModel

Segmentation model compatible for MMSeg.

It can consume MMSeg model configuration translated into OTX configuration @@ -402,14 +402,14 @@

-class otx.core.model.segmentation.OTXSegmentationModel(num_classes: int, optimizer: OptimizerCallable = <function _default_optimizer_callable>, scheduler: LRSchedulerCallable | LRSchedulerListCallable = <function _default_scheduler_callable>, metric: MetricCallable = <function _dice_callable>, torch_compile: bool = False)[source]#
+class otx.core.model.segmentation.OTXSegmentationModel(num_classes: int, optimizer: OptimizerCallable = <function _default_optimizer_callable>, scheduler: LRSchedulerCallable | LRSchedulerListCallable = <function _default_scheduler_callable>, metric: MetricCallable = <function _segm_callable>, torch_compile: bool = False)[source]#

Bases: OTXModel[SegBatchDataEntity, SegBatchPredEntity, T_OTXTileBatchDataEntity]

Base class for the detection models used in OTX.

-class otx.core.model.segmentation.OVSegmentationModel(model_name: str, model_type: str = 'Segmentation', async_inference: bool = True, max_num_requests: int | None = None, use_throughput_mode: bool = True, model_api_configuration: dict[str, Any] | None = None, metric: MetricCallable = <function _dice_callable>, **kwargs)[source]#
+class otx.core.model.segmentation.OVSegmentationModel(model_name: str, model_type: str = 'Segmentation', async_inference: bool = True, max_num_requests: int | None = None, use_throughput_mode: bool = True, model_api_configuration: dict[str, Any] | None = None, metric: MetricCallable = <function _segm_callable>, **kwargs)[source]#

Bases: OVModel[SegBatchDataEntity, SegBatchPredEntity]

Semantic segmentation model compatible for OpenVINO IR inference.

It can consume OpenVINO IR model path or model name from Intel OMZ repository diff --git a/develop/guide/reference/_autosummary/otx.core.types.html b/develop/guide/reference/_autosummary/otx.core.types.html index a68f5772361..71a167fd92b 100644 --- a/develop/guide/reference/_autosummary/otx.core.types.html +++ b/develop/guide/reference/_autosummary/otx.core.types.html @@ -385,7 +385,7 @@

HLabelInfo(label_names, label_groups, ...)

The label information represents the hierarchy.

-

SegLabelInfo(label_names, label_groups)

+

SegLabelInfo(label_names, label_groups[, ...])

Meta information of Semantic Segmentation.

NullLabelInfo()

@@ -581,7 +581,7 @@
-class otx.core.types.SegLabelInfo(label_names: list[str], label_groups: list[list[str]])[source]#
+class otx.core.types.SegLabelInfo(label_names: list[str], label_groups: list[list[str]], ignore_index: int = 255)[source]#

Bases: LabelInfo

Meta information of Semantic Segmentation.

diff --git a/develop/searchindex.js b/develop/searchindex.js index 5b77b831bad..96cf6101089 100644 --- a/develop/searchindex.js +++ b/develop/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["guide/explanation/additional_features/adaptive_training", "guide/explanation/additional_features/auto_configuration", "guide/explanation/additional_features/class_incremental_sampler", "guide/explanation/additional_features/fast_data_loading", "guide/explanation/additional_features/hpo", "guide/explanation/additional_features/index", "guide/explanation/additional_features/models_optimization", "guide/explanation/additional_features/tiling", "guide/explanation/additional_features/xai", "guide/explanation/algorithms/action/action_classification", "guide/explanation/algorithms/action/action_detection", "guide/explanation/algorithms/action/index", "guide/explanation/algorithms/anomaly/index", "guide/explanation/algorithms/classification/hierarhical_classification", "guide/explanation/algorithms/classification/index", "guide/explanation/algorithms/classification/multi_class_classification", "guide/explanation/algorithms/classification/multi_label_classification", "guide/explanation/algorithms/index", "guide/explanation/algorithms/object_detection/index", "guide/explanation/algorithms/object_detection/object_detection", "guide/explanation/algorithms/segmentation/index", "guide/explanation/algorithms/segmentation/instance_segmentation", "guide/explanation/algorithms/segmentation/semantic_segmentation", "guide/explanation/algorithms/visual_prompting/fine_tuning", "guide/explanation/algorithms/visual_prompting/index", "guide/explanation/algorithms/visual_prompting/zero_shot", "guide/explanation/product_design", "guide/get_started/api_tutorial", "guide/get_started/cli_commands", "guide/get_started/installation", "guide/get_started/introduction", "guide/index", "guide/reference/_autosummary/otx", "guide/reference/_autosummary/otx.algo", "guide/reference/_autosummary/otx.algo.action_classification", "guide/reference/_autosummary/otx.algo.classification", "guide/reference/_autosummary/otx.algo.classification.backbones", "guide/reference/_autosummary/otx.algo.classification.heads", "guide/reference/_autosummary/otx.algo.classification.losses", "guide/reference/_autosummary/otx.algo.detection", "guide/reference/_autosummary/otx.algo.detection.backbones", "guide/reference/_autosummary/otx.algo.detection.backbones.pytorchcv_backbones", "guide/reference/_autosummary/otx.algo.detection.heads", "guide/reference/_autosummary/otx.algo.detection.losses", "guide/reference/_autosummary/otx.algo.segmentation", "guide/reference/_autosummary/otx.algo.segmentation.backbones", "guide/reference/_autosummary/otx.algo.segmentation.heads", "guide/reference/_autosummary/otx.algo.segmentation.losses", "guide/reference/_autosummary/otx.algo.visual_prompting", "guide/reference/_autosummary/otx.algo.visual_prompting.backbones", "guide/reference/_autosummary/otx.algo.visual_prompting.decoders", "guide/reference/_autosummary/otx.algo.visual_prompting.encoders", "guide/reference/_autosummary/otx.cli", "guide/reference/_autosummary/otx.cli.cli", "guide/reference/_autosummary/otx.cli.install", "guide/reference/_autosummary/otx.cli.utils", "guide/reference/_autosummary/otx.cli.utils.help_formatter", "guide/reference/_autosummary/otx.cli.utils.installation", "guide/reference/_autosummary/otx.cli.utils.jsonargparse", "guide/reference/_autosummary/otx.cli.utils.workspace", "guide/reference/_autosummary/otx.core", "guide/reference/_autosummary/otx.core.config", "guide/reference/_autosummary/otx.core.config.data", "guide/reference/_autosummary/otx.core.config.device", "guide/reference/_autosummary/otx.core.config.explain", "guide/reference/_autosummary/otx.core.config.hpo", "guide/reference/_autosummary/otx.core.data", "guide/reference/_autosummary/otx.core.exporter", "guide/reference/_autosummary/otx.core.exporter.base", "guide/reference/_autosummary/otx.core.exporter.exportable_code", "guide/reference/_autosummary/otx.core.exporter.exportable_code.demo", "guide/reference/_autosummary/otx.core.exporter.mmdeploy", "guide/reference/_autosummary/otx.core.exporter.native", "guide/reference/_autosummary/otx.core.exporter.visual_prompting", "guide/reference/_autosummary/otx.core.metrics", "guide/reference/_autosummary/otx.core.model", "guide/reference/_autosummary/otx.core.model.action_classification", "guide/reference/_autosummary/otx.core.model.action_detection", "guide/reference/_autosummary/otx.core.model.anomaly", "guide/reference/_autosummary/otx.core.model.base", "guide/reference/_autosummary/otx.core.model.classification", "guide/reference/_autosummary/otx.core.model.detection", "guide/reference/_autosummary/otx.core.model.instance_segmentation", "guide/reference/_autosummary/otx.core.model.rotated_detection", "guide/reference/_autosummary/otx.core.model.segmentation", "guide/reference/_autosummary/otx.core.model.utils", "guide/reference/_autosummary/otx.core.model.utils.mmaction", "guide/reference/_autosummary/otx.core.model.utils.mmdet", "guide/reference/_autosummary/otx.core.model.utils.mmpretrain", "guide/reference/_autosummary/otx.core.model.utils.mmseg", "guide/reference/_autosummary/otx.core.model.visual_prompting", "guide/reference/_autosummary/otx.core.schedulers", "guide/reference/_autosummary/otx.core.types", "guide/reference/_autosummary/otx.core.utils", "guide/reference/_autosummary/otx.core.utils.build", "guide/reference/_autosummary/otx.core.utils.cache", "guide/reference/_autosummary/otx.core.utils.config", "guide/reference/_autosummary/otx.core.utils.imports", "guide/reference/_autosummary/otx.core.utils.instantiators", "guide/reference/_autosummary/otx.core.utils.mask_util", "guide/reference/_autosummary/otx.core.utils.miscellaneous", "guide/reference/_autosummary/otx.core.utils.pylogger", "guide/reference/_autosummary/otx.core.utils.tile_merge", "guide/reference/_autosummary/otx.core.utils.utils", "guide/reference/_autosummary/otx.data", "guide/reference/_autosummary/otx.engine", "guide/reference/_autosummary/otx.hpo", "guide/reference/_autosummary/otx.recipe", "guide/reference/_autosummary/otx.tools", "guide/reference/_autosummary/otx.tools.converter", "guide/reference/_autosummary/otx.tools.translate_mmrecipe", "guide/reference/_autosummary/otx.utils", "guide/reference/index", "guide/release_notes/index", "guide/tutorials/advanced/configuration", "guide/tutorials/advanced/index", "guide/tutorials/base/explain", "guide/tutorials/base/export", "guide/tutorials/base/how_to_train/action_classification", "guide/tutorials/base/how_to_train/action_detection", "guide/tutorials/base/how_to_train/anomaly_detection", "guide/tutorials/base/how_to_train/classification", "guide/tutorials/base/how_to_train/detection", "guide/tutorials/base/how_to_train/index", "guide/tutorials/base/how_to_train/instance_segmentation", "guide/tutorials/base/how_to_train/semantic_segmentation", "guide/tutorials/base/how_to_train/visual_prompting", "guide/tutorials/base/index", "index"], "filenames": ["guide/explanation/additional_features/adaptive_training.rst", "guide/explanation/additional_features/auto_configuration.rst", "guide/explanation/additional_features/class_incremental_sampler.rst", "guide/explanation/additional_features/fast_data_loading.rst", "guide/explanation/additional_features/hpo.rst", "guide/explanation/additional_features/index.rst", "guide/explanation/additional_features/models_optimization.rst", "guide/explanation/additional_features/tiling.rst", "guide/explanation/additional_features/xai.rst", "guide/explanation/algorithms/action/action_classification.rst", "guide/explanation/algorithms/action/action_detection.rst", "guide/explanation/algorithms/action/index.rst", "guide/explanation/algorithms/anomaly/index.rst", "guide/explanation/algorithms/classification/hierarhical_classification.rst", "guide/explanation/algorithms/classification/index.rst", "guide/explanation/algorithms/classification/multi_class_classification.rst", "guide/explanation/algorithms/classification/multi_label_classification.rst", "guide/explanation/algorithms/index.rst", "guide/explanation/algorithms/object_detection/index.rst", "guide/explanation/algorithms/object_detection/object_detection.rst", "guide/explanation/algorithms/segmentation/index.rst", "guide/explanation/algorithms/segmentation/instance_segmentation.rst", "guide/explanation/algorithms/segmentation/semantic_segmentation.rst", "guide/explanation/algorithms/visual_prompting/fine_tuning.rst", "guide/explanation/algorithms/visual_prompting/index.rst", "guide/explanation/algorithms/visual_prompting/zero_shot.rst", "guide/explanation/product_design.rst", "guide/get_started/api_tutorial.rst", "guide/get_started/cli_commands.rst", "guide/get_started/installation.rst", "guide/get_started/introduction.rst", "guide/index.rst", "guide/reference/_autosummary/otx.rst", "guide/reference/_autosummary/otx.algo.rst", "guide/reference/_autosummary/otx.algo.action_classification.rst", "guide/reference/_autosummary/otx.algo.classification.rst", "guide/reference/_autosummary/otx.algo.classification.backbones.rst", "guide/reference/_autosummary/otx.algo.classification.heads.rst", "guide/reference/_autosummary/otx.algo.classification.losses.rst", "guide/reference/_autosummary/otx.algo.detection.rst", "guide/reference/_autosummary/otx.algo.detection.backbones.rst", "guide/reference/_autosummary/otx.algo.detection.backbones.pytorchcv_backbones.rst", "guide/reference/_autosummary/otx.algo.detection.heads.rst", "guide/reference/_autosummary/otx.algo.detection.losses.rst", "guide/reference/_autosummary/otx.algo.segmentation.rst", "guide/reference/_autosummary/otx.algo.segmentation.backbones.rst", "guide/reference/_autosummary/otx.algo.segmentation.heads.rst", "guide/reference/_autosummary/otx.algo.segmentation.losses.rst", "guide/reference/_autosummary/otx.algo.visual_prompting.rst", "guide/reference/_autosummary/otx.algo.visual_prompting.backbones.rst", "guide/reference/_autosummary/otx.algo.visual_prompting.decoders.rst", "guide/reference/_autosummary/otx.algo.visual_prompting.encoders.rst", "guide/reference/_autosummary/otx.cli.rst", "guide/reference/_autosummary/otx.cli.cli.rst", "guide/reference/_autosummary/otx.cli.install.rst", "guide/reference/_autosummary/otx.cli.utils.rst", "guide/reference/_autosummary/otx.cli.utils.help_formatter.rst", "guide/reference/_autosummary/otx.cli.utils.installation.rst", "guide/reference/_autosummary/otx.cli.utils.jsonargparse.rst", "guide/reference/_autosummary/otx.cli.utils.workspace.rst", "guide/reference/_autosummary/otx.core.rst", "guide/reference/_autosummary/otx.core.config.rst", "guide/reference/_autosummary/otx.core.config.data.rst", "guide/reference/_autosummary/otx.core.config.device.rst", "guide/reference/_autosummary/otx.core.config.explain.rst", "guide/reference/_autosummary/otx.core.config.hpo.rst", "guide/reference/_autosummary/otx.core.data.rst", "guide/reference/_autosummary/otx.core.exporter.rst", "guide/reference/_autosummary/otx.core.exporter.base.rst", "guide/reference/_autosummary/otx.core.exporter.exportable_code.rst", "guide/reference/_autosummary/otx.core.exporter.exportable_code.demo.rst", "guide/reference/_autosummary/otx.core.exporter.mmdeploy.rst", "guide/reference/_autosummary/otx.core.exporter.native.rst", "guide/reference/_autosummary/otx.core.exporter.visual_prompting.rst", "guide/reference/_autosummary/otx.core.metrics.rst", "guide/reference/_autosummary/otx.core.model.rst", "guide/reference/_autosummary/otx.core.model.action_classification.rst", "guide/reference/_autosummary/otx.core.model.action_detection.rst", "guide/reference/_autosummary/otx.core.model.anomaly.rst", "guide/reference/_autosummary/otx.core.model.base.rst", "guide/reference/_autosummary/otx.core.model.classification.rst", "guide/reference/_autosummary/otx.core.model.detection.rst", "guide/reference/_autosummary/otx.core.model.instance_segmentation.rst", "guide/reference/_autosummary/otx.core.model.rotated_detection.rst", "guide/reference/_autosummary/otx.core.model.segmentation.rst", "guide/reference/_autosummary/otx.core.model.utils.rst", "guide/reference/_autosummary/otx.core.model.utils.mmaction.rst", "guide/reference/_autosummary/otx.core.model.utils.mmdet.rst", "guide/reference/_autosummary/otx.core.model.utils.mmpretrain.rst", "guide/reference/_autosummary/otx.core.model.utils.mmseg.rst", "guide/reference/_autosummary/otx.core.model.visual_prompting.rst", "guide/reference/_autosummary/otx.core.schedulers.rst", "guide/reference/_autosummary/otx.core.types.rst", "guide/reference/_autosummary/otx.core.utils.rst", "guide/reference/_autosummary/otx.core.utils.build.rst", "guide/reference/_autosummary/otx.core.utils.cache.rst", "guide/reference/_autosummary/otx.core.utils.config.rst", "guide/reference/_autosummary/otx.core.utils.imports.rst", "guide/reference/_autosummary/otx.core.utils.instantiators.rst", "guide/reference/_autosummary/otx.core.utils.mask_util.rst", "guide/reference/_autosummary/otx.core.utils.miscellaneous.rst", "guide/reference/_autosummary/otx.core.utils.pylogger.rst", "guide/reference/_autosummary/otx.core.utils.tile_merge.rst", "guide/reference/_autosummary/otx.core.utils.utils.rst", "guide/reference/_autosummary/otx.data.rst", "guide/reference/_autosummary/otx.engine.rst", "guide/reference/_autosummary/otx.hpo.rst", "guide/reference/_autosummary/otx.recipe.rst", "guide/reference/_autosummary/otx.tools.rst", "guide/reference/_autosummary/otx.tools.converter.rst", "guide/reference/_autosummary/otx.tools.translate_mmrecipe.rst", "guide/reference/_autosummary/otx.utils.rst", "guide/reference/index.rst", "guide/release_notes/index.rst", "guide/tutorials/advanced/configuration.rst", "guide/tutorials/advanced/index.rst", "guide/tutorials/base/explain.rst", "guide/tutorials/base/export.rst", "guide/tutorials/base/how_to_train/action_classification.rst", "guide/tutorials/base/how_to_train/action_detection.rst", "guide/tutorials/base/how_to_train/anomaly_detection.rst", "guide/tutorials/base/how_to_train/classification.rst", "guide/tutorials/base/how_to_train/detection.rst", "guide/tutorials/base/how_to_train/index.rst", "guide/tutorials/base/how_to_train/instance_segmentation.rst", "guide/tutorials/base/how_to_train/semantic_segmentation.rst", "guide/tutorials/base/how_to_train/visual_prompting.rst", "guide/tutorials/base/index.rst", "index.rst"], "titles": ["Adaptive Training", "Auto-configuration", "Class-Incremental Sampler", "Fast Data Loading", "Hyperparameters Optimization", "Additional Features", "Models Optimization", "Improve Small Object Detection with Image Tiling", "Explainable AI (XAI)", "Action Classification", "Action Detection", "Action Recognition", "Anomaly Detection", "Hierarchical Classification", "Classification", "Multi-class Classification", "Multi-label Classification", "Algorithms", "Object Detection", "Object Detection", "Segmentation", "Instance Segmentation", "Semantic Segmentation", "Visual Prompting (Fine-tuning)", "Visual Prompting", "Visual Prompting (Zero-shot learning)", "Product Design", " API Quick-Guide", " CLI Guide", " Installation", "Introduction", "Guide", "otx", "otx.algo", "otx.algo.action_classification", "otx.algo.classification", "otx.algo.classification.backbones", "otx.algo.classification.heads", "otx.algo.classification.losses", "otx.algo.detection", "otx.algo.detection.backbones", "otx.algo.detection.backbones.pytorchcv_backbones", "otx.algo.detection.heads", "otx.algo.detection.losses", "otx.algo.segmentation", "otx.algo.segmentation.backbones", "otx.algo.segmentation.heads", "otx.algo.segmentation.losses", "otx.algo.visual_prompting", "otx.algo.visual_prompting.backbones", "otx.algo.visual_prompting.decoders", "otx.algo.visual_prompting.encoders", "otx.cli", "otx.cli.cli", "otx.cli.install", "otx.cli.utils", "otx.cli.utils.help_formatter", "otx.cli.utils.installation", "otx.cli.utils.jsonargparse", "otx.cli.utils.workspace", "otx.core", "otx.core.config", "otx.core.config.data", "otx.core.config.device", "otx.core.config.explain", "otx.core.config.hpo", "otx.core.data", "otx.core.exporter", "otx.core.exporter.base", "otx.core.exporter.exportable_code", "otx.core.exporter.exportable_code.demo", "otx.core.exporter.mmdeploy", "otx.core.exporter.native", "otx.core.exporter.visual_prompting", "otx.core.metrics", "otx.core.model", "otx.core.model.action_classification", "otx.core.model.action_detection", "otx.core.model.anomaly", "otx.core.model.base", "otx.core.model.classification", "otx.core.model.detection", "otx.core.model.instance_segmentation", "otx.core.model.rotated_detection", "otx.core.model.segmentation", "otx.core.model.utils", "otx.core.model.utils.mmaction", "otx.core.model.utils.mmdet", "otx.core.model.utils.mmpretrain", "otx.core.model.utils.mmseg", "otx.core.model.visual_prompting", "otx.core.schedulers", "otx.core.types", "otx.core.utils", "otx.core.utils.build", "otx.core.utils.cache", "otx.core.utils.config", "otx.core.utils.imports", "otx.core.utils.instantiators", "otx.core.utils.mask_util", "otx.core.utils.miscellaneous", "otx.core.utils.pylogger", "otx.core.utils.tile_merge", "otx.core.utils.utils", "otx.data", "otx.engine", "otx.hpo", "otx.recipe", "otx.tools", "otx.tools.converter", "otx.tools.translate_mmrecipe", "otx.utils", "API reference", "Releases", "How to write OTX Configuration (recipe)", "Advanced Tutorials", "XAI Tutorial", "Deploy & Demo", "Action Classification model", "Action Detection model", "Anomaly Detection Tutorial", "Classification model", "Object Detection model", "Training to deployment tutorials", "Instance Segmentation model", "Semantic Segmentation model", "Visual Prompting model", "Base Tutorials", "Welcome to Intel OpenVINO Training Extensions\u2019s develop documentation!"], "terms": {"focus": [0, 38, 122, 126], "adjust": [0, 1, 7, 23, 26, 79], "number": [0, 1, 2, 4, 7, 9, 12, 17, 19, 21, 22, 28, 34, 37, 39, 42, 45, 48, 49, 50, 51, 62, 71, 79, 87, 88, 89, 91, 92, 94, 96, 102, 105, 111, 118, 119, 120, 121, 122, 124, 125, 126], "iter": [0, 1, 15, 19, 21, 22, 51, 53, 56, 58, 71, 91, 105, 106, 118, 119, 121, 122, 124, 125, 126], "interv": [0, 91, 105], "valid": [0, 1, 4, 7, 9, 12, 13, 15, 16, 19, 21, 22, 27, 28, 29, 30, 37, 47, 48, 58, 62, 79, 90, 105, 118, 119, 121, 122, 126], "achiev": [0, 1, 19, 21, 22, 26, 113, 118, 119, 121, 122, 124, 126], "fast": [0, 1, 5, 6, 8, 10, 19, 22, 118, 119, 120, 121, 122, 124, 125, 126], "In": [0, 4, 7, 9, 10, 13, 15, 16, 17, 19, 21, 22, 23, 25, 26, 27, 28, 30, 47, 48, 57, 72, 73, 92, 106, 117, 120], "small": [0, 5, 15, 16, 19, 48, 113], "data": [0, 1, 2, 5, 7, 8, 9, 12, 15, 17, 21, 22, 23, 26, 27, 28, 34, 37, 42, 48, 58, 61, 63, 64, 76, 78, 79, 81, 82, 89, 90, 94, 102, 105, 109, 113, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "regim": [0, 113], "we": [0, 1, 6, 7, 8, 9, 10, 12, 13, 15, 16, 17, 19, 21, 22, 23, 25, 26, 27, 28, 38, 39, 57, 66, 78, 95, 109, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "don": [0, 26, 78, 105], "t": [0, 21, 22, 25, 26, 37, 39, 71, 78, 92, 105, 126], "need": [0, 1, 8, 15, 16, 19, 22, 25, 26, 27, 28, 29, 51, 57, 62, 66, 78, 79, 81, 82, 92, 95, 107, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "model": [0, 3, 4, 5, 8, 17, 26, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 41, 44, 45, 46, 47, 48, 49, 50, 51, 53, 67, 68, 71, 72, 73, 92, 94, 95, 103, 105, 106, 107, 109, 113, 114, 116, 117, 120, 123, 127], "everi": [0, 13, 17, 30, 34, 37, 39, 79], "epoch": [0, 1, 4, 9, 12, 21, 22, 23, 27, 28, 79, 91, 105, 118, 119, 120, 121, 122, 124, 125, 126], "sinc": [0, 7, 12, 39, 78, 92, 94, 95, 121], "ar": [0, 1, 4, 7, 8, 9, 10, 12, 13, 15, 16, 19, 22, 23, 25, 26, 27, 28, 29, 30, 37, 47, 48, 51, 53, 79, 90, 95, 106, 113, 116, 118, 119, 120, 121, 122, 124, 125, 126], "few": 0, "singl": [0, 7, 8, 9, 10, 13, 15, 16, 19, 21, 22, 26, 30, 37, 42, 48, 50, 52, 58, 79, 90, 92, 102, 106, 116, 117], "To": [0, 1, 6, 7, 9, 10, 12, 13, 15, 16, 17, 19, 22, 23, 26, 27, 28, 29, 47, 48, 57, 105, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "handl": [0, 13, 21, 22, 23, 25, 26, 30, 105], "thi": [0, 1, 2, 4, 7, 8, 10, 12, 13, 15, 16, 17, 19, 21, 22, 23, 25, 26, 27, 28, 29, 30, 34, 39, 42, 47, 48, 52, 53, 56, 57, 62, 66, 71, 72, 73, 78, 79, 83, 86, 87, 88, 89, 91, 92, 95, 105, 107, 109, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "have": [0, 1, 4, 13, 19, 21, 22, 23, 26, 28, 29, 30, 39, 48, 66, 78, 90, 92, 98, 105, 118, 119, 120, 121, 122, 124, 125, 126], "implement": [0, 7, 8, 22, 26, 39, 40, 42, 46, 47, 48, 57, 72, 73, 106], "modul": [0, 1, 3, 7, 8, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 57, 59, 60, 61, 62, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 79, 85, 86, 87, 88, 89, 92, 93, 94, 97, 102, 105, 108, 113, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126, 128], "name": [0, 4, 9, 10, 12, 15, 16, 19, 21, 22, 23, 25, 26, 27, 28, 39, 45, 47, 53, 57, 62, 68, 71, 72, 73, 76, 78, 79, 80, 81, 82, 83, 84, 94, 95, 101, 105, 118, 119, 120, 121, 122, 124, 125, 126], "adaptivetrainschedul": 0, "callback": [0, 27, 28, 39, 58, 78, 79, 98, 105, 114], "control": [0, 1, 4, 12, 27, 48], "do": [0, 4, 6, 25, 26, 27, 29, 51, 91, 116, 117, 121, 122, 124, 126], "faster": [0, 1, 4, 10, 12, 19, 21, 30, 113], "chang": [0, 12, 15, 16, 21, 26, 27, 28, 29, 78, 92, 105, 106, 113, 114], "evalu": [0, 4, 7, 26, 105, 124, 125], "updat": [0, 1, 17, 19, 21, 29, 34, 39, 48, 53, 57, 58, 71, 81, 82, 95, 113, 121, 122, 124, 125, 126], "learn": [0, 1, 2, 4, 8, 9, 10, 12, 15, 16, 17, 19, 21, 22, 23, 24, 26, 27, 30, 46, 47, 48, 79, 90, 91, 113, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127], "rate": [0, 1, 4, 9, 12, 15, 16, 19, 21, 22, 23, 79, 91, 118, 119, 120, 121, 122, 124, 125, 126], "check": [0, 1, 23, 29, 48, 53, 57, 58, 61, 95, 103, 105, 106, 117, 118, 120, 121, 122, 124, 126], "dataset": [0, 1, 2, 3, 7, 17, 26, 30, 39, 62, 71, 79, 98, 105, 113, 116, 117], "api": [0, 1, 2, 3, 4, 6, 7, 8, 26, 30, 57, 92, 105, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "from": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 15, 16, 19, 21, 22, 23, 25, 26, 27, 28, 29, 34, 37, 41, 45, 46, 47, 48, 50, 51, 53, 56, 57, 58, 62, 66, 68, 71, 76, 78, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 92, 94, 95, 98, 103, 105, 109, 113, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "otx": [0, 1, 2, 3, 4, 6, 8, 9, 10, 13, 15, 16, 19, 21, 22, 23, 25, 26, 27, 28, 29, 113, 115, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "algo": [0, 2, 12, 27, 28, 114], "adaptive_train_schedul": 0, "import": [0, 1, 2, 3, 4, 6, 7, 8, 26, 27, 56, 57, 118, 119, 120, 121, 122, 124, 125, 126], "engin": [0, 1, 4, 6, 7, 8, 26, 28, 53, 63, 78, 95, 98, 109, 114, 116, 118, 119, 120, 121, 122, 124, 125, 126], "cli": [0, 1, 2, 3, 4, 6, 7, 8, 26, 27, 29, 30, 62, 98, 105, 113, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "deep": [1, 12, 26, 27, 30], "framework": [1, 21, 22, 23, 25, 26, 30, 34, 71, 103], "mean": [1, 4, 8, 12, 16, 22, 38, 39, 45, 47, 62, 68, 71, 72, 73, 86, 87, 88, 89, 94, 103, 113, 116], "automat": [1, 4, 7, 23, 25, 30, 106, 113, 116, 121, 122, 124, 126], "find": [1, 4, 7, 9, 10, 13, 15, 16, 19, 21, 26, 27, 48, 71, 96, 113, 118, 119, 120, 121, 122, 124, 125, 126], "most": [1, 8, 12, 17, 19, 23, 25, 26, 28, 30, 118, 119, 121, 122, 124, 125, 126], "appropri": [1, 30, 48, 103], "set": [1, 2, 4, 7, 10, 12, 13, 16, 17, 19, 21, 22, 27, 29, 30, 34, 37, 38, 39, 45, 48, 49, 51, 53, 54, 56, 57, 58, 79, 90, 94, 95, 105, 113, 117, 121, 122, 124, 125, 126], "train": [1, 2, 3, 4, 5, 8, 9, 10, 13, 15, 16, 17, 19, 21, 22, 23, 25, 26, 30, 32, 39, 41, 42, 45, 47, 48, 56, 58, 60, 62, 66, 78, 79, 89, 105, 106, 109, 113, 114, 116, 117, 127], "paramet": [1, 6, 15, 16, 19, 22, 26, 27, 28, 30, 34, 36, 37, 38, 39, 42, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 61, 68, 71, 72, 73, 76, 78, 79, 81, 82, 86, 87, 88, 89, 90, 91, 92, 94, 95, 96, 98, 99, 101, 102, 103, 105, 106, 109, 111, 113, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "base": [1, 2, 4, 8, 15, 19, 26, 27, 28, 30, 34, 35, 36, 37, 38, 39, 42, 45, 46, 47, 48, 49, 50, 51, 53, 56, 58, 59, 62, 63, 64, 65, 66, 71, 72, 73, 75, 76, 77, 78, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 95, 98, 102, 104, 105, 106, 109, 113, 116, 120, 121, 122, 124, 125, 126], "specif": [1, 13, 16, 17, 26, 27, 28, 36, 48, 53, 116, 118, 119, 120, 121, 122, 124, 125, 126], "task": [1, 3, 4, 6, 7, 9, 10, 13, 15, 16, 17, 19, 21, 22, 23, 25, 26, 27, 28, 30, 34, 37, 39, 40, 42, 48, 49, 54, 57, 66, 78, 79, 83, 92, 105, 113, 114, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126], "hand": [1, 21, 26, 29], "can": [1, 3, 4, 7, 8, 9, 10, 12, 13, 15, 16, 19, 21, 22, 23, 25, 26, 27, 28, 29, 30, 47, 48, 62, 71, 76, 77, 78, 79, 80, 81, 82, 83, 84, 88, 90, 91, 94, 105, 106, 113, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "help": [1, 2, 4, 8, 26, 27, 29, 56, 118, 119, 120, 121, 122, 124, 125, 126], "save": [1, 4, 8, 25, 28, 30, 45, 53, 66, 68, 72, 73, 78, 79, 90, 106, 113, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "time": [1, 3, 4, 7, 8, 15, 17, 19, 21, 22, 23, 26, 28, 29, 66, 89, 91, 113, 118, 119, 120, 121, 122, 124, 125, 126], "eas": 1, "process": [1, 3, 4, 7, 12, 19, 21, 22, 23, 25, 26, 28, 30, 34, 37, 48, 62, 78, 79, 90, 102, 105, 111, 113, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "interact": [1, 79], "openvino": [1, 3, 4, 6, 8, 9, 12, 17, 21, 22, 23, 25, 26, 27, 28, 30, 32, 34, 48, 60, 68, 71, 72, 73, 76, 79, 80, 81, 82, 83, 84, 90, 105, 113, 117, 118, 119, 120, 121, 122, 124, 125, 126, 127], "extens": [1, 3, 4, 6, 7, 8, 9, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 32, 60, 66, 78, 79, 113, 118, 119, 120, 121, 122, 124, 125, 126, 127], "give": [1, 8, 25, 30], "better": [1, 4, 10, 15, 19, 26, 28, 39], "baselin": [1, 28], "given": [1, 4, 13, 15, 16, 23, 25, 26, 28, 30, 34, 48, 50, 51, 53, 55, 58, 68, 72, 73, 79, 90, 91, 96, 98, 99, 100, 105, 113], "At": [1, 12, 13, 19, 22, 26], "end": [1, 17, 22, 26, 79, 122, 124, 126], "develop": [1, 8, 23, 25, 26, 27, 30], "simpl": [1, 19, 22, 30, 47, 117], "function": [1, 9, 10, 12, 15, 16, 19, 21, 22, 23, 26, 27, 28, 29, 30, 34, 35, 37, 39, 41, 45, 47, 48, 49, 52, 53, 54, 55, 56, 57, 58, 61, 62, 71, 74, 76, 77, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 93, 94, 96, 97, 98, 99, 100, 101, 103, 105, 106, 111, 113, 116, 118, 119, 120, 121, 122, 124, 125, 126], "util": [1, 3, 4, 12, 17, 22, 26, 27, 28, 44, 62, 117, 120, 121, 122, 124, 125, 126], "our": [1, 6, 9, 13, 15, 16, 17, 19, 21, 22, 27, 28, 117, 121, 122, 124, 125, 126], "basic": [1, 8, 22, 25, 26, 28, 34, 114], "start": [1, 4, 22, 26, 28, 30, 56, 79, 113, 118, 119, 120, 121, 122, 124, 125, 126], "obtain": [1, 10, 13, 15, 16, 21, 22, 23, 25, 30, 48, 117], "good": [1, 4, 8, 12, 19, 79, 120], "best": [1, 4, 15, 22, 26, 28, 30, 48, 106], "trade": [1, 7, 12, 22, 28, 30], "off": [1, 4, 7, 12, 22, 28, 29, 30], "between": [1, 4, 7, 8, 12, 13, 21, 22, 26, 48, 58, 118, 121, 122, 126], "accuraci": [1, 7, 9, 15, 19, 21, 22, 28, 30, 39, 114, 118, 119, 121, 122, 126], "speed": [1, 3, 7, 8, 21, 22, 28, 30, 45, 113], "pass": [1, 19, 22, 28, 53, 56, 57, 62, 78, 79, 98, 117, 118, 120, 121, 122, 124, 125, 126], "onli": [1, 4, 7, 8, 10, 12, 21, 23, 25, 26, 28, 29, 37, 45, 48, 57, 58, 66, 72, 73, 78, 79, 90, 92, 105, 106, 111, 117], "right": [1, 13, 25, 48, 57, 88, 89, 122, 126], "format": [1, 4, 7, 26, 27, 28, 30, 48, 51, 56, 68, 71, 72, 73, 78, 79, 89, 92, 96, 99, 105, 113, 114, 117, 118, 119, 120, 121, 122, 124, 125, 126], "without": [1, 4, 7, 15, 16, 19, 21, 25, 26, 28, 37, 66, 68, 71, 117, 118, 120, 121, 122, 124, 125, 126], "specifi": [1, 7, 12, 27, 28, 47, 48, 53, 56, 57, 68, 72, 73, 78, 79, 105, 116, 117, 124, 126], "anyth": [1, 23, 25, 30, 48, 50, 51], "els": [1, 78, 121], "data_root": [1, 4, 8, 23, 25, 26, 27, 28, 58, 62, 105, 109, 116, 118, 119, 120, 121, 122, 124, 125, 126], "path_to_data_root": [1, 4, 23, 25, 26], "after": [1, 4, 7, 9, 12, 13, 19, 23, 26, 28, 29, 34, 71, 78, 79, 88, 89, 91, 113, 117, 118, 119, 121, 122, 124, 125, 126], "prepar": [1, 28, 53], "middl": [1, 22], "recip": [1, 9, 10, 13, 15, 16, 19, 21, 22, 23, 25, 26, 28, 30, 109, 110, 115, 116, 118, 119, 120, 121, 122, 124, 125, 126], "competit": [1, 15, 118, 119], "preserv": [1, 22], "infer": [1, 6, 7, 8, 12, 13, 19, 21, 22, 25, 26, 30, 37, 48, 71, 76, 79, 80, 81, 82, 83, 84, 90, 94, 113, 117, 118, 119, 122, 126], "support": [1, 7, 8, 9, 10, 12, 13, 15, 17, 19, 21, 22, 23, 25, 26, 27, 28, 29, 30, 46, 47, 48, 54, 57, 78, 79, 88, 105, 113, 118, 119, 121, 122, 124, 125, 126], "each": [1, 4, 6, 7, 8, 9, 10, 12, 13, 15, 16, 19, 21, 22, 23, 26, 28, 30, 37, 39, 42, 45, 47, 48, 49, 51, 53, 57, 66, 89, 92, 94, 98, 105, 113, 116, 118, 119, 120, 121, 122, 124, 125, 126], "classif": [1, 3, 10, 11, 17, 19, 21, 28, 30, 34, 39, 48, 76, 77, 86, 87, 88, 89, 94, 113, 114, 116, 123], "imagenet": [1, 15], "coco": [1, 10, 16, 19, 21, 23, 25, 26, 28, 113, 122, 124, 126], "multi": [1, 10, 12, 13, 14, 17, 22, 30, 37, 80, 92, 101, 113, 121], "label": [1, 2, 9, 10, 12, 13, 14, 17, 22, 23, 25, 26, 30, 35, 37, 42, 45, 46, 47, 48, 51, 78, 79, 80, 83, 92, 102, 113, 117, 118, 120, 121, 125], "custom": [1, 7, 10, 13, 19, 23, 25, 26, 27, 28, 33, 34, 36, 37, 38, 39, 40, 42, 43, 46, 47, 56, 57, 61, 66, 74, 91, 105, 113, 117, 121], "hierarch": [1, 14, 17, 30, 37, 80, 113, 121], "object": [1, 5, 8, 10, 17, 21, 22, 26, 27, 28, 30, 34, 43, 53, 56, 57, 58, 59, 61, 62, 63, 64, 65, 66, 68, 71, 78, 81, 91, 92, 94, 95, 96, 98, 99, 101, 105, 109, 113, 116, 118, 119, 120, 124, 125, 126], "detect": [1, 5, 11, 17, 21, 26, 27, 28, 30, 48, 71, 77, 82, 83, 84, 94, 102, 105, 113, 116, 118, 121, 123, 124, 125, 126], "pascal": [1, 16, 19, 21, 22, 23, 25, 122, 125, 126], "voc": [1, 16, 19, 21, 22, 23, 25, 26, 113, 122, 126], "yolo": [1, 26, 28, 122], "semant": [1, 17, 20, 23, 25, 30, 84, 92, 113, 123, 126], "segment": [1, 7, 9, 17, 23, 25, 30, 48, 50, 51, 82, 92, 102, 113, 116, 123, 126], "common": [1, 8, 15, 16, 17, 19, 22, 23, 25, 30, 126], "cityscap": [1, 21, 22, 26], "ade20k": [1, 21], "action": [1, 17, 30, 34, 56, 76, 77, 113, 123], "cvat": 1, "anomali": [1, 17, 30, 57, 104, 113, 123], "mvtec": [1, 12, 104, 120], "instanc": [1, 7, 12, 15, 17, 20, 23, 25, 30, 53, 82, 86, 87, 88, 89, 102, 105, 113, 116, 123, 125], "If": [1, 3, 4, 6, 7, 10, 12, 22, 25, 26, 27, 28, 29, 30, 34, 37, 47, 48, 49, 53, 56, 57, 78, 79, 90, 91, 92, 97, 100, 105, 106, 117, 119, 121, 122, 124, 125, 126], "occlud": 1, "other": [1, 4, 7, 10, 12, 15, 21, 22, 23, 25, 26, 27, 28, 29, 30, 37, 57, 58, 71, 79, 116, 117, 118, 126], "exampl": [1, 7, 8, 13, 16, 19, 22, 25, 26, 27, 28, 29, 48, 56, 57, 58, 61, 62, 95, 99, 105, 109, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "should": [1, 4, 9, 16, 22, 26, 28, 37, 48, 61, 92, 98, 105, 116, 118, 119], "directli": [1, 29, 48, 79], "emphas": 1, "type": [1, 4, 17, 21, 25, 26, 27, 28, 30, 34, 37, 42, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 61, 62, 63, 64, 66, 68, 71, 72, 73, 78, 79, 81, 82, 83, 86, 87, 88, 89, 90, 95, 97, 98, 99, 103, 105, 106, 109, 113, 114, 117, 120, 124, 126], "choos": [1, 4, 13, 26, 28, 30, 118, 119, 121, 122, 124, 125, 126], "you": [1, 4, 6, 7, 12, 16, 19, 22, 25, 26, 27, 28, 29, 30, 47, 58, 79, 105, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "might": [1, 78, 120], "intend": [1, 22, 27], "task_typ": [1, 104], "multi_class_cl": [1, 15, 28, 114, 121], "multi_label_cl": [1, 16, 28], "h_label_cl": [1, 13, 28], "instance_segment": [1, 21, 27, 124], "semantic_segment": [1, 125], "action_classif": [1, 9, 28, 118], "action_detect": [1, 10, 28, 119], "action_segment": 1, "anomaly_classif": [1, 28, 120], "anomaly_detect": [1, 28, 120], "anomaly_segment": [1, 28, 120], "visual_prompt": [1, 126], "featur": [1, 4, 7, 8, 10, 12, 15, 17, 19, 21, 22, 25, 26, 27, 28, 34, 37, 48, 88, 90, 113, 114, 121, 122, 126], "current": [1, 4, 7, 9, 10, 12, 19, 22, 23, 25, 27, 29, 48, 56, 62, 79, 90, 91, 106, 114, 120, 122, 124, 126], "hardwar": [1, 19, 28, 57, 118, 119, 120, 121, 122, 124, 125, 126], "environ": [1, 4, 29, 106, 116, 117], "There": [1, 25, 28, 30, 124, 126], "two": [1, 7, 8, 10, 15, 21, 25, 29, 36, 39, 48, 57, 79, 94, 120, 126], "method": [1, 4, 6, 8, 21, 22, 23, 25, 30, 38, 42, 47, 48, 51, 53, 56, 58, 64, 68, 69, 78, 83], "avail": [1, 4, 9, 10, 12, 13, 15, 16, 17, 23, 25, 26, 28, 30, 48, 53, 57, 106, 119, 120, 121, 122, 124, 125, 126], "prevent": [1, 8, 12, 15, 16, 19, 21, 22, 23, 47, 48, 113, 117], "gpu": [1, 3, 4, 7, 27, 28, 30, 101, 106, 113], "out": [1, 7], "memori": [1, 7, 28, 30, 45, 113, 126], "safe": [1, 8, 61], "mode": [1, 4, 26, 29, 36, 41, 45, 47, 48, 65, 79, 89, 105, 113, 114, 117], "The": [1, 4, 7, 8, 9, 10, 12, 13, 15, 16, 17, 19, 21, 22, 23, 26, 27, 28, 29, 30, 34, 37, 38, 47, 48, 50, 51, 53, 55, 56, 57, 58, 59, 61, 66, 68, 72, 73, 78, 79, 83, 88, 89, 90, 92, 95, 97, 98, 101, 105, 109, 111, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "first": [1, 4, 6, 13, 17, 22, 28, 29, 34, 42, 56, 105, 111, 119, 121, 122, 124, 125, 126], "i": [1, 2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 15, 16, 17, 19, 21, 22, 23, 25, 26, 27, 28, 29, 30, 34, 39, 42, 46, 47, 48, 51, 52, 53, 54, 55, 56, 57, 58, 62, 66, 68, 71, 72, 73, 78, 79, 81, 82, 83, 88, 89, 91, 92, 94, 95, 97, 99, 100, 105, 106, 107, 109, 111, 113, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "compat": [1, 29, 34, 76, 77, 78, 80, 81, 82, 83, 84, 90, 113], "devic": [1, 26, 27, 28, 48, 62, 86, 87, 88, 89, 105, 114, 117, 118, 120, 121, 122, 124, 125, 126], "larger": [1, 7, 12, 30], "consum": [1, 4, 7, 15, 26, 76, 77, 80, 81, 82, 83, 84, 90], "more": [1, 4, 6, 7, 8, 9, 12, 13, 15, 16, 19, 21, 22, 23, 28, 29, 30, 48, 50, 56, 57, 90, 106, 116, 118, 119, 120, 121, 122, 124, 125, 126], "therefor": [1, 23, 26, 57, 66], "system": [1, 8, 26, 29, 57, 106, 117, 120], "verifi": 1, "possibl": [1, 4, 26, 28, 30, 48, 57, 106, 117], "": [1, 4, 7, 8, 12, 13, 15, 16, 19, 21, 22, 26, 27, 28, 39, 42, 51, 53, 56, 62, 68, 71, 73, 78, 79, 88, 91, 94, 98, 105, 106, 111, 113, 116, 118, 119, 120, 121, 122, 124, 125, 126], "feasibl": [1, 23], "decreas": [1, 4, 106, 113, 118, 119, 120, 121, 122, 124, 125, 126], "reduc": [1, 3, 4, 7, 9, 12, 15, 21, 22, 28, 38, 47], "usag": [1, 8, 27, 28, 56, 62, 88, 105, 113], "howev": [1, 7, 15, 21, 26, 27, 42, 57, 78, 79, 105, 116], "too": 1, "low": [1, 19, 30, 48, 51, 116], "slow": [1, 45], "down": [1, 45], "address": [1, 7], "maximum": [1, 4, 22, 71, 102, 105], "amount": [1, 4, 15, 22], "could": [1, 57, 92, 119, 121, 122, 124, 125, 126], "run": [1, 4, 6, 26, 27, 28, 45, 53, 79, 90, 105, 106, 117, 118, 119, 120, 121, 122, 124, 125, 126], "resourc": [1, 4, 7, 19, 21, 23, 30, 106, 113], "also": [1, 4, 7, 9, 12, 17, 19, 21, 26, 27, 28, 30, 42, 92, 105, 117, 118, 119, 120, 121, 122, 124, 125, 126], "accordingli": 1, "us": [1, 2, 4, 6, 7, 8, 9, 10, 12, 13, 15, 16, 17, 19, 21, 22, 23, 25, 26, 27, 28, 30, 34, 37, 38, 39, 42, 45, 47, 48, 49, 50, 51, 53, 57, 58, 59, 62, 68, 71, 72, 73, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 94, 95, 98, 103, 105, 106, 108, 109, 113, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126, 127], "add": [1, 15, 16, 19, 21, 22, 23, 26, 28, 49, 53, 54, 56, 57, 58, 111, 113], "follow": [1, 4, 7, 8, 9, 10, 12, 13, 15, 16, 19, 21, 22, 23, 25, 26, 27, 28, 29, 30, 98, 105, 109, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "execut": [1, 4, 7, 8, 9, 10, 13, 15, 16, 28, 29, 53, 71, 105, 111, 117, 118, 119, 121, 122, 124, 125, 126], "full": [1, 7, 22, 23, 29, 57, 102, 106, 124, 125], "second": [1, 12, 28, 56, 121, 122, 125], "aim": [1, 8, 16, 26], "larg": [1, 3, 7, 12, 15, 16, 19, 28, 36, 113, 122, 126], "overal": [1, 4, 7, 9, 16, 113], "increas": [1, 4, 7, 8, 9, 23, 28, 91, 106, 126], "effect": [1, 2, 7, 45], "requir": [1, 4, 6, 7, 10, 19, 21, 22, 23, 26, 28, 29, 39, 54, 57, 58, 78, 79, 117, 118, 120, 121, 122, 124, 125, 126], "sweep": 1, "whole": [1, 17, 23], "thu": [1, 28], "up": [1, 29, 113, 118, 119, 121, 122, 124, 125, 126], "doe": [1, 12, 26, 42, 47, 57, 78], "search": [1, 4, 128], "effici": [1, 4, 7, 12, 15, 19, 21, 28, 30, 113, 118, 120, 121, 122, 124, 125, 126], "mai": [1, 15, 16, 17, 21, 26, 29, 47, 121, 122, 124, 126], "significantli": [1, 7], "provid": [1, 3, 4, 6, 7, 8, 15, 17, 26, 27, 28, 29, 30, 39, 48, 53, 56, 58, 62, 79, 95, 98, 105, 107, 108, 114, 116, 117, 119, 121, 122, 124, 125, 126], "substanti": 1, "acceler": [1, 4, 7, 26, 30, 63], "compar": [1, 4, 12, 15, 30, 39, 94, 95], "similar": [1, 12, 48], "previou": [1, 30, 39, 47, 51, 79, 116, 117, 118, 119, 121, 122, 124, 125, 126], "accord": [1, 23, 25, 29, 39, 48, 79, 105, 121, 122, 124, 126], "when": [1, 4, 7, 8, 12, 15, 21, 25, 26, 29, 30, 42, 47, 48, 50, 51, 53, 54, 57, 62, 71, 79, 81, 82, 107, 111, 113, 126], "fix": [1, 9, 17, 27, 29, 89, 113, 118, 119, 120, 121, 122, 124, 125, 126], "gener": [1, 8, 12, 16, 19, 23, 25, 26, 28, 30, 39, 42, 48, 66, 79, 88, 92, 102, 113, 116, 120, 124, 125], "than": [1, 4, 16, 17, 19, 29, 57, 79, 91, 106, 124, 125], "smaller": [1, 7, 12], "earli": [1, 12, 15, 16, 19, 21, 22, 23, 124, 125], "stop": [1, 4, 12, 15, 16, 19, 21, 22, 23, 30, 106, 117, 124, 125], "enabl": [1, 3, 4, 12, 26, 28, 37, 89, 105, 113, 124, 126], "lower": [1, 4], "finish": [1, 4], "subprocess": 1, "load": [1, 5, 28, 39, 48, 62, 71, 79, 81, 82, 90, 95, 105, 113, 126], "dure": [1, 2, 7, 9, 12, 21, 34, 42, 79, 91, 105, 116, 117], "while": [1, 7, 8, 12, 17, 21, 22, 26, 45, 48, 68, 71, 118, 119, 120, 121, 122, 124, 125, 126], "high": [1, 3, 7, 28, 45, 48, 122, 126], "signific": 1, "cpu": [1, 19, 28, 48, 57, 106, 113, 118, 120, 121, 122, 124, 125, 126], "simplifi": [1, 26, 113], "manual": [1, 57, 124, 125, 126], "determin": [1, 4, 7, 12, 51, 61], "optim": [1, 5, 9, 10, 12, 13, 15, 16, 19, 21, 22, 23, 26, 30, 35, 39, 48, 53, 76, 77, 78, 79, 80, 81, 82, 83, 84, 90, 91, 105, 106, 113, 114, 119], "valu": [1, 4, 7, 8, 12, 21, 27, 28, 34, 47, 48, 49, 53, 56, 58, 68, 71, 89, 92, 96, 103, 105, 106, 113, 114, 118, 119, 121, 122, 124, 125, 126], "statu": [1, 54, 106], "core": [1, 3, 4, 7, 27, 118, 119, 120, 121, 122, 124, 125, 126], "config": [1, 2, 3, 4, 7, 23, 25, 27, 28, 34, 37, 39, 42, 45, 48, 53, 58, 66, 71, 76, 77, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 94, 95, 103, 105, 107, 109, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "datamoduleconfig": [1, 3, 7, 62, 66, 118, 119, 120, 121, 122, 124, 125, 126], "otxdatamodul": [1, 3, 7, 8, 27, 28, 39, 66, 79, 90, 104, 105, 116, 118, 119, 120, 121, 122, 124, 125, 126], "data_config": [1, 3, 7, 118, 119, 120, 121, 122, 124, 125, 126], "auto_num_work": [1, 62], "true": [1, 4, 7, 8, 12, 34, 39, 41, 42, 47, 48, 49, 53, 56, 57, 59, 61, 62, 65, 68, 71, 72, 73, 76, 79, 80, 81, 82, 83, 84, 86, 87, 90, 91, 95, 103, 105, 106, 113, 114, 116, 121, 122], "datamodul": [1, 3, 7, 8, 26, 27, 28, 53, 78, 79, 104, 105, 116, 118, 119, 120, 121, 122, 124, 125, 126], "creat": [2, 7, 8, 13, 15, 21, 26, 27, 29, 36, 53, 62, 66, 76, 77, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 105, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "an": [2, 4, 7, 12, 13, 15, 16, 17, 19, 21, 22, 23, 25, 26, 27, 28, 30, 48, 50, 53, 56, 57, 58, 79, 105, 109, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126], "batch": [2, 3, 4, 7, 15, 23, 26, 28, 30, 42, 45, 48, 50, 62, 78, 79, 81, 82, 89, 90, 102, 113, 118, 119, 120, 121, 122, 124, 125, 126], "For": [2, 7, 8, 9, 10, 12, 13, 15, 16, 19, 21, 22, 23, 25, 27, 28, 29, 48, 57, 81, 82, 86, 87, 88, 89, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "default": [2, 4, 7, 8, 12, 26, 27, 28, 34, 37, 38, 42, 45, 47, 48, 53, 57, 58, 59, 68, 71, 72, 73, 89, 94, 101, 102, 105, 106, 109, 113, 114, 116, 118, 119, 121, 122, 126], "squar": [2, 7, 12, 48], "root": [2, 7, 22, 26, 28, 58, 97, 105, 109, 121, 122, 124, 126], "old": 2, "new": [2, 17, 23, 25, 26, 30, 41, 47, 71, 78, 113, 117], "ratio": [2, 4, 7, 49, 68, 71], "class_incremental_sampl": 2, "classincrementalsampl": 2, "otxdataset": [2, 66], "class_incr_sampl": 2, "batch_siz": [2, 23, 28, 62, 105, 118, 119, 120, 121, 122, 124, 125, 126], "32": [2, 9, 10, 19, 22, 23, 27, 104, 105], "old_class": 2, "car": [2, 15, 21, 22, 79], "truck": 2, "new_class": 2, "bu": 2, "train_subset": [2, 23, 28, 62, 105, 114, 118, 119, 120, 121, 122, 124, 125, 126], "class_path": [2, 28, 58, 61, 62, 98, 114], "init_arg": [2, 28, 58, 61, 62, 98, 114], "It": [2, 4, 7, 8, 12, 15, 16, 21, 22, 26, 27, 28, 29, 30, 39, 42, 46, 48, 51, 53, 57, 62, 66, 71, 76, 77, 79, 80, 81, 82, 83, 84, 89, 90, 92, 98, 105, 106, 111, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "ensur": [2, 4, 7, 19, 26, 27, 120], "sampl": [2, 4, 9, 12, 13, 15, 23, 26, 34, 37, 42, 47, 89, 98, 118, 119], "distribut": [2, 12, 15, 30, 113], "supervis": [2, 9, 12, 15, 16, 17, 19, 21, 22, 30, 113, 125], "balanced_sampl": 2, "balancedsampl": 2, "sever": [3, 7, 10, 12, 23, 26, 27], "wai": [3, 8, 10, 26, 28, 114], "boost": 3, "one": [3, 4, 7, 12, 13, 15, 16, 21, 23, 25, 26, 28, 30, 48, 53, 78, 92, 102, 120, 121, 126], "which": [3, 4, 8, 9, 10, 12, 13, 15, 16, 19, 22, 28, 30, 37, 48, 62, 68, 78, 79, 81, 82, 86, 87, 88, 89, 105, 106, 111, 116, 117, 118, 119, 121, 122, 124, 125, 126], "decod": [3, 23, 28, 46, 48, 51, 126], "imag": [3, 5, 8, 12, 13, 15, 16, 17, 19, 21, 22, 23, 25, 27, 28, 29, 30, 34, 36, 42, 45, 47, 48, 49, 50, 51, 62, 68, 71, 79, 89, 102, 113, 116, 117, 120, 121, 122, 124, 125, 126], "main": [3, 8, 16, 23, 25, 27, 28, 30, 52, 53, 79, 91, 111, 118, 119, 121, 122, 124, 125, 126], "size": [3, 4, 8, 9, 10, 12, 15, 19, 21, 22, 23, 25, 28, 30, 34, 36, 42, 48, 49, 51, 62, 68, 71, 78, 89, 99, 102, 105, 113, 118, 119, 120, 121, 122, 124, 125, 126], "contain": [3, 12, 28, 37, 39, 48, 53, 56, 58, 71, 78, 79, 94, 98, 105, 109, 116, 117, 118, 120, 121, 122, 124, 126, 127], "resolut": [3, 7, 15, 16, 21, 22, 28, 45, 51, 116], "account": [3, 28, 30], "non": [3, 13, 28, 37, 47, 56, 79, 92, 102], "neglig": [3, 28], "overhead": [3, 28], "pre": [3, 10, 12, 23, 25, 28, 29, 34, 48], "One": [3, 79], "maxim": [3, 4, 28], "those": [3, 28], "case": [3, 4, 10, 15, 19, 21, 22, 27, 28, 46, 48, 57, 71, 92, 117, 121, 122, 124, 126], "mem_cache_s": [3, 28, 62], "8gb": [3, 28], "hpo": [4, 26, 27, 30, 105], "even": [4, 19, 30, 48, 78], "state": [4, 8, 34, 35, 36, 39, 47, 48, 49, 50, 51, 78, 79, 86, 87, 88, 89], "art": 4, "shelf": [4, 30], "librari": [4, 12, 23, 25, 57, 62, 71], "make": [4, 8, 12, 21, 26, 28, 30, 71, 78, 106, 113, 119, 121], "easier": 4, "easi": [4, 27, 48, 62, 119, 121], "interfac": [4, 7, 79, 113], "With": [4, 26, 28], "simpli": 4, "ad": [4, 12, 17, 19, 47, 56, 58], "constraint": [4, 113], "auto": [4, 5, 15, 26, 28, 30, 39, 62, 105, 113, 114, 118, 119, 120, 121, 122, 124, 125, 126], "intern": [4, 8, 16, 22, 25, 28, 34, 35, 36, 47, 48, 49, 50, 51, 86, 87, 88, 89], "guarante": 4, "within": [4, 7, 12, 19, 21, 28, 59], "both": [4, 7, 12, 21, 23, 26, 27, 28, 34, 35, 36, 47, 48, 49, 50, 51, 86, 87, 88, 89, 120, 126], "sequenti": 4, "parallel": [4, 106], "scalabl": 4, "differ": [4, 8, 12, 13, 15, 16, 17, 21, 22, 27, 39, 47, 51, 62, 79, 94, 114, 122, 124, 126], "multipl": [4, 7, 12, 26, 27, 30, 37, 50, 58, 78, 89, 113], "all": [4, 7, 12, 16, 17, 22, 26, 27, 28, 29, 30, 52, 58, 64, 78, 92, 116, 118, 119, 120, 121, 122, 124, 125, 126], "kei": [4, 26, 49, 53, 56, 58, 98, 99], "includ": [4, 7, 9, 12, 16, 26, 29, 30, 37, 42, 47, 56, 89, 92, 107, 118, 119, 120, 121, 124, 125, 126], "usabl": 4, "By": [4, 7, 12, 26, 28, 29], "offer": [4, 12, 21, 23, 25, 26, 27, 30], "straightforward": 4, "intuit": [4, 26, 124, 125], "user": [4, 7, 8, 12, 19, 26, 28, 30, 105], "take": [4, 7, 8, 19, 62, 118, 120, 121, 122, 124, 125, 126], "advantag": [4, 26], "just": [4, 12, 22, 27, 28, 48, 113, 116, 121, 122, 126], "argument": [4, 27, 28, 37, 47, 53, 56, 57, 58, 95, 98, 105, 113], "below": [4, 7, 8, 9, 10, 13, 15, 16, 19, 21, 22, 23, 25, 27, 28, 29, 92, 106, 114, 117, 118, 119, 120, 121, 122, 124, 125, 126], "run_hpo": [4, 27, 105], "abund": [4, 12], "asha": [4, 106], "choic": [4, 15, 21, 22, 30], "asynchron": [4, 79, 106], "success": 4, "halv": 4, "sha": [4, 106], "design": [4, 6, 8, 21], "comput": [4, 7, 8, 10, 12, 15, 17, 19, 21, 22, 23, 25, 30, 34, 42, 48, 79, 103, 120], "machin": [4, 8, 26, 28], "involv": [4, 7, 8, 12, 17, 21], "trial": [4, 28, 106], "them": [4, 13, 16, 19, 26, 29, 45, 53, 78, 79], "metric": [4, 16, 19, 21, 22, 27, 35, 39, 48, 76, 77, 79, 80, 81, 82, 83, 84, 90, 105, 113, 118, 119, 120, 121, 122, 124, 125, 126], "mani": [4, 106], "short": [4, 58], "perform": [4, 6, 7, 9, 12, 13, 15, 19, 23, 28, 34, 79, 88, 89, 90, 105, 113, 118, 120, 121, 122, 124, 125, 126], "advanc": [4, 21, 26, 30], "next": [4, 56, 106], "round": 4, "subsequ": [4, 12, 21], "spent": [4, 26], "repeat": 4, "until": 4, "remain": [4, 79, 105, 116, 121], "becaus": [4, 23, 57, 71, 105, 121, 122, 124, 126], "allow": [4, 7, 8, 21, 26, 28, 30, 48, 53, 58, 105, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "independ": [4, 26, 48], "thei": [4, 19, 22, 26, 47, 92], "wait": [4, 29], "complet": [4, 28, 105], "befor": [4, 19, 26, 29, 37, 39, 48, 71, 79, 90, 95, 102, 105], "techniqu": [4, 9, 12, 15, 19, 22, 23, 27], "call": [4, 19, 25, 26, 29, 34, 78, 79, 111, 114, 120, 124, 125], "hyperband": [4, 106], "much": [4, 26, 28, 30, 120, 124, 125], "alloc": 4, "hpo_config": [4, 105], "hpoconfig": [4, 65, 105], "dataclass": [4, 26, 62], "inlcud": 4, "expect": [4, 7, 19, 29, 36, 109, 118, 119, 121, 122, 124, 125, 126], "confgigur": 4, "parameters": 4, "here": [4, 7, 19, 26, 107, 114, 116, 118, 119, 120, 121, 122, 124, 125, 126], "search_spac": [4, 65], "lr": [4, 19, 23, 27, 49, 79, 91, 114], "uniform": 4, "min": [4, 65], "0": [4, 7, 10, 12, 15, 19, 21, 23, 25, 26, 31, 34, 36, 37, 38, 39, 42, 46, 47, 48, 49, 51, 56, 57, 62, 65, 68, 71, 72, 73, 78, 79, 87, 88, 89, 90, 91, 92, 95, 99, 102, 104, 114, 117, 118, 119, 120, 121, 122, 124, 125, 126], "001": [4, 120], "max": [4, 27, 28, 65, 89, 113, 114], "1": [4, 7, 9, 12, 15, 16, 19, 22, 23, 26, 31, 34, 36, 37, 38, 42, 47, 48, 49, 51, 56, 57, 62, 63, 65, 68, 71, 72, 73, 79, 87, 88, 90, 92, 94, 95, 99, 103, 106, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "expected_time_ratio": [4, 65], "6": [4, 12, 19, 22, 23, 26, 29, 57, 92, 99, 113, 116, 117, 118], "As": [4, 7, 12, 26, 117], "abov": [4, 12, 13, 16, 19, 21, 26, 29, 92, 114, 118, 119, 120, 121, 122, 124, 125, 126], "ones": [4, 27, 58, 71, 79], "variou": [4, 8, 12, 25, 26, 28, 30, 105], "almost": [4, 42, 111], "except": [4, 19, 94, 111], "space": [4, 8], "But": [4, 126], "dictionrai": 4, "so": [4, 8, 15, 19, 23, 25, 27, 29, 30, 39, 62, 66, 79, 105, 122, 126], "explan": [4, 8, 30, 113, 116, 118, 119, 120, 121, 122, 124, 125, 126], "list": [4, 27, 28, 37, 41, 42, 45, 46, 47, 48, 49, 53, 56, 57, 58, 61, 62, 65, 68, 71, 72, 73, 78, 79, 81, 87, 89, 90, 91, 92, 96, 98, 99, 102, 103, 104, 105, 106, 113, 114, 117, 118, 119, 121, 122, 124, 125, 126], "dict": [4, 34, 37, 39, 41, 42, 45, 46, 48, 50, 53, 56, 57, 58, 62, 65, 68, 71, 72, 73, 76, 78, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 92, 94, 95, 96, 98, 99, 102, 103, 104, 105, 106, 109, 118, 119, 121, 122, 124, 125, 126], "str": [4, 28, 34, 35, 36, 37, 38, 39, 42, 45, 46, 47, 48, 49, 51, 53, 54, 55, 56, 57, 58, 59, 61, 62, 65, 66, 68, 71, 72, 73, 76, 78, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 94, 95, 97, 98, 101, 103, 104, 105, 106, 109], "ani": [4, 15, 16, 19, 21, 25, 26, 34, 37, 39, 47, 48, 53, 56, 58, 61, 62, 65, 72, 73, 76, 78, 79, 80, 81, 82, 83, 84, 90, 92, 95, 96, 103, 104, 105, 106, 109, 113], "dictionari": [4, 26, 37, 39, 42, 45, 48, 53, 56, 58, 62, 78, 79, 92, 94, 96, 98, 99, 103, 105, 109], "ha": [4, 12, 15, 23, 26, 28, 42, 48, 51, 57, 66, 79, 118, 119, 120, 121, 122, 124, 125, 126], "param_typ": 4, "rang": [4, 19, 37, 48, 92], "must": [4, 26, 47, 48], "float": [4, 7, 34, 37, 38, 42, 45, 47, 48, 49, 62, 65, 68, 71, 72, 73, 86, 87, 89, 90, 102, 104, 105, 106, 118, 121, 122, 126], "uniformli": 4, "upper": 4, "bound": [4, 7, 12, 19, 21, 23, 25, 30, 83, 120], "quniform": 4, "quantiz": [4, 23, 25, 79, 90, 105, 120], "loguniform": 4, "scale": [4, 12, 16, 19, 23, 37, 42, 61, 62, 71, 106, 114], "logarithm": 4, "qloguniform": 4, "categor": 4, "int": [4, 28, 34, 35, 36, 37, 38, 39, 42, 45, 46, 47, 48, 49, 50, 51, 54, 56, 57, 61, 62, 63, 65, 68, 71, 72, 73, 76, 77, 78, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 94, 96, 99, 102, 103, 104, 105, 106, 111], "step": [4, 7, 9, 12, 19, 25, 29, 56, 79, 83, 90, 91, 105, 116, 117, 118, 119, 121, 122, 124, 125, 126], "unit": [4, 29], "log_bas": 4, "10": [4, 7, 9, 12, 23, 27, 28, 29, 57, 58, 105, 113, 114, 118, 120, 122, 124, 125, 126], "union": [4, 48], "tupl": [4, 34, 36, 37, 42, 48, 49, 50, 51, 53, 57, 58, 61, 62, 68, 71, 72, 73, 78, 79, 86, 87, 88, 89, 90, 92, 96, 102, 104, 109], "vaul": 4, "candid": [4, 25], "save_path": [4, 65], "none": [4, 12, 16, 28, 34, 35, 36, 37, 38, 39, 41, 42, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 62, 65, 66, 68, 71, 72, 73, 76, 78, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 91, 94, 95, 98, 102, 103, 104, 105, 106, 109, 111], "path": [4, 6, 8, 12, 22, 25, 26, 48, 53, 55, 58, 59, 68, 71, 72, 73, 76, 78, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 97, 98, 105, 109, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "result": [4, 7, 8, 12, 15, 16, 21, 25, 26, 28, 29, 37, 48, 68, 79, 105, 106, 117, 118, 119, 120, 121, 122, 124, 125, 126], "whether": [4, 12, 16, 26, 29, 37, 39, 45, 48, 50, 53, 57, 58, 59, 61, 68, 71, 72, 73, 89, 105, 106], "minim": [4, 21, 26, 29, 117], "respect": 4, "num_work": [4, 62, 65, 103, 113, 126], "4": [4, 10, 12, 15, 19, 21, 22, 26, 27, 28, 31, 42, 49, 65, 92, 94, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "maximum_resourc": [4, 65], "reach": 4, "minimum_resourc": [4, 65, 106], "minimum": [4, 106, 117], "least": [4, 120], "improv": [4, 5, 12, 19, 21, 22, 23, 30, 113], "prior_hyper_paramet": [4, 65], "try": [4, 23, 25, 26, 29], "acceptable_additional_time_ratio": [4, 65], "addit": [4, 7, 12, 15, 19, 21, 22, 23, 26, 27, 28, 29, 30, 47, 53, 56, 71, 98, 105, 116, 118, 119, 120, 121, 124, 125, 126], "accept": [4, 37, 48, 62, 95], "reduction_factor": [4, 65, 106], "3": [4, 7, 9, 12, 13, 19, 22, 26, 31, 45, 48, 49, 50, 57, 58, 65, 68, 71, 90, 92, 99, 105, 106, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "promot": [4, 106], "rung": [4, 106], "top": [4, 9, 15, 48, 68, 71, 73, 106], "asynchronous_bracket": [4, 65, 106], "bool": [4, 34, 35, 37, 39, 41, 42, 45, 46, 48, 49, 50, 53, 54, 57, 58, 59, 61, 62, 64, 65, 68, 71, 72, 73, 76, 77, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 91, 95, 103, 104, 105, 106], "oper": [4, 7, 13, 34, 47, 52, 79, 99, 105, 106, 113], "asynchronous_sha": [4, 65, 106], "bracket": [4, 106], "parallelli": [4, 106], "want": [4, 6, 26, 27, 28, 29, 47, 58, 105, 114, 118, 119, 121, 122, 124, 125, 126], "know": [4, 6, 28, 117], "pleas": [4, 6, 7, 10, 13, 15, 16, 19, 21, 22, 26, 28, 29, 76, 77, 80, 81, 84, 86, 87, 88, 89, 106, 117, 118, 120, 121, 122, 124, 125, 126], "refer": [4, 6, 7, 8, 9, 10, 13, 15, 16, 19, 21, 22, 25, 26, 27, 28, 29, 30, 42, 48, 50, 51, 90, 106, 117, 118, 119, 120, 121, 122, 124, 125, 126], "hyperparamet": [5, 15, 19, 21, 22, 30, 66, 106, 113], "configur": [5, 6, 12, 26, 28, 30, 34, 37, 45, 48, 50, 53, 58, 62, 63, 64, 65, 71, 76, 77, 78, 79, 80, 81, 84, 86, 87, 88, 89, 92, 98, 105, 106, 109, 113, 115, 118, 119, 120, 121, 122, 124, 125, 126], "adapt": [5, 7, 12, 15, 16, 19, 21, 22, 23, 25, 113], "explain": [5, 27, 28, 79, 81, 82, 88, 105, 113, 116, 117, 121, 122, 127], "ai": [5, 26, 28, 116], "xai": [5, 28, 79, 81, 82, 88, 105, 113, 121, 122, 127], "tile": [5, 27, 30, 79, 81, 82, 102, 113], "class": [5, 8, 13, 14, 16, 17, 19, 21, 22, 26, 30, 34, 35, 36, 37, 38, 39, 42, 45, 46, 47, 48, 49, 50, 51, 53, 56, 58, 59, 62, 63, 64, 65, 66, 68, 71, 72, 73, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 94, 95, 96, 98, 102, 103, 104, 105, 106, 109, 113, 116, 121, 125], "increment": [5, 15, 17, 30, 46, 47, 113], "sampler": [5, 15, 62, 98], "balanc": [5, 7, 15, 21, 22, 38, 48], "algorithm": [6, 7, 9, 10, 12, 13, 15, 16, 19, 21, 22, 23, 28, 30, 33, 106, 113, 116, 118], "ptq": [6, 23, 25, 27, 28, 76, 79, 105, 113, 118, 120, 121, 122, 124, 125, 126], "appli": [6, 7, 12, 23, 28, 29, 51, 58, 105, 116, 117, 118, 120, 121, 122, 124, 125, 126], "retrain": [6, 17], "fine": [6, 12, 17, 24, 25, 26], "tune": [6, 7, 12, 17, 24, 25, 26, 106, 118, 119, 120, 121, 122, 124, 125, 126], "detail": [6, 7, 21, 26, 28, 45, 50, 56, 57, 106, 119, 120, 121, 122, 124, 125, 126], "about": [6, 8, 16, 19, 21, 26, 28, 30, 56, 79, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "how": [6, 8, 9, 13, 15, 16, 19, 21, 22, 26, 27, 28, 30, 105, 106, 109, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127], "work": [6, 7, 8, 15, 16, 19, 21, 28, 48, 53, 58, 59, 79, 105, 109, 117, 120, 121], "familiar": 6, "document": [6, 12, 28, 29, 113, 114, 120], "convert": [6, 9, 16, 26, 48, 53, 61, 68, 71, 83, 96, 99, 116], "intermedi": [6, 8, 28, 68, 71, 72, 73, 79, 105, 118, 120, 121, 122, 124, 125, 126], "represent": [6, 8, 12, 16, 28, 45, 61, 68, 71, 72, 73, 79, 105, 118, 120, 121, 122, 124, 125, 126], "ir": [6, 7, 27, 28, 68, 71, 73, 76, 79, 80, 81, 82, 83, 84, 90, 105, 113, 116, 118, 120, 121, 122, 124, 125, 126], "accur": [6, 22, 23, 30], "defaultquant": 6, "further": [6, 16, 51, 118, 121, 122, 124, 125, 126], "inform": [6, 9, 12, 13, 15, 16, 19, 21, 22, 23, 25, 27, 28, 30, 39, 42, 48, 56, 71, 78, 79, 81, 82, 89, 90, 92, 94, 102, 109, 117, 118, 119, 120, 121, 122, 124, 125, 126], "dedic": [6, 13, 15, 16, 19, 21, 22, 28], "tutori": [6, 8, 9, 13, 15, 16, 19, 21, 22, 27, 28, 30, 119, 122, 124, 125, 126], "your": [6, 12, 22, 28, 29, 30, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "checkpoint": [6, 7, 8, 25, 27, 28, 45, 48, 53, 78, 79, 81, 82, 103, 105, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "introduc": [7, 26, 113], "concept": 7, "enhanc": [7, 26, 113], "particularli": [7, 17, 21], "dens": [7, 48, 51], "pack": 7, "divid": 7, "origin": [7, 9, 12, 48, 102, 116, 121], "patch": [7, 12, 34, 49, 57, 58, 71, 86, 87, 88, 89], "divis": [7, 48], "appear": [7, 116], "relat": [7, 13, 15, 19, 21, 22, 26, 29, 52, 57, 58, 66, 94, 121, 122], "challeng": [7, 125], "becom": [7, 17, 47], "nearli": 7, "invis": 7, "deeper": [7, 119, 121, 124, 126], "layer": [7, 12, 34, 37, 39, 45, 49, 79, 86, 87, 88, 89, 94], "map": [7, 8, 10, 12, 16, 19, 21, 28, 37, 49, 79, 105, 113, 116, 119, 122, 124, 126], "due": [7, 8, 19, 21, 22, 29, 37, 48, 92, 122, 126], "downsampl": 7, "prove": [7, 19], "especi": [7, 25, 118, 120, 121, 122, 124, 125, 126], "benefici": 7, "where": [7, 8, 9, 13, 16, 17, 19, 21, 22, 26, 27, 28, 29, 51, 53, 58, 68, 72, 73, 103, 116, 117, 120], "20": [7, 12, 15, 19, 22, 23, 29, 118, 119, 120, 121, 122, 124, 125], "pixel": [7, 12, 22, 45, 48, 51, 125], "4k": 7, "consid": [7, 26, 28, 29, 37, 92], "associ": [7, 17, 27, 105], "test": [7, 12, 15, 19, 25, 27, 28, 42, 66, 71, 76, 78, 79, 80, 81, 82, 83, 84, 90, 105, 109, 113, 117, 118, 119, 120, 121, 122, 124, 125, 126], "impact": [7, 19], "strike": [7, 21], "incorpor": [7, 21, 26], "These": [7, 8, 12, 15, 25, 26, 28, 48], "proper": [7, 29, 30, 62], "compromis": [7, 21], "leverag": [7, 21], "empow": [7, 26], "local": [7, 10, 12, 19, 29, 79, 116, 120], "crowd": 7, "ultim": 7, "lead": 7, "dota": 7, "crop": [7, 9, 10, 19, 22, 68, 71, 72, 73], "9": [7, 10, 12, 19, 21, 22, 114, 121], "annot": [7, 9, 13, 16, 19, 27, 28, 37, 47, 113, 118, 119, 121, 122, 124, 125, 126], "box": [7, 8, 12, 19, 21, 23, 25, 26, 30, 42, 48, 50, 51, 83, 120], "mask": [7, 8, 12, 21, 22, 23, 25, 37, 42, 47, 48, 50, 51, 83, 99, 102, 113, 120, 124], "level": [7, 12, 13, 21, 22, 28, 42, 54, 56, 58, 79, 88, 120], "predict": [7, 8, 12, 13, 15, 16, 21, 22, 25, 28, 37, 47, 48, 50, 51, 78, 79, 81, 82, 83, 90, 102, 105, 113, 116, 117], "separ": [7, 13, 16, 21, 26, 58, 113], "stitch": 7, "back": 7, "togeth": [7, 19, 113, 116, 117], "form": [7, 26, 27, 51, 58, 62, 89, 109, 118], "merg": [7, 81, 82, 102, 113], "through": [7, 8, 19, 26, 27, 28, 29, 30, 47, 113, 116], "imagetilingdataset": 7, "ot": 7, "context": [7, 71], "650": 7, "17": 7, "2": [7, 9, 19, 22, 23, 25, 26, 31, 42, 48, 56, 57, 62, 92, 99, 105, 106, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "elaps": [7, 118, 120, 121, 122, 124, 125, 126], "38": [7, 22, 23, 25], "eta": 7, "7": [7, 10, 19, 22, 26, 48, 57], "326097726821899": 7, "sec": 7, "tile_config": [7, 62], "enable_til": [7, 62, 104], "tileconfig": [7, 62], "averag": [7, 8, 15, 16, 21, 34, 42, 47], "100x100": 7, "around": [7, 12, 19, 26], "577x577": 7, "desir": [7, 22], "enough": [7, 28, 113], "tiling_paramet": 7, "object_tile_ratio": [7, 62], "5": [7, 12, 15, 19, 22, 26, 27, 31, 34, 37, 48, 57, 62, 92, 114, 116, 117, 121, 122, 124, 125, 126], "enable_adaptive_til": [7, 62], "05": [7, 22, 38, 126], "largest": [7, 19], "calcul": [7, 8, 12, 19, 37, 48], "border": 7, "split": [7, 15, 19, 30, 118, 126], "cover": 7, "adjac": 7, "tile_overlap": 7, "section": [7, 12, 17, 23, 25, 28, 30, 56, 116, 118, 119, 120, 121, 122, 124, 125, 126], "randomli": [7, 9, 12], "percentag": 7, "note": [7, 12, 30, 45, 83, 86, 87, 88, 89, 92, 118, 120, 121, 122, 124, 125, 126], "sampling_ratio": [7, 62], "disabl": [7, 27, 91, 113, 124, 125], "fals": [7, 12, 22, 28, 34, 35, 37, 39, 42, 45, 46, 48, 49, 54, 57, 58, 62, 64, 68, 71, 72, 73, 76, 77, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 95, 103, 104, 105, 106, 116, 121, 122, 124, 125, 126], "tile_s": [7, 62, 104], "512": 7, "512x512": [7, 22], "enable_adaptive_param": 7, "edg": [7, 26], "length": [7, 48], "integ": [7, 61, 118, 121, 122, 126], "100": [7, 12, 19, 22, 95, 118, 119, 120, 121, 122, 124, 125, 126], "4096": 7, "command": [7, 8, 9, 10, 13, 15, 16, 19, 21, 28, 29, 30, 54, 56, 101, 105, 113, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "torch": [7, 27, 28, 29, 34, 37, 38, 39, 42, 45, 47, 49, 50, 51, 57, 61, 62, 68, 71, 72, 73, 89, 99, 113, 114], "longer": [7, 21, 58], "encount": 7, "error": [7, 12, 57, 66, 126], "mitig": 7, "issu": [7, 12, 26, 29, 117], "line": [7, 8, 28, 29, 56, 101, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "field": [8, 26, 30], "research": 8, "transpar": 8, "interpret": 8, "human": [8, 28], "goal": [8, 12, 13, 16], "understand": 8, "why": [8, 57, 66, 78], "decis": [8, 28], "insight": [8, 26], "inner": 8, "u": [8, 26, 29, 117], "analyz": [8, 30], "mistak": 8, "irrelev": 8, "build": [8, 19, 21, 22, 29, 30, 34, 39, 57, 71, 79, 105, 107, 113], "trust": 8, "sure": 8, "its": [8, 12, 13, 19, 21, 22, 26, 45, 47, 57, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "adopt": [8, 21], "domain": [8, 23, 25, 26], "salienc": [8, 28, 105, 113, 116], "visual": [8, 12, 17, 28, 30, 48, 49, 50, 51, 62, 73, 90, 92, 113, 116, 117, 118, 119, 121, 122, 123, 124, 125], "suitabl": [8, 21, 30], "comprehens": [8, 26], "highlight": [8, 26], "part": 8, "point": [8, 19, 23, 25, 26, 27, 48, 50, 51, 52, 105, 118, 121, 122, 126], "view": 8, "look": [8, 26, 27, 117, 120, 122, 126], "like": [8, 22, 23, 25, 26, 27, 28, 29, 47, 88, 105, 114, 117, 120, 121, 122, 126], "heatmap": [8, 12, 28, 116], "warm": [8, 118, 119, 121, 122, 124, 125, 126], "color": [8, 19, 22, 26, 28, 116], "area": [8, 28, 116], "repres": [8, 26, 48, 59, 61, 79, 92, 98], "focu": [8, 28, 116], "taken": 8, "d": [8, 12, 58, 117], "rise": 8, "paper": [8, 10, 12, 16, 106], "certain": [8, 19], "wa": [8, 23, 28, 29, 92], "network": [8, 12, 19, 21, 23, 48, 92], "activ": [8, 29, 37, 41, 49, 50, 51, 79, 91, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "naiv": 8, "approach": [8, 12, 17, 19, 26, 30, 106], "output": [8, 9, 12, 19, 22, 25, 26, 27, 28, 34, 48, 49, 56, 68, 71, 72, 73, 78, 79, 113, 116, 117, 118, 119, 121, 122, 124, 125, 126], "extractor": [8, 15, 19, 22], "backbon": [8, 10, 12, 15, 19, 21, 22, 23, 28, 34, 37, 38, 48, 51, 88, 113], "channel": [8, 12, 34, 37, 45, 46, 49, 50, 51, 68, 71], "dimens": [8, 26, 34, 48, 49, 50, 51, 90, 94], "highli": [8, 19, 118, 119, 121, 122, 124, 125, 126], "reli": [8, 19, 118, 119, 121, 122, 124, 125, 126], "ignor": [8, 42, 46, 47, 61, 79, 113], "neck": [8, 19, 34, 88], "head": [8, 10, 13, 15, 19, 22, 34, 49, 88, 92], "rel": [8, 49, 122, 126], "recipro": [8, 116], "cam": [8, 116], "weigh": 8, "per": [8, 16, 39, 48, 71, 113], "gradient": [8, 22, 47], "free": [8, 12], "reciproc": 8, "spatial": [8, 10, 34, 36, 51, 113], "extract": [8, 10, 12, 21, 25, 37, 119], "exploit": 8, "correl": 8, "target": [8, 19, 21, 22, 25, 38, 42, 47, 48, 78, 79, 90, 116, 118, 119, 121, 122, 124, 125, 126], "option": [8, 19, 21, 28, 29, 37, 42, 47, 48, 53, 54, 56, 57, 58, 59, 68, 71, 72, 73, 89, 102, 105, 106, 113, 117, 118, 119, 120, 121, 122, 124, 125, 126], "cnn": [8, 12, 21, 113, 116], "vit": [8, 49, 116], "modif": [8, 19, 118, 119, 120, 121, 124, 125, 126], "transform": [8, 12, 21, 26, 28, 48, 49, 50, 51, 61, 62, 66, 76, 79, 114, 116, 118, 121, 122, 124, 125, 126], "same": [8, 9, 12, 13, 16, 19, 21, 22, 23, 25, 28, 42, 48, 57, 89, 91, 111, 114, 116, 120, 121, 124, 126], "vision": [8, 17, 19, 21, 22, 23, 25, 26, 30, 49], "show": [8, 12, 19, 23, 27, 28, 105, 109, 118, 119, 120, 121, 122, 124, 126], "comparison": [8, 119, 121, 122, 124, 125, 126], "describ": [8, 30, 56], "access": [8, 29, 113], "necess": 8, "modifi": [8, 19, 28, 39, 46, 58, 79, 94, 98], "dump": [8, 27, 28, 105, 113, 116], "ye": 8, "shot": [8, 17, 24, 30, 48, 90], "No": 8, "re": [8, 15, 27, 29, 92, 113, 117], "h": [8, 28, 42, 48, 49, 51, 56, 80, 99], "w": [8, 39, 42, 48, 49, 51, 99, 113], "hxw": 8, "last": [8, 10, 13, 28, 37, 45, 111, 118], "encod": [8, 48, 50, 99, 126], "block": [8, 12, 34, 49, 71], "medium": [8, 19, 122], "stage": [8, 13, 21, 25, 37, 39, 45, 66, 78, 79, 116, 117], "detector": [8, 10, 42, 113, 116], "detclassprobabilitymap": [8, 116], "raw": [8, 12, 118], "probabl": [8, 15, 19, 34, 38], "region": [8, 10, 12, 21, 45, 48], "interest": [8, 10, 21], "limit": [8, 22, 62], "loss": [8, 9, 10, 12, 15, 16, 19, 21, 22, 23, 33, 34, 37, 39, 42, 48, 113], "drift": 8, "toward": 8, "center": [8, 12, 42], "propag": 8, "clear": [8, 78], "input": [8, 9, 12, 16, 19, 26, 27, 28, 34, 36, 37, 39, 45, 46, 47, 48, 49, 50, 51, 68, 71, 73, 78, 79, 81, 82, 88, 89, 90, 100, 105, 113, 116, 117, 125], "standalon": [8, 25, 88], "maskrcnnexplainalgo": [8, 116], "combin": [8, 10, 12, 23, 25, 30, 47, 116], "aggreg": [8, 19], "pth": [8, 116, 118, 119, 120, 121, 122, 124, 125, 126], "xml": [8, 27, 28, 116, 117, 118, 120, 121, 122, 124, 125, 126], "weight": [8, 9, 10, 12, 15, 16, 19, 21, 22, 28, 29, 36, 37, 38, 39, 41, 42, 45, 47, 48, 49, 68, 71, 73, 79, 86, 87, 88, 89, 118, 120, 121, 122, 124, 125, 126], "whereth": [8, 116], "dataset_path": [8, 28, 105], "folder": [8, 15, 22, 27, 28, 29, 68, 113, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "problem": [9, 10, 13, 15, 16, 17, 23, 25, 26, 29, 71, 78], "identifi": [9, 12, 21, 22, 30, 121], "being": [9, 12, 86, 87, 88, 89], "video": [9, 113, 117, 118], "sequenc": [9, 61, 86, 87, 88, 89], "frame": [9, 119], "indic": [9, 12, 21, 48, 51, 116], "compon": [9, 10, 15, 16, 19, 21, 22, 23, 25, 28, 37, 42, 56, 58, 98, 113], "augment": [9, 10, 12, 19, 21, 22, 26, 37, 89], "standard": [9, 15, 19, 22, 23, 28, 34, 68, 71, 72, 73], "random": [9, 10, 12, 19, 21, 22, 30, 53, 105], "resiz": [9, 23, 25, 68, 71, 113, 116], "horizont": [9, 114], "flip": [9, 10, 21, 22], "adam": [9, 12, 22, 23], "decai": [9, 10, 12, 19, 21, 22, 49], "adamw": 9, "schedul": [9, 15, 16, 19, 21, 22, 27, 28, 30, 35, 39, 48, 53, 76, 77, 79, 80, 81, 82, 83, 84, 90, 106, 113, 114], "factor": [9, 42, 47, 48, 71, 114], "linear": [9, 21, 22, 37, 79, 91], "warmup": [9, 21, 22, 79, 91], "gradual": 9, "begin": [9, 79, 119, 122, 126], "cross": [9, 10, 15, 21, 22, 39], "entropi": [9, 10, 15, 21, 22, 39], "popular": [9, 10, 12, 22, 26], "kinet": [9, 10, 118], "file": [9, 16, 22, 27, 28, 29, 53, 58, 61, 68, 78, 79, 85, 86, 87, 88, 89, 96, 103, 105, 107, 109, 110, 111, 113, 114, 117, 118, 119, 120, 121, 122, 124, 125, 126], "structur": [9, 12, 13, 15, 16, 26, 113, 117, 118, 119, 121, 122, 124, 126], "x3d": [9, 10, 118, 119], "movinet": [9, 34, 113, 118], "id": [9, 10, 15, 19, 22, 23, 25, 106, 117], "complex": [9, 10, 12, 15, 19, 21, 22, 23, 25], "gflop": [9, 10, 12, 15, 19, 21, 22, 23, 25], "mb": [9, 10, 12, 15, 19, 21, 22, 23, 25], "custom_action_classification_x3d": 9, "49": [9, 19, 22], "79": [9, 22, 23], "custom_action_classificaiton_movinet": 9, "71": [9, 16], "see": [9, 10, 13, 15, 16, 26, 28, 29, 48, 50, 76, 77, 80, 81, 84, 86, 87, 88, 89, 114, 117, 118, 119, 120], "tabl": [9, 10, 15, 16, 19, 21, 22, 23], "some": [9, 10, 15, 16, 19, 21, 22, 28, 29, 45, 66, 78, 79, 105, 118, 120, 121, 122, 124, 125, 126], "academ": [9, 10, 15, 16, 19, 21, 22, 30], "present": [9, 10, 15, 16, 19, 21, 22, 28, 48, 120], "nvidia": [9, 10, 15, 16, 19, 21, 22, 118, 119, 120, 121, 122, 124, 125, 126], "geforc": [9, 10, 15, 16, 19, 21, 22, 118, 119, 120, 121, 122, 124, 125, 126], "rtx": [9, 118, 119, 120, 121, 122, 124, 125, 126], "3090": [9, 118, 119, 120, 121, 122, 124, 125, 126], "hmdb51": [9, 118], "ucf101": [9, 10], "67": [9, 16, 19, 22], "19": 9, "87": [9, 16, 22], "89": 9, "62": [9, 22], "74": [9, 15, 16], "81": [9, 15, 22], "sptio": 10, "tempor": [10, 119], "actor": 10, "solv": [10, 13, 15, 16, 17, 22, 26], "3d": [10, 34, 89], "2d": 10, "simplest": 10, "futur": [10, 12, 30, 118], "rcnn": [10, 113, 124], "architectur": [10, 12, 19, 21, 22, 26, 30, 50, 78, 118, 120, 121, 122, 124, 125, 126], "come": [10, 21, 25, 30, 51, 79, 103, 105], "propos": [10, 21], "e": [10, 29, 33, 42, 62, 92, 117], "g": [10, 33, 42, 62], "atss": [10, 19, 27, 28, 113, 116, 122], "finetun": [10, 79, 103], "roi": 10, "extend": [10, 21, 30, 48, 56, 113, 118, 119, 120, 121, 122, 124, 125, 126], "keyfram": 10, "replic": 10, "along": [10, 28], "axi": [10, 23, 25], "fed": 10, "transfer": [10, 12, 19, 30, 64], "pipelin": [10, 15, 16, 19, 21, 22, 23, 26, 27, 30, 66, 71, 76, 77, 80, 81, 82, 83, 84, 90, 113], "sgd": [10, 12, 19, 21, 27, 114], "1e": [10, 19, 21, 27, 48], "momentum": [10, 12, 19, 21, 27, 114], "binari": [10, 13, 16, 48, 99], "categori": [10, 12, 13, 15, 16, 21, 37, 92, 113, 116, 120], "ava": [10, 119], "readi": [10, 15, 19, 21, 22, 27, 28, 29, 30, 105, 118, 121, 122, 124, 125, 126], "custom_action_detection_x3d_fast_rcnn": 10, "x3d_fast_rcnn": [10, 119], "13": [10, 15, 19, 21, 22, 57], "04": [10, 22, 29, 118, 119, 120, 121, 122, 124, 125, 126], "8": [10, 19, 21, 26, 38, 57, 79, 104, 105, 120, 121, 122, 124, 125, 126], "400": [10, 62, 104], "rtx3090": [10, 15, 16, 19, 21, 22], "jhmdb": [10, 119], "24": [10, 15, 16, 19, 56, 120, 122, 124, 125], "92": [10, 16, 19, 22, 23], "14": [10, 16, 22, 29, 57, 113, 120, 121, 122, 124, 125], "80": [10, 15, 16, 21, 22], "real": [12, 17, 21, 117], "world": [12, 26], "applic": [12, 21, 59, 117, 120], "industri": [12, 120], "medic": [12, 120], "secur": [12, 29], "extrem": 12, "unbalanc": 12, "normal": [12, 37, 39, 48, 49, 62, 71, 89, 94], "lack": 12, "abnorm": 12, "A": [12, 21, 26, 28, 29, 37, 39, 42, 48, 51, 53, 56, 58, 68, 71, 78, 79, 94, 95, 98, 99, 100, 101, 105, 106, 109], "definit": [12, 26, 68, 71, 72, 73, 76, 77, 79, 80, 81, 82, 83, 84, 90, 92], "constantli": 12, "evolv": 12, "difficult": [12, 23], "onc": [12, 27, 29], "perman": 12, "altern": [12, 27], "phase": [12, 23, 25, 28, 105, 113], "deviat": [12, 34], "would": [12, 29, 68, 105], "known": [12, 21, 26], "examin": [12, 23, 25], "solut": [12, 15, 17, 21, 23, 25, 78, 122, 124, 126], "post": [12, 23, 25, 34, 78, 102, 105, 117, 118, 121, 122, 126], "anomal": [12, 120], "v": [12, 28, 29, 48, 56, 118, 119, 120, 121, 122], "entir": [12, 17, 26, 28], "score": [12, 22, 23, 26, 34, 37, 42, 48, 83, 102, 106, 120, 126], "likelihood": 12, "threshold": [12, 37, 48, 81, 82, 90, 102, 113, 121, 122, 126], "either": [12, 23, 29, 79, 120], "backend": [12, 30, 71, 114], "classifi": [12, 13, 15, 34, 37], "locat": [12, 19, 21, 28, 53, 118, 119, 120, 121, 122, 124, 125, 126], "b": [12, 22, 48, 49], "c": [12, 28, 48, 49, 106, 117], "moment": 12, "ground_truth": [12, 120], "sub_category_1": 12, "000_mask": [12, 120], "png": [12, 15, 120], "sub_category_n": 12, "000": [12, 120], "contamin": [12, 120], "releas": [12, 29, 30, 126], "benchmark": [12, 22], "amazon": 12, "visa": 12, "meanwhil": [12, 15, 21], "own": [12, 19, 26, 30, 116, 117], "mention": [12, 120], "behaviour": 12, "168": 12, "21": [12, 57, 118], "initi": [12, 21, 34, 35, 36, 37, 42, 45, 47, 48, 49, 50, 51, 53, 71, 86, 87, 88, 89, 90, 98, 101, 105, 113], "distanc": 12, "mechan": [12, 21], "elimin": 12, "redund": 12, "select": [12, 19, 30, 48, 92, 105, 106, 113], "subset": [12, 28, 62, 105, 119], "dimension": 12, "variat": 12, "gaussian": 12, "fit": [12, 19, 62, 68, 71, 79], "embed": [12, 48, 49, 50, 51, 68, 113], "correspond": [12, 13, 17, 28, 47, 48, 57, 62], "multivari": 12, "mahalanobi": 12, "posit": [12, 16, 25, 37, 38, 42, 48, 49, 50, 51, 56], "matric": 12, "constitut": 12, "higher": [12, 21], "neural": 12, "resnet18": 12, "wide": [12, 21], "resnet50": [12, 21], "layer1": 12, "layer2": 12, "layer3": 12, "n": [12, 15, 21, 42, 47, 48, 51], "retain": 12, "reduct": [12, 38, 47], "550": 12, "student": 12, "imit": 12, "behavior": [12, 105, 116], "teacher": [12, 113], "predic": 12, "notion": 12, "simpler": 12, "pyramid": [12, 19], "match": [12, 39, 79], "unsupervis": 12, "compos": [12, 26, 62], "receiv": [12, 28, 118, 119, 121, 122, 124, 125, 126], "mixtur": 12, "therebi": 12, "sum": [12, 21, 42, 47], "l2": 12, "mse": 12, "cannot": [12, 88], "0001": [12, 114], "adit": 12, "patienc": [12, 21, 22, 58, 114, 118, 119, 120, 121, 122, 124, 125, 126], "invit": 12, "read": [12, 66, 120], "anomalib": [12, 57, 78, 120], "discrimin": 12, "surfac": 12, "draem": 12, "consist": [12, 15, 22, 30, 42, 117, 118, 119, 120, 121, 122, 124, 125, 126], "subnetwork": 12, "simul": 12, "produc": [12, 26, 62, 79], "perlin": 12, "nois": 12, "unrel": [12, 124, 126], "sourc": [12, 25, 26, 29, 30, 34, 35, 36, 37, 38, 39, 41, 42, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 65, 66, 68, 71, 72, 73, 76, 77, 78, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 111, 117], "autoencod": 12, "submodel": 12, "concaten": [12, 48, 113], "sspcab": 12, "lambda": [12, 80], "self": [12, 21, 39, 41, 58, 61, 78, 79, 94, 113, 117, 127], "beta": 12, "opac": 12, "ssim": 12, "focal": [12, 23, 48], "ground": [12, 21, 48, 120], "truth": [12, 21, 48, 120], "overfit": [12, 15, 16, 19, 21, 22, 23], "besid": [13, 22, 27, 42], "relationship": 13, "tree": [13, 22, 79], "assign": [13, 22, 113, 125], "group": [13, 92], "exclus": [13, 92], "construct": [13, 45, 121], "individu": [13, 21], "fashion": [13, 15], "strategi": 13, "assum": [13, 57], "return": [13, 25, 34, 37, 39, 42, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 61, 68, 71, 72, 73, 78, 79, 81, 82, 83, 86, 87, 88, 89, 90, 92, 94, 95, 96, 97, 98, 99, 101, 103, 105, 106, 109, 116, 117], "branch": [13, 21, 58], "persian": 13, "cat": 13, "pet": 13, "travers": 13, "leav": 13, "let": [13, 17, 26, 45, 120, 121, 122, 124, 125, 126], "sai": 13, "forward": [13, 26, 34, 35, 36, 37, 38, 41, 45, 47, 48, 49, 50, 51, 78, 79, 81, 82, 88, 89, 90], "pictur": 13, "On": [13, 21, 26, 29, 30, 121, 122, 124, 125, 126], "argmax": 13, "Then": [13, 19, 28, 29, 121], "siams": 13, "sphynx": 13, "leaf": 13, "easili": [13, 26, 28, 30, 118, 119, 121], "reconstruct": [13, 92], "final": [13, 37, 68, 73, 114, 118, 120, 121, 122, 124, 125, 126], "datumaro": [13, 21, 22, 23, 25, 26, 27, 30, 62, 92, 99, 113, 126], "found": [13, 19, 21, 28, 30, 53, 57, 97, 118, 119, 120, 121, 122, 124, 125, 126], "corpu": [15, 16], "reducelronplateau": [15, 16, 19, 21, 22, 91], "tend": [15, 16], "well": [15, 16, 19, 26, 56, 79], "varieti": [15, 16, 17, 122, 124, 126], "scenario": [15, 22, 30, 117], "influenc": 15, "ib": 15, "imbal": 15, "avoid": [15, 22, 105, 126], "major": [15, 26], "influenti": 15, "over": [15, 17, 47, 48, 53], "commonli": [15, 21, 88], "val": [15, 19, 28, 62, 66, 114, 118, 119, 121, 122, 124, 125, 126], "custom_image_classification_mobilenet": 15, "v3": [15, 16], "1x": [15, 16, 51], "mobilenet": [15, 16], "44": [15, 19, 22], "29": 15, "custom_image_classification_efficinetnet": 15, "b0": [15, 16, 36], "efficientnet": [15, 16, 21, 36], "09": 15, "custom_image_classification_efficientnet": 15, "v2": [15, 16, 29, 31, 35, 45, 57, 61, 62, 109], "76": [15, 22, 23, 25], "23": [15, 22], "flop": 15, "superior": [15, 21, 22], "cost": 15, "prioriti": [15, 23], "nevertheless": [15, 26], "stabl": [15, 29], "were": [15, 16, 19, 21, 25], "224x224": [15, 16], "cifar10": 15, "cifar100": 15, "flower": [15, 121], "93": [15, 19, 23], "36": [15, 22], "83": [15, 16], "01": [15, 22, 27, 118, 126], "96": [15, 19], "45": [15, 19, 22, 62, 102], "94": [15, 16, 19, 22], "86": [15, 16, 21, 23], "84": [15, 23], "73": [15, 16, 22], "85": [15, 22, 23], "70": [15, 22], "90": [15, 21, 23], "97": [15, 22, 23], "68": [15, 19, 21, 22], "multiclass": [16, 92], "belong": [16, 62], "sub": [16, 28, 54], "asymmetr": [16, 38], "angular": [16, 38], "margin": [16, 38], "formul": 16, "l_j": 16, "co": 16, "theta_j": 16, "y": [16, 48, 51], "frac": 16, "k": [16, 38], "p_": 16, "gamma": [16, 48], "log": [16, 28, 113, 118, 119, 120, 121, 122, 124, 125, 126], "m": [16, 29, 99, 113, 117], "neg": [16, 25, 37, 38, 42, 48], "coeffici": [16, 120], "ablat": 16, "studi": [16, 26], "experi": [16, 21, 23, 26], "addition": [16, 19, 21, 118, 119, 120, 121, 122, 124, 125, 126], "2007": [16, 21], "2014": 16, "aerial": 16, "maritim": 16, "69": [16, 19, 22], "61": [16, 22, 23], "56": [16, 19, 22], "07": [16, 22, 48], "75": [16, 19], "91": [16, 19, 22], "77": 16, "28": [16, 19, 48, 126], "52": [16, 19, 21, 22], "what": [17, 26, 120, 124, 125], "exactli": [17, 22], "insid": [17, 21, 22, 23, 25, 27, 29], "life": [17, 28, 117], "rather": 17, "keep": [17, 68, 71, 102, 118, 119, 121, 122], "previous": [17, 90], "knowledg": 17, "situat": [17, 19], "recognit": [17, 30, 113], "prompt": [17, 30, 48, 49, 50, 51, 62, 73, 90, 92, 113, 117, 123], "zero": [17, 22, 23, 24, 30, 45, 48, 49, 90, 91], "coordin": [19, 48, 51], "defin": [19, 26, 34, 48, 62, 78, 79, 88, 105], "pair": [19, 28, 56, 116], "boud": 19, "corner": [19, 48], "inherit": [19, 34, 37, 45, 48], "goe": [19, 26], "fpn": 19, "rotat": [19, 22, 30, 83], "bright": 19, "distort": [19, 22], "multiscal": 19, "agnost": 19, "logic": [19, 113], "drop": 19, "iteration_pati": 19, "iou": [19, 23, 48, 102, 113, 126], "abil": 19, "focalloss": 19, "anchor": [19, 39, 42, 81], "cluster": 19, "ssd": [19, 39, 42, 81], "predefin": 19, "collect": [19, 66, 100, 108, 118, 120, 121, 122, 124, 125, 126], "statist": [19, 103, 113, 118, 120, 121, 122, 124, 125, 126], "go": 19, "pretrain": [19, 29, 36, 41, 88, 113], "mobilenetv2": [19, 27, 28, 39], "imagenet21k": 19, "link": [19, 28, 113, 118, 119, 120, 121, 122, 124, 125, 126], "instances_train": [19, 27, 28, 122, 124, 126], "json": [19, 22, 27, 28, 92, 109, 117, 122, 124, 126], "instances_v": [19, 27, 28, 122, 124, 126], "instances_test": [19, 122, 124, 126], "custom_object_detection_yolox": 19, "yolox": [19, 113], "tini": [19, 21], "object_detection_yolox_": 19, "yolox_": [19, 27, 28], "33": 19, "51": [19, 22, 118], "46": [19, 21], "object_detection_yolox_l": 19, "yolox_l": [19, 27, 28], "194": 19, "57": [19, 48], "207": 19, "object_detection_yolox_x": 19, "yolox_x": [19, 27, 28], "352": 19, "42": [19, 118], "378": 19, "custom_object_detection_gen3_ssd": 19, "custom_object_detection_gen3_atss": 19, "object_detection_resnext101_atss": 19, "resnext101": [19, 113], "434": 19, "344": 19, "light": [19, 114, 118, 119], "perfect": 19, "fastest": 19, "power": 19, "outperform": [19, 21], "mosaic": 19, "long": [19, 22, 48, 117], "pick": [19, 28, 105], "still": [19, 29], "among": 19, "retinanet": [19, 48], "therfor": 19, "integr": [19, 21, 27, 30, 113, 117], "variant": [19, 27, 28, 39, 45, 113], "divers": [19, 30], "shown": [19, 26, 27, 28], "report": [19, 106, 120], "offici": [19, 29, 113], "ap50": 19, "bdd100k": 19, "70000": 19, "10000": [19, 27], "brackish": 19, "plantdoc": 19, "1500": [19, 62], "bccd": 19, "chess": 19, "piec": 19, "300": 19, "31": [19, 22], "48": [19, 21, 22], "88": [19, 118], "99": [19, 22], "40": [19, 22, 23, 118], "63": [19, 22], "59": [19, 22], "37": 19, "54": [19, 25], "98": [19, 22], "l": [19, 29, 113], "55": [19, 22, 23, 126], "x": [19, 22, 34, 36, 41, 45, 48, 49, 51, 78, 79, 88, 113], "50": [19, 21, 126], "version": [21, 36, 57, 113], "doesn": [21, 22, 25, 37, 71, 92, 126], "presenc": 21, "background": [21, 22, 39, 48, 51, 94], "get": [21, 25, 26, 27, 28, 30, 37, 42, 48, 56, 57, 58, 66, 73, 78, 79, 81, 95, 103, 105, 106, 117, 121, 122, 124, 125, 126], "shape": [21, 37, 42, 47, 48, 49, 50, 51, 68, 71, 89, 92, 99], "drive": 21, "robot": 21, "edit": [21, 29, 113], "softwar": [21, 26], "r": [21, 39, 113, 118, 119, 120, 121, 122, 124, 125, 126], "rtmdet": 21, "upon": 21, "offset": [21, 48], "distinguish": [21, 27, 122, 126], "itself": 21, "concurr": 21, "exist": [21, 28, 58, 105], "regress": [21, 42, 94], "rtmnet": 21, "lightweight": [21, 22], "priorit": [21, 79], "inst": [21, 102], "capabl": [21, 26], "encompass": [21, 26], "200": 21, "monitor": [21, 22, 91, 114], "seen": [21, 22], "l1": 21, "absolut": [21, 49, 55], "exponenti": 21, "move": [21, 121], "ema": 21, "manag": [21, 22, 23, 25, 27, 59, 71, 118, 119, 120, 121, 124, 125, 126], "maskrcnn": [21, 82, 83, 116], "efficientnetb2b": 21, "27": [21, 22, 114], "533": 21, "177": 21, "swint": 21, "566": 21, "191": 21, "Ins": 21, "22": 21, "swin": 21, "yield": 21, "contrast": [21, 106, 113], "convent": 21, "resnet": 21, "emploi": 21, "b2": 21, "favor": 21, "essenti": [21, 26, 28], "recent": [21, 28, 118, 119, 121, 122, 124, 125, 126], "tailor": 21, "counterpart": 21, "potenti": 21, "necessit": 21, "term": 21, "paramount": 21, "transit": 21, "recommend": [21, 27, 28, 126], "convers": [21, 26, 71, 72, 73, 89], "crucial": 21, "1024x1024": 21, "boundari": 22, "typic": [22, 26, 28, 51], "depend": [22, 26, 28, 29, 48, 54, 106, 117, 118, 121, 122, 124, 125, 126], "fcn": 22, "mmsegment": [22, 46], "lite": [22, 45, 113], "hrnet": [22, 45], "mix": [22, 27, 79, 88, 105], "photometr": 22, "clip": [22, 38], "quadrat": 22, "norm": [22, 41, 45], "equal": [22, 42, 91], "organ": 22, "veri": 22, "alwai": [22, 57], "renam": [22, 27, 113, 122, 124, 126], "meta": [22, 34, 42, 48, 78, 79, 92, 117], "author": [22, 26], "use_otx_adapt": 22, "custom_semantic_segmentation_lit": 22, "mod2_ocr": 22, "mod2": 22, "18": [22, 125, 126], "82": [22, 23], "mod3_ocr": 22, "mod3": 22, "custom_semantic_segmentation_segnext_t": 22, "segnext": [22, 46, 113], "custom_semantic_segmentation_segnext_": 22, "15": 22, "35": [22, 23, 126], "custom_semantic_segmentation_segnext_b": 22, "08": [22, 121], "member": [22, 26, 92], "famili": [22, 113], "heavi": 22, "wherea": 22, "perfom": 22, "dice": [22, 23, 48, 120, 125, 126], "dis5k": 22, "2012": [22, 125], "kitti": 22, "95": 22, "58": [22, 48, 120, 121, 122, 124, 125], "26": 22, "06": [22, 120, 122, 124, 125], "16": [22, 23, 26, 48, 49, 121], "12": [22, 48, 49, 57], "65": [22, 48, 90], "39": 22, "41": 22, "60": 22, "25": [22, 48, 122], "text": [23, 25], "troubleshoot": [23, 25], "purpos": [23, 25, 27, 124, 125], "unlabel": [23, 25], "particular": [23, 25, 28, 118, 119, 121, 122, 126], "sam": [23, 25, 48, 51], "famou": [23, 25], "web": [23, 117], "huge": 23, "lot": 23, "longest": [23, 25], "pad": [23, 25, 34, 48, 51, 68, 71, 89], "rest": [23, 25, 26], "awar": [23, 25, 26], "qat": [23, 25], "four": [23, 25], "experiment": [23, 25], "visual_prompting_sam_tiny_vit": 23, "sam_tiny_vit": [23, 126], "47": [23, 25], "visual_prompting_sam_vit_b": 23, "sam_vit_b": [23, 126], "454": [23, 25], "363": [23, 25], "did": [23, 27], "three": [23, 26], "public": [23, 26, 27, 122], "wgisd": [23, 27, 116, 117, 120, 122, 124, 126], "trashcan": 23, "f1": [23, 126], "110": 23, "500": [23, 61, 65, 102], "78": 23, "model_config_path": [23, 25], "batch_size_to_be_upd": 23, "learning_rate_to_be_upd": 23, "unlik": [25, 126], "usecas": 25, "polygon": [25, 83, 99], "soon": 25, "regardless": [25, 116], "made": 25, "order": [25, 126], "templat": [25, 26, 28, 30, 42, 109, 113, 118, 119, 126], "zero_shot_sam_tiny_vit": 25, "zero_shot_sam_vit_b": 25, "code": [25, 29, 30, 54, 57, 69, 70, 113, 117], "path_to_weights_from_learn": 25, "green": 25, "red": [25, 28, 116], "left": [25, 48], "solvabl": 26, "conveni": 26, "expand": [26, 48, 90], "seamlessli": 26, "navig": 26, "workflow": [26, 105], "friendli": [26, 101], "throughout": 26, "python": [26, 29, 30, 57, 58, 61, 62, 66, 88, 96, 101, 105, 108, 110, 113, 117], "intel": [26, 28, 29, 76, 80, 81, 82, 83, 84, 118, 119, 120, 121, 122, 124, 125, 126], "practic": [26, 28], "scratch": [26, 34], "realiz": 26, "establish": 26, "overview": [26, 30], "static": [26, 34, 39, 53, 79, 95, 109], "cycl": [26, 47], "advoc": 26, "argu": 26, "simultan": 26, "across": 26, "seem": 26, "interconnect": 26, "believ": 26, "nice": 26, "abstract": [26, 68, 102], "regard": 26, "figur": 26, "grei": 26, "otxtasktyp": [26, 27, 66, 92, 104, 105], "enum": [26, 92, 106], "otxdataent": 26, "otxbatchdataent": 26, "otxmodel": [26, 27, 39, 53, 76, 77, 79, 80, 81, 82, 84, 90, 94, 105], "pytorch": [26, 27, 28, 29, 30, 57, 58, 61, 68, 71, 72, 73, 79, 95, 98, 114, 117, 118, 119, 120, 121, 122, 124, 125, 126], "nn": [26, 34, 35, 36, 37, 39, 45, 47, 48, 49, 50, 51, 68, 71, 72, 73, 86, 87, 88, 89, 94], "Its": 26, "strict": 26, "otxbatchlossent": [26, 48, 79, 90], "otxbatchpredent": 26, "embodi": 26, "blue": 26, "detdataent": 26, "detbatchdataent": [26, 81], "bbox": [26, 42, 48, 94, 102], "otxdetectionmodel": [26, 81], "detbatchpredent": [26, 81, 102], "beyond": 26, "observ": 26, "strictli": 26, "event": 26, "reinvent": 26, "wheel": 26, "lightn": [26, 27, 28, 30, 39, 53, 58, 75, 78, 79, 95, 98], "primari": [26, 120], "numer": 26, "open": [26, 29, 57], "worldwid": 26, "often": 26, "tightli": 26, "coupl": 26, "hinder": 26, "reus": [26, 118, 119, 121, 122, 124, 125, 126], "valuabl": 26, "against": [26, 120], "special": 26, "create_model": [26, 86, 87, 88, 89], "customize_input": 26, "customize_output": 26, "facilit": 26, "entiti": [26, 27, 30, 39, 48, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 90, 102], "extern": 26, "mmdetect": [26, 41], "rtmdettini": 26, "mmdetcompatiblemodel": [26, 39, 81], "regist": [26, 35, 53, 61, 71, 79, 111], "child": [26, 58], "datasampl": [26, 37], "compli": 26, "resolv": [26, 55, 61, 66], "explicitli": 26, "plan": 26, "continu": [26, 30, 47, 106, 117], "worri": 26, "project": [26, 27, 29, 30, 107], "tediou": 26, "schema": [26, 42], "pars": [26, 56, 57], "lifecycl": 26, "ecosystem": 26, "directori": [26, 53, 58, 59, 68, 71, 72, 73, 78, 79, 105, 109, 120, 121], "illustr": 26, "simplic": 26, "enjoi": 26, "anoth": [26, 29, 62], "demonstr": [26, 27, 29, 120, 125], "necessari": [26, 30, 53, 78, 117, 121, 122, 124, 125, 126], "onlin": [26, 117], "torchvis": [26, 29, 30, 57, 61, 62, 104], "mmpretrain": [26, 62, 80, 92], "etc": [26, 28, 33, 42, 44, 48], "flexibl": 26, "freeli": 26, "creation": 26, "wonjulee": 26, "vinnamkim": 26, "entri": [26, 27, 52, 105, 118, 119, 121, 122, 124, 125, 126], "built": [26, 29, 30], "deploi": [26, 27, 30, 48, 71, 120, 127], "natur": 26, "diagram": 26, "trainer": [26, 27, 28, 39, 79, 95, 105], "role": 26, "done": [26, 71, 72, 73, 106, 124, 125, 126], "thing": 26, "deploy": [26, 68, 71, 73, 118, 119, 121, 122, 124, 125, 126, 127], "novic": 26, "struggl": 26, "stem": 26, "difficulti": 26, "fill": 26, "gap": [26, 88], "samet": 26, "akcai": 26, "harimkang": 26, "meijer": 26, "erik": 26, "peter": 26, "drayton": 26, "dynam": [26, 30, 79], "cold": 26, "war": 26, "program": [26, 56], "languag": 26, "oopsla": 26, "2004": 26, "http": [26, 27, 28, 29, 48, 57, 106, 114, 121, 122, 124, 126], "en": [26, 114], "wikipedia": 26, "org": [26, 48, 57, 106, 121], "wiki": 26, "reinventing_the_wheel": 26, "in_software_develop": 26, "mmlab": [26, 29, 57], "www": 26, "netapp": 26, "com": [26, 27, 28, 29, 122, 124, 126], "media": 26, "16928": 26, "wp": 26, "7299": 26, "pdf": 26, "openvinotoolkit": [26, 28, 29, 86, 87, 88, 89, 92], "html": [26, 106], "instal": [27, 28, 30, 113, 117, 118, 119, 120, 121, 122, 124, 125, 126], "clone": [27, 29, 122, 124, 126], "repositori": [27, 28, 29, 76, 79, 80, 81, 82, 83, 84, 117, 118, 121, 122, 124, 126], "cd": [27, 28, 29, 121, 122, 124, 126], "git": [27, 29, 122, 124, 126], "github": [27, 28, 29, 122, 124, 126], "thsant": [27, 122, 124, 126], "checkout": [27, 29, 122, 124, 126], "6910edc5ae3aae8c20062941b1641821f0c30127": [27, 122, 124, 126], "mv": [27, 121, 122, 124, 126], "coco_annot": [27, 122, 124, 126], "train_bbox_inst": [27, 122, 126], "test_bbox_inst": [27, 122, 126], "now": [27, 28, 105, 113, 118, 120, 121, 122, 124, 125, 126], "immedi": 27, "snippet": 27, "list_model": [27, 120, 121, 122, 124, 125, 126], "model_list": [27, 120, 121, 122, 124, 125, 126], "print": [27, 106, 120, 121, 122, 124, 125, 126], "yolox_tiny_til": [27, 28], "yolox_l_til": [27, 28], "yolox_x_til": [27, 28], "atss_r50_fpn": [27, 28], "ssd_mobilenetv2": [27, 28], "yolox_tini": [27, 28], "openvino_model": [27, 28, 118, 121, 124, 125, 126], "atss_mobilenetv2": [27, 28, 105, 116, 122], "yolox_s_til": [27, 28], "rtmdet_tini": [27, 28], "atss_mobilenetv2_til": [27, 28, 122], "atss_resnext101": [27, 28, 122], "ssd_mobilenetv2_til": [27, 28], "print_tabl": 27, "src": [27, 57, 79, 116, 118, 119, 120, 121, 122, 124, 125, 126], "yaml": [27, 28, 53, 61, 95, 105, 107, 110, 114, 116, 118, 119, 120, 121, 122, 124, 125, 126], "pattern": [27, 28, 121, 122, 124, 126], "referenc": 27, "via": [27, 28, 48, 72, 73, 113, 118, 121, 122, 124, 125, 126], "work_dir": [27, 28, 53, 58, 59, 105, 109, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "workspac": [27, 105, 109, 113, 116, 118, 119, 120, 121, 122, 124, 125, 126], "store": [27, 48, 68, 71, 73, 95, 120], "devicetyp": [27, 62, 63, 105], "constructor": [27, 34, 48, 53, 66, 79, 95, 98, 104], "from_config": [27, 105, 118, 119, 120, 121, 122, 124, 125, 126], "config_path": [27, 28, 58, 105, 109, 118, 119, 120, 121, 122, 124, 125, 126], "actual": [27, 29, 62], "num_class": [27, 28, 34, 35, 37, 39, 42, 47, 48, 76, 77, 79, 80, 81, 82, 83, 84, 88, 90, 92, 94, 96, 114], "lr_schedul": 27, "cosineannealinglr": 27, "weight_decai": [27, 114], "t_max": 27, "eta_min": 27, "enter": [27, 71], "max_epoch": [27, 28, 95, 105, 118, 119, 120, 121, 122, 124, 125, 126], "seed": [27, 53, 105], "determinist": [27, 28, 105], "1234": [27, 105], "precis": [27, 28, 30, 68, 71, 72, 73, 78, 79, 105, 117, 118, 121, 122, 126], "64": [27, 48, 62, 90], "bf16": 27, "fmeasur": [27, 81, 82], "fmeasu": 27, "logger": [27, 28, 54, 98, 101, 105, 114], "earlystop": [27, 58, 114], "tensorboard": [27, 28, 118, 119, 121, 122, 124, 125, 126], "tensorboardlogg": 27, "limit_val_batch": 27, "alreadi": [27, 28, 48], "place": 27, "ckpt": [27, 28, 39, 78, 79, 81, 82, 103, 116, 118, 119, 120, 121, 122, 124, 125, 126], "onnx": [27, 28, 57, 68, 71, 72, 73, 105, 113, 117, 121, 122, 126], "dataload": [27, 62, 66, 78, 89, 113, 118, 119, 120, 121, 122, 124, 125, 126], "proce": [27, 120], "export_format": [27, 68, 73, 78, 79, 105, 117, 121, 122, 126], "export_precis": [27, 105, 117], "fp32": [27, 68, 71, 72, 73, 78, 79, 105, 117], "saliency_map": [27, 105, 116, 121, 122], "feature_vector": [27, 105, 121, 122], "fp16": [27, 105, 113, 117], "procedur": [27, 34], "usual": [27, 38, 42, 89], "nncf": [27, 28, 79, 90, 105, 113, 118, 120, 121, 122, 124, 125, 126], "That": [27, 78, 118, 119, 120, 121, 122, 126], "written": 28, "jsonargpars": [28, 29, 114], "lightningcli": 28, "tool": [28, 29, 30, 71, 72, 73, 76, 77, 80, 81, 84], "messag": [28, 29, 56, 113], "exit": [28, 71, 117], "displai": [28, 56, 116], "subcommand": [28, 53, 56, 58, 118, 119, 121, 122, 124, 125, 126], "lightningmodul": [28, 79, 105], "underli": [28, 105], "ov": [28, 68, 72, 73, 94, 105], "packag": [28, 57, 71, 86, 87, 88, 89, 106, 107, 113, 117], "properli": [28, 29], "verbos": [28, 54, 56], "quick": [28, 30, 56, 118, 119, 120, 121, 122, 124, 125, 126], "markdown": [28, 56], "training_extens": [28, 29, 59, 86, 87, 88, 89, 92, 118, 119], "class_path_or_nam": [28, 105], "Of": [28, 105], "cours": [28, 105], "overrid": [28, 58, 66, 91, 95, 105, 114], "ckpt_path": [28, 105, 118, 120, 121, 122, 124, 125, 126], "optional_argu": 28, "vv": [28, 118, 119, 120, 121, 122], "flag": [28, 37, 48, 68], "tpu": 28, "ipu": 28, "hpu": 28, "mp": 28, "init_arg_nam": 28, "preview": 28, "asset": [28, 109, 125], "car_tree_bug": [28, 109], "callback_monitor": [28, 114, 121, 122, 124, 125, 126], "map_50": [28, 119, 121, 122, 124, 125, 126], "1000": [28, 91, 114], "data_format": [28, 62, 104], "coco_inst": 28, "val_subset": [28, 62], "test_subset": [28, 62, 105], "1gb": [28, 62], "mem_cache_img_max_s": [28, 61, 62], "null": 28, "image_color_channel": [28, 62], "rgb": [28, 62, 68, 71], "include_polygon": [28, 62], "detec": 28, "rotated_detect": 28, "de": 28, "filter": 28, "word": 28, "coco_data_root": 28, "jpg": [28, 117, 119], "demo": [28, 68, 113, 127], "cach": [28, 53, 113], "approxim": 28, "500x375": 28, "500x439": 28, "omit": 28, "tranier": 28, "exported_model": [28, 68, 71, 72, 73, 116, 118, 120, 121, 122, 124, 125, 126], "bin": [28, 29, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "latest": [28, 48, 53, 57, 90, 116, 117, 118, 119, 121, 122, 124, 125, 126], "OR": 28, "int8": [28, 118, 120, 121, 122, 124, 125, 126], "model_weght": 28, "understood": 28, "model_weight": 28, "extra": [28, 29, 45, 57, 94, 124, 126], "with_featur": 28, "gather": 28, "output_dir": [28, 68, 71, 72, 73, 78, 79, 90], "20240000_000000": 28, "deliver": 28, "20240000_000001": 28, "soft": [28, 48, 113, 118, 119, 121, 122, 124, 125, 126], "behav": [28, 45], "ubuntu": [29, 118, 119, 120, 121, 122, 124, 125, 126], "pypi": [29, 113], "pip": [29, 54, 117], "virtual": [29, 116, 117], "venv": [29, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "guid": [29, 30, 56, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "fulli": [29, 98, 118, 121, 122, 124, 125, 126], "older": [29, 41], "instruct": 29, "ipex": 29, "oneapi": 29, "driver": 29, "0a0": 29, "torchaudio": 29, "index": [29, 37, 47, 48, 49, 57, 78, 79, 90, 92, 128], "url": [29, 57], "whl": [29, 57], "mmcv": [29, 30, 57, 62, 71], "mmcv_with_op": 29, "exclud": 29, "export": [29, 34, 48, 64, 76, 78, 79, 105, 113, 116, 119, 127], "variabl": [29, 92], "setvar": 29, "sh": 29, "ld_preload": 29, "usr": 29, "lib": 29, "x86_64": 29, "linux": [29, 117], "gnu": 29, "libstdc": 29, "30": [29, 120, 121, 122, 124, 125], "ipex_fp32_math_mod": 29, "tf32": 29, "tox": [29, 113, 116, 117, 118, 119, 120, 122, 124, 125, 126], "replac": [29, 41, 58, 62, 78, 95, 96, 116], "310": 29, "devenv": 29, "py310": 29, "otx_vers": 29, "correctli": [29, 120], "grep": 29, "4f3b5f98f97c": 29, "minut": [29, 118, 119, 121, 122, 124, 126], "ago": 29, "5gb": 29, "8d14caccb29a": 29, "4gb": 29, "host": 29, "dev": [29, 117], "txt": [29, 117, 120], "setup": [29, 39, 66, 78, 79, 117], "pytest": 29, "autom": 29, "env": 29, "newli": [29, 48, 90], "upgrad": [29, 113], "face": 29, "11": [29, 57, 58, 118, 119, 120, 121, 122, 124, 125, 126], "internet": 29, "proxi": [29, 30], "server": 29, "usr_nam": 29, "password": 29, "proxyserver_nam": 29, "port": [29, 117], "pkg_name": 29, "side": [29, 48, 92], "jsonargparse_debug": 29, "quickli": [30, 117], "expertis": 30, "toolkit": [30, 118, 119, 120, 121, 122, 124, 125, 126], "consolid": 30, "serv": 30, "shop": 30, "experienc": 30, "zoo": 30, "omz": [30, 76, 79, 80, 81, 82, 83, 84], "furthermor": 30, "team": 30, "robust": 30, "half": 30, "hyper": [30, 71, 105], "budget": 30, "freedom": 30, "descript": [30, 48, 58], "1q24": 31, "v1": [31, 79, 109], "4q23": 31, "3q23": 31, "2q23": 31, "1q23": 31, "hook": [33, 44, 79, 81, 82], "movinethead": 34, "in_channel": [34, 37, 45, 46], "hidden_dim": 34, "loss_cl": [34, 42], "tf_like": 34, "conv_typ": 34, "average_clip": 34, "basehead": 34, "hidden": [34, 37, 49, 50, 51], "tensorflow": [34, 121], "style": [34, 62], "convolut": 34, "crossentropyloss": [34, 47], "spatial_typ": 34, "pool": 34, "avg": 34, "dropout_ratio": 34, "dropout": [34, 37, 45], "init_std": 34, "basemodul": [34, 37, 45], "tensor": [34, 35, 37, 38, 39, 41, 42, 45, 47, 48, 49, 50, 51, 79, 88, 89, 90, 99, 102], "kwarg": [34, 36, 37, 39, 42, 46, 47, 48, 51, 53, 56, 58, 71, 76, 78, 79, 80, 81, 82, 83, 84, 90, 95, 98, 105, 106, 109], "init_weight": [34, 36, 41, 45], "movinetrecogn": 34, "otxrecognizer3d": 34, "recogn": [34, 53], "load_state_dict_pre_hook": [34, 39, 79], "state_dict": [34, 39, 78, 79, 81, 82], "prefix": [34, 39, 47, 79, 94], "arg": [34, 39, 42, 46, 47, 48, 51, 53, 56, 61, 78, 79, 81, 82, 83, 90, 95], "redirect": 34, "state_dict_hook": 34, "otxmovinet": 34, "wrapper": [34, 48], "share": [34, 35, 36, 47, 48, 49, 50, 51, 86, 87, 88, 89], "scriptmodul": [34, 35, 36, 47, 48, 49, 50, 51, 86, 87, 88, 89], "fill_conv": 34, "conf": [34, 95], "input_channel": 34, "out_channel": 34, "kernel_s": 34, "stride": [34, 42, 94], "conv": [34, 45], "kernel": 34, "fill_se_config": 34, "expanded_channel": 34, "padding_avg": 34, "se": 34, "expans": 34, "otxovactioncl": 34, "model_adapt": [34, 48], "openvinoadapt": 34, "preload": [34, 48], "postprocess": [34, 48, 64, 113, 116], "ndarrai": [34, 48, 90, 99], "preprocess": [34, 48, 68, 71, 113], "configdict": [34, 71], "cls_head": 34, "train_cfg": 34, "test_cfg": [34, 89], "data_preprocessor": 34, "recognizer3d": 34, "dinov2": 35, "backbone_nam": 35, "freeze_backbon": [35, 45], "head_in_channel": 35, "dino": [35, 45, 113], "img": [35, 45], "dinov2registerclassifi": 35, "optimizercal": [35, 39, 48, 76, 77, 79, 80, 81, 82, 83, 84, 90], "_default_optimizer_cal": [35, 39, 48, 76, 77, 79, 80, 81, 82, 83, 84, 90], "lrschedulercal": [35, 39, 48, 76, 77, 79, 80, 81, 82, 83, 84, 90, 91], "lrschedulerlistcal": [35, 39, 48, 76, 77, 79, 80, 81, 82, 83, 84, 90], "_default_scheduler_cal": [35, 39, 48, 76, 77, 79, 80, 81, 82, 83, 84, 90], "metriccal": [35, 39, 48, 76, 77, 79, 80, 81, 82, 83, 84, 90, 105], "_multi_class_cls_metric_cal": [35, 76, 80], "torch_compil": [35, 39, 48, 76, 77, 79, 80, 81, 82, 83, 84, 90], "otxmulticlassclsmodel": [35, 80], "otxefficientnet": 36, "b8": 36, "in_siz": 36, "otxefficientnetv2": 36, "s_21k": 36, "timmmodelswrapp": 36, "efficientnetv2": 36, "otxmobilenetv3": 36, "width_mult": 36, "mobilenetv3": 36, "customhierarchicallinearclshead": 37, "num_multiclass_head": [37, 92], "num_multilabel_class": [37, 92], "head_idx_to_logits_rang": [37, 92], "num_single_label_class": [37, 92], "empty_multiclass_head_indic": [37, 92], "multiclass_loss_cfg": 37, "multilabel_loss_cfg": 37, "thr": 37, "logit": [37, 48, 92], "remov": [37, 48, 92, 113], "total": 37, "multiclass_loss": 37, "multilabel_loss": 37, "under": [37, 124, 125], "feat": 37, "get_valid_label_mask": 37, "img_meta": 37, "ignored_label": 37, "data_sampl": [37, 89], "item": [37, 47, 58], "num_sampl": 37, "keyword": [37, 47, 53, 56, 95, 98, 105], "pre_logit": 37, "pred_label": 37, "customhierarchicalnonlinearclshead": 37, "hid_channel": 37, "1280": 37, "activation_cfg": [37, 41], "hid_cahnnel": 37, "acivation_cfg": 37, "custommultilabellinearclshead": 37, "multilabellinearclshead": 37, "multilabel": [37, 80, 92, 113], "custommultilabelnonlinearclshead": 37, "act_cfg": 37, "multilabelclshead": 37, "linar": 37, "asymmetricangularlosswithignor": 38, "gamma_po": 38, "gamma_neg": 38, "loss_weight": 38, "scalar": 38, "init": [38, 41, 45, 98], "fuction": 38, "pred": 38, "valid_label_mask": [38, 42, 47], "avg_factor": [38, 42, 47], "reduction_overrid": [38, 47], "liter": [39, 48, 65, 68, 71, 72, 73, 91, 96, 105, 106], "_mean_ap_cal": [39, 77, 81], "detecion": 39, "get_classification_lay": [39, 94], "dictconfig": [39, 66, 71, 76, 77, 80, 81, 82, 83, 84, 86, 87, 88, 89, 94, 96, 103], "model_registri": [39, 94], "registri": [39, 71, 86, 87, 88, 89, 94], "param": [39, 92, 94, 124, 125, 126], "use_bg": 39, "softmax": 39, "num_anchor": [39, 42], "load_from_otx_v1_ckpt": [39, 79], "add_prefix": 39, "otx2": [39, 79, 91], "otxssd": 39, "otxlitmodul": [39, 79], "pytorchcv": 41, "copi": [41, 58, 98], "mmdet": [41, 81, 82, 83], "multioutput_forward": 41, "multioutput": 41, "replace_activ": 41, "funtion": 41, "replace_norm": 41, "cfg": [41, 58, 71, 96], "customatsshead": 42, "bg_loss_weight": 42, "use_qfl": 42, "qfl_cfg": 42, "classincrementalmixin": [42, 46], "atsshead": 42, "get_target": 42, "anchor_list": 42, "valid_flag_list": 42, "batch_gt_inst": 42, "instancelist": 42, "batch_img_meta": 42, "batch_gt_instances_ignor": 42, "optinstancelist": 42, "unmap_output": 42, "anchorhead": 42, "parent": [42, 58], "element": [42, 48], "crosssigmoidfocalloss": 42, "labels_weights_list": 42, "binar": [42, 48], "loss_by_feat": 42, "cls_score": [42, 47], "bbox_pr": 42, "energi": 42, "delta": 42, "instancedata": 42, "gt_instanc": 42, "attribut": [42, 48, 58, 91, 102, 113], "gt_instances_ignor": 42, "loss_by_feat_singl": 42, "label_weight": 42, "bbox_target": 42, "num_total_anchor": 42, "prior": 42, "pseudosampl": 42, "consider": 42, "customssdhead": 42, "ssdhead": 42, "workaround": 42, "bug": [42, 113], "mmdet3": 42, "ssdanchorgeneratorclust": 42, "width": [42, 56, 71, 78, 99], "height": [42, 71, 78, 99], "anchorgener": 42, "gen_base_anchor": 42, "gen_single_level_base_anchor": 42, "single_level_base_anchor": 42, "dinovisiontransform": 45, "out_index": 45, "init_cfg": 45, "litehrnet": 45, "conv_cfg": [45, 46], "norm_cfg": [45, 46], "norm_ev": 45, "with_cp": 45, "zero_init_residu": 45, "eval": [45, 113], "freez": [45, 48], "stat": 45, "var": 45, "resblock": 45, "ident": 45, "customfcnhead": 46, "enable_aggreg": 46, "aggregator_min_channel": 46, "aggregator_merge_norm": 46, "aggregator_use_concat": 46, "in_index": 46, "input_transform": 46, "fcnhead": 46, "customlighthamhead": 46, "ham_channel": 46, "ham_kwarg": 46, "lighthamhead": 46, "hamburg": 46, "kwagr": 46, "ham": 46, "crossentropylosswithignor": 47, "partial": [47, 98], "revisit": 47, "unseen": 47, "ignore_index": [47, 62], "255": [47, 62, 87, 89], "wise": [47, 48], "class_weight": 47, "contribut": 47, "avg_non_ignor": 47, "properti": [47, 66, 76, 78, 79, 86, 87, 88, 89, 91, 92, 95, 105], "loss_nam": 47, "backward": 47, "graph": 47, "loss_": 47, "otxsegmentanyth": 48, "tiny_vit": 48, "vit_b": 48, "_visual_prompting_metric_cal": [48, 90], "freeze_image_encod": 48, "freeze_prompt_encod": 48, "freeze_mask_decod": 48, "use_stability_scor": 48, "return_single_mask": 48, "return_extra_metr": 48, "stability_score_offset": 48, "otxvisualpromptingmodel": [48, 90], "otxzeroshotsegmentanyth": 48, "root_reference_info": [48, 90], "vpm_zsl_reference_info": [48, 90], "save_output": [48, 90], "pixel_mean": 48, "123": 48, "675": 48, "116": 48, "103": 48, "53": 48, "pixel_std": 48, "395": 48, "375": 48, "default_threshold_refer": [48, 90], "default_threshold_target": [48, 90], "otxzeroshotvisualpromptingmodel": [48, 90], "apply_box": 48, "boundingbox": 48, "ori_shap": 48, "target_length": 48, "1024": [48, 49, 90], "apply_coord": 48, "coord": 48, "apply_imag": 48, "np": [48, 99], "apply_point": 48, "apply_prompt": 48, "zeroshotvisualpromptingbatchdataent": [48, 90], "zeroshotvisualpromptingbatchpredent": [48, 90], "get_preprocess_shap": 48, "oldh": 48, "oldw": 48, "reference_feat": [48, 90], "used_indic": [48, 90], "is_cascad": [48, 90], "connect": 48, "initialize_reference_info": [48, 90], "reset_feat": [48, 90], "load_latest_reference_info": [48, 90], "info": [48, 54, 90, 117], "segmentanyth": [48, 126], "load_from": [48, 86, 87, 88, 89, 94], "mask_threshold": 48, "image_s": [48, 90], "image_embedding_s": [48, 51], "embed_dim": [48, 49, 51], "256": [48, 49, 50, 51], "mask_in_chan": [48, 51], "num_multimask_output": [48, 50], "transformer_cfg": [48, 50], "transformer_dim": [48, 50], "iou_head_depth": [48, 50], "iou_head_hidden_dim": [48, 50], "calculate_dice_loss": 48, "num_mask": 48, "calculate_i": 48, "epsilon": 48, "intersect": 48, "calculate_sigmoid_ce_focal_loss": 48, "alpha": 48, "arxiv": [48, 106], "ab": [48, 106], "1708": 48, "02002": 48, "noqa": 48, "d301": 48, "arbitrari": 48, "expon": 48, "p_t": 48, "hard": 48, "calculate_stability_scor": 48, "threshold_offset": 48, "stabil": 48, "bxhxw": 48, "stability_scor": 48, "forward_infer": 48, "image_embed": [48, 50], "point_coord": 48, "point_label": 48, "mask_input": 48, "has_mask_input": 48, "spars": [48, 51], "bottom": [48, 89], "1x1x256x256": 48, "suppli": 48, "1x1": 48, "layout": 48, "1x2": 48, "forward_train": 48, "gt_mask": 48, "tv_tensor": 48, "nx4": 48, "arrai": [48, 51, 76, 79], "xyxi": [48, 51], "emb": [48, 51, 68, 71, 72, 73], "bxnx2": [48, 51], "bxn": [48, 51], "foreground": [48, 51], "freeze_network": 48, "get_prepadded_s": 48, "input_image_s": [48, 51], "longest_sid": 48, "load_checkpoint": 48, "classmethod": [48, 66, 92, 105], "postprocess_mask": 48, "input_s": [48, 68, 71, 72, 73, 78], "orig_s": 48, "bx1xhxw": [48, 51], "bx2": 48, "select_mask": 48, "iou_pr": [48, 50], "num_point": 48, "bxmxhxw": 48, "bxm": 48, "bx1": 48, "visualpromptingdecod": 48, "inferenceadapt": 48, "segmentationmodel": 48, "inference_adapt": 48, "executor": 48, "confidence_threshold": 48, "rais": [48, 53, 54, 57, 90, 97, 100], "wrappererror": 48, "fail": 48, "py": [48, 57, 117], "numericalvalu": 48, "default_valu": 48, "confid": [48, 81, 82, 113, 121, 122, 126], "visualpromptingimageencod": 48, "imagemodel": 48, "zeroshotsegmentanyth": 48, "expand_reference_info": [48, 90], "new_largest_label": [48, 90], "labl": [48, 90], "num_bg_point": [48, 90], "defaultdict": [48, 90], "cascad": 48, "processed_prompt": 48, "tvtensor": 48, "_gather_prompts_with_label": 48, "pad_to_squar": 48, "set_default_config": 48, "tinyvit": 49, "img_siz": 49, "224": [49, 62, 114], "in_chan": 49, "depth": [49, 50], "num_head": 49, "window_s": 49, "mlp_ratio": 49, "drop_rat": 49, "drop_path_r": 49, "mbconv_expand_ratio": 49, "local_conv_s": 49, "layer_lr_decai": 49, "mobilesam": 49, "no_weight_decay_keyword": 49, "keyworkd": 49, "set_layer_lr_decai": 49, "patch_siz": 49, "768": 49, "out_chan": 49, "qkv_bia": 49, "norm_lay": 49, "layernorm": 49, "act_lay": 49, "gelu": [49, 50, 51], "use_abs_po": 49, "use_rel_po": 49, "rel_pos_zero_init": 49, "global_attn_index": 49, "attent": [49, 116], "mlp": [49, 50], "dim": 49, "learnabl": 49, "bia": [49, 118, 120, 121, 122, 124, 125, 126], "queri": 49, "window": [49, 117], "global": [49, 116, 120], "sammaskdecod": 50, "facebookresearch": [50, 51], "disambigu": 50, "upscal": 50, "qualiti": 50, "image_p": 50, "sparse_prompt_embed": 50, "dense_prompt_embed": 50, "multimask_output": 50, "predict_mask": 50, "samimageencod": 51, "sampromptencod": 51, "bx4": 51, "nx1x": 51, "dense_embed": 51, "nx": 51, "embed_h": 51, "embed_w": 51, "sparse_embed": 51, "get_dense_p": 51, "embedding_h": 51, "embedding_w": 51, "entrypoint": [52, 53], "otxcli": 53, "add_subcommand": 53, "parser": [53, 58], "engine_subcommand_pars": 53, "argumentpars": [53, 58], "engine_subcommand": 53, "whose": [53, 119], "skip": [53, 56, 58, 90, 118, 119, 121, 122, 124, 125, 126], "duplic": 53, "get_config_valu": 53, "namespac": [53, 58], "retriev": [53, 95], "get_subcommand_pars": 53, "init_pars": 53, "instantiate_class": [53, 98], "instantiate_engin": 53, "instanti": [53, 58, 62, 95, 109], "instantiate_model": 53, "model_config": 53, "prepare_subcommand_kwarg": 53, "valueerror": [53, 54, 57], "save_config": 53, "set_se": 53, "reproduc": [53, 118, 119, 121, 122, 124, 125, 126], "argpars": [53, 56], "seed_everyth": 53, "update_latest": 53, "add_install_pars": 54, "subcommands_act": 54, "_actionsubcommand": 54, "subpars": 54, "otx_instal": 54, "do_not_install_torch": 54, "absolute_path": 55, "formatt": 56, "customhelpformatt": 56, "prog": 56, "indent_incr": 56, "max_help_posit": 56, "consol": 56, "richhelpformatt": 56, "defaulthelpformatt": 56, "customiz": 56, "verbosity_level": 56, "render": [56, 117], "add_usag": 56, "add_argu": 56, "format_help": 56, "string": [56, 61, 92], "superclass": 56, "get_cli_usage_docstr": 56, "docstr": [56, 58], "__doc__": 56, "prev": 56, "n2": 56, "get_verbosity_subcommand": 56, "sy": 56, "argv": 56, "render_guid": 56, "content": 56, "add_hardware_suffix_to_torch": 57, "hardware_suffix": 57, "with_available_torch_build": 57, "suffix": 57, "compris": 57, "correct": [57, 88, 118, 120, 121, 122, 124, 125, 126], "cuda": [57, 118, 119, 120, 121, 122, 124, 125, 126], "pkg_resourc": 57, "req": 57, "spec": 57, "cu121": 57, "cu118": 57, "cu111": 57, "criterion": 57, "get_cuda_suffix": 57, "cuda_vers": 57, "mmx": [57, 94, 110], "download": [57, 118, 119, 120, 121, 124], "instead": [57, 78, 121, 122, 124, 126], "shoudl": 57, "regularli": 57, "reflect": 57, "cu112": 57, "get_cuda_vers": 57, "get_hardware_suffix": 57, "torch_vers": 57, "yet": 57, "get_mmcv_install_arg": 57, "torch_requir": 57, "mmcv_requir": 57, "notimplementederror": 57, "Not": 57, "maco": [57, 117], "runtimeerror": 57, "o": 57, "get_module_vers": 57, "module_nam": 57, "get_requir": 57, "importlib": 57, "metadata": [57, 68, 71, 72, 73, 113], "importlib_metadata": 57, "attr": 57, "get_torch_install_arg": 57, "requri": 57, "mim_instal": 57, "mim": 57, "modulenotfounderror": [57, 97], "parse_requir": 57, "mmcl": [57, 113], "patch_mmaction2": 57, "mmaction2": 57, "reason": [57, 66], "__init__": 57, "miss": [57, 113], "update_cuda_version_with_available_torch_cuda_build": 57, "highest": 57, "warn": [57, 105, 113], "add_list_type_argu": 58, "baseclass": 58, "nested_kei": 58, "add_subclass_argu": 58, "bypass": 58, "_signatur": 58, "signatureargu": 58, "subclass": 58, "nest": [58, 62], "apply_config": 58, "actionconfigfil": 58, "dest": 58, "destin": 58, "flatten_dict": 58, "parent_kei": 58, "sep": 58, "flatten": 58, "get_configur": 58, "get_defaults_with_overrid": 58, "skip_check": 58, "get_instantiated_class": 58, "pathlik": [58, 105, 109], "get_short_docstr": 58, "typevar": 58, "list_overrid": 58, "override_list": 58, "override_callback": 58, "patch_update_config": 58, "action_config_fil": 58, "only_unset": 58, "posixpath": 59, "home": [59, 106], "runner": 59, "doc": [59, 113, 117], "use_sub_dir": 59, "subdirectori": 59, "any_represent": 61, "dumper": 61, "saferepresent": 61, "scalarnod": 61, "node": [61, 71], "as_int_tupl": 61, "as_torch_dtyp": 61, "dtype": 61, "todtyp": [61, 62], "float32": [61, 62], "dtype_represent": 61, "ignore_alias": 61, "alias": 61, "otherwis": [61, 62, 91, 95, 105], "register_config": 61, "subsetconfig": [62, 66, 118, 119, 120, 121, 122, 124, 125, 126], "factori": [62, 66], "vpm_config": 62, "visualpromptingconfig": 62, "imagecolorchannel": 62, "stack_imag": 62, "unannotated_items_ratio": 62, "dto": [62, 64, 65], "samplerconfig": [62, 98], "randomsampl": 62, "todo": 62, "resembl": 62, "subset_nam": [62, 105], "transform_lib_typ": 62, "transformer_lib": 62, "transformlibtyp": [62, 104], "worker": 62, "train_subset_config": 62, "randomresizedcrop": [62, 114], "antialia": 62, "randomhorizontalflip": 62, "p": 62, "485": 62, "456": 62, "406": 62, "std": [62, 68, 71, 72, 73, 86, 87, 88, 89, 103], "229": 62, "225": 62, "overlap": [62, 104], "iou_threshold": [62, 102], "max_num_inst": [62, 102], "03": [62, 118], "tiler": 62, "use_bbox": 62, "use_point": 62, "deviceconfig": [63, 105], "explainconfig": [64, 105, 116], "target_explain_group": [64, 116], "targetexplaingroup": [64, 116], "num_trial": 65, "subset_ratio": 65, "min_subset_s": 65, "lightningdatamodul": 66, "predict_dataload": 66, "teardown": 66, "test_dataload": 66, "train_dataload": [66, 105], "val_dataload": 66, "hparams_initi": 66, "attributedict": 66, "save_hyperparamet": 66, "primit": 66, "loggabl": 66, "unresolv": 66, "otxdatasetfactori": 66, "dm_subset": 66, "datasetsubset": 66, "mem_cache_handl": 66, "memcachehandlerbas": 66, "cfg_subset": 66, "cfg_data_modul": 66, "transformlibfactori": 66, "otxmodelexport": [68, 71, 72], "resize_mod": [68, 71, 72, 73], "fit_to_window": [68, 71, 72, 73], "fit_to_window_letterbox": [68, 71, 72, 73], "pad_valu": [68, 71, 72, 73, 87, 88], "swap_rgb": [68, 71, 72, 73], "output_nam": [68, 71, 72, 73], "bgr": [68, 71], "base_model_nam": [68, 71, 72, 73], "otxexportformattyp": [68, 73, 78, 79, 105], "otxprecisiontyp": [68, 71, 72, 73, 78, 79, 105], "artifact": [68, 71, 73, 120], "otxexportprecisiontyp": [68, 73, 78, 79, 105], "to_exportable_cod": 68, "zip": [68, 117], "runabl": 68, "to_onnx": [68, 71, 72, 73], "embed_metadata": [68, 71, 72, 73], "to_openvino": [68, 71, 72, 73], "mmdeployexport": 71, "model_build": 71, "callabl": [71, 79, 81, 82, 88, 91, 100, 105, 106, 111], "model_cfg": 71, "deploy_cfg": 71, "mmconfig": [71, 96], "test_pipelin": 71, "max_num_detect": 71, "mm": [71, 88, 103], "mmengin": [71, 96], "ir_config": 71, "cvt_torch2onnx_partit": 71, "partition_cfg": 71, "partit": 71, "load_mmconfig_from_pkg": 71, "configuraiton": 71, "mmdeploy_init_model_help": 71, "_": [71, 92, 114], "helper": 71, "patch_input_shap": 71, "patch_ir_scale_factor": 71, "hyper_paramet": 71, "inplac": [71, 78, 96], "detectionconfig": 71, "use_temporary_default_scop": 71, "temporari": 71, "scope": 71, "defaultscop": 71, "revert": 71, "problemat": 71, "tri": [71, 105], "otxnativemodelexport": [72, 73], "via_onnx": [72, 73], "onnx_export_configur": [72, 73], "otxvisualpromptingmodelexport": 73, "nativ": 73, "get_onnx_dummy_input": 73, "exported_model_image_encod": [73, 126], "exported_model_decod": [73, 126], "dummi": 73, "mmactioncompatiblemodel": [76, 77], "otxactionclsmodel": 76, "compit": [76, 77], "mmaction": [76, 77, 118], "translat": [76, 77, 80, 81, 84, 110], "translate_mmrecip": [76, 77, 80, 81, 84], "actionclsbatchdataent": 76, "actionclsbatchpredent": 76, "t_otxtilebatchdataent": [76, 77, 79, 80, 84, 90], "ovactionclsmodel": 76, "model_nam": [76, 79, 80, 81, 82, 83, 84, 90, 105], "model_typ": [76, 79, 80, 81, 82, 83, 84, 90], "async_infer": [76, 79, 80, 81, 82, 83, 84, 90], "max_num_request": [76, 79, 80, 81, 82, 83, 84, 90], "use_throughput_mod": [76, 79, 80, 81, 82, 83, 84, 90], "model_api_configur": [76, 79, 80, 81, 82, 83, 84, 90], "ovmodel": [76, 79, 80, 81, 82, 84, 90], "transform_fn": [76, 79], "data_batch": [76, 79], "model_adapter_paramet": [76, 79], "otxactiondetmodel": 77, "actiondetbatchdataent": 77, "actiondetbatchpredent": 77, "otxanomali": 78, "configure_callback": 78, "configure_optim": [78, 79, 90], "trainable_model": 78, "base_nam": [78, 79], "anomalyclassificationdatabatch": 78, "anomalysegmentationdatabatch": 78, "anomalydetectiondatabatch": 78, "anomalyclassificationbatchpredict": 78, "anomalysegmentationbatchpredict": 78, "anomalydetectionbatchpredict": 78, "wrap": 78, "load_state_dict": [78, 79, 81, 82], "ordereddict": 78, "on_predict_batch_end": 78, "batch_idx": [78, 79, 90], "dataloader_idx": [78, 79], "datatyp": 78, "batchpredict": 78, "on_test_batch_end": 78, "loop": [78, 106, 117], "predict_step": [78, 79, 83], "label_info": [78, 79], "labelinfo": [78, 79, 92], "tasktyp": 78, "cleanest": 78, "_null_metric_cal": 79, "t_otxbatchdataent": [79, 88], "t_otxbatchpredent": [79, 88, 102], "explain_mod": 79, "configure_metr": 79, "optimizerlrschedul": 79, "period": [79, 91], "former": 79, "latter": 79, "forward_explain": [79, 81, 82, 88], "forward_til": [79, 81, 82], "get_explain_fn": [79, 81, 82, 88], "successfulli": 79, "resum": [79, 105], "load_state_pre_hook": 79, "smart": 79, "lr_scheduler_step": 79, "lrschedulertypeunion": 79, "map_class_nam": 79, "src_class": 79, "dst_class": 79, "dst": 79, "src2dst": 79, "src_idx": 79, "dst_idx": 79, "assert": 79, "len": 79, "ex": 79, "person": [79, 122, 126], "sky": 79, "ball": 79, "on_test_epoch_end": 79, "trigger": [79, 111], "on_test_epoch_start": 79, "on_test_start": [79, 90], "on_validation_epoch_end": [79, 90], "on_validation_epoch_start": [79, 90], "on_validation_start": 79, "data_modul": [79, 90], "ptq_config": [79, 90], "calibr": 79, "register_load_state_dict_pre_hook": 79, "model_class": 79, "ckpt_class": 79, "someth": 79, "ddp": 79, "test_step": [79, 90], "training_step": [79, 90], "validation_step": [79, 90], "metriccollect": 79, "redefin": [79, 88], "synchron": 79, "mmpretrainhlabelclsmodel": 80, "hlabel_info": 80, "hlabelinfo": [80, 92], "_mixed_hlabel_accuraci": 80, "otxhlabelclsmodel": 80, "mmpretrainmulticlassclsmodel": [80, 88], "mmpretrainmultilabelclsmodel": 80, "otxmultilabelclsmodel": 80, "hlabelclsbatchdataent": 80, "hlabelclsbatchpredent": 80, "multiclassclsbatchdataent": 80, "multiclassclsbatchpredent": 80, "_multi_label_cls_metric_cal": 80, "multilabelclsbatchdataent": 80, "multilabelclsbatchpredent": 80, "ovhlabelclassificationmodel": 80, "ovmulticlassclassificationmodel": 80, "ovmultilabelclassificationmodel": 80, "explainableotxdetmodel": 81, "attach": [81, 82], "get_num_anchor": 81, "tilebatchdetdataent": 81, "unpack": [81, 82], "ovdetectionmodel": 81, "explainableotxinstancesegmodel": 82, "_mask_rle_mean_ap_cal": [82, 83], "otxinstancesegmodel": [82, 83], "instancesegbatchdataent": 82, "instancesegbatchpredent": [82, 83, 102], "mmdetinstancesegcompatiblemodel": [82, 83], "tilebatchinstsegdataent": 82, "ovinstancesegmentationmodel": [82, 83], "mmdetrotateddetmodel": 83, "otxrotateddetmodel": 83, "compaibl": 83, "overridden": 83, "rbox": 83, "ovrotateddetectionmodel": 83, "mmsegcompatiblemodel": 84, "_dice_cal": 84, "otxsegmentationmodel": 84, "mmseg": 84, "segbatchdataent": 84, "segbatchpredent": 84, "ovsegmentationmodel": 84, "actiondatapreprocessor": 86, "to_rgb": [86, 88], "to_float32": 86, "blend": 86, "format_shap": 86, "nchw": 86, "monkei": [86, 87, 88, 89], "preprocessor": [86, 87, 88, 89], "histori": [86, 87, 88, 89], "2743": [86, 87, 88, 89], "detdatapreprocessor": 87, "pad_size_divisor": [87, 88], "pad_mask": 87, "mask_pad_valu": 87, "pad_seg": 87, "seg_pad_valu": 87, "bgr_to_rgb": [87, 89], "rgb_to_bgr": [87, 89], "boxtype2tensor": 87, "non_block": 87, "batch_aug": [87, 88, 89], "clsdatapreprocessor": 88, "to_onehot": 88, "explainablemixinmmpretrainmodel": 88, "mobilenetv3formulticlasscl": [88, 114], "head_forward_fn": 88, "has_gap": 88, "segdatapreprocessor": 89, "size_divisor": 89, "pad_val": 89, "seg_pad_v": 89, "bgr2rgb": 89, "basedatapreprocessor": 89, "stack_batch": 89, "samplelist": 89, "stack": 89, "gt_sem_seg": 89, "chw": 89, "segdatasampl": 89, "divisor": 89, "4d": 89, "gt_seg_map": 89, "visualpromptingbatchdataent": 90, "visualpromptingbatchpredent": 90, "typeerror": [90, 100], "unus": 90, "on_predict_start": 90, "on_train_epoch_end": 90, "on_train_epoch_start": 90, "on_train_start": 90, "ovvisualpromptingmodel": 90, "ovzeroshotvisualpromptingmodel": 90, "zero_shot_visual_prompt": 90, "downsiz": 90, "linearwarmupschedul": 91, "num_warmup_step": 91, "lambdalr": 91, "linearli": 91, "warmup_interv": 91, "count": [91, 99, 113], "n_step": 91, "less": [91, 124, 125], "linearwarmupschedulercal": 91, "main_scheduler_cal": 91, "mainli": 91, "__call__": 91, "lrschedul": 91, "reserv": 92, "label_nam": 92, "label_group": 92, "class_to_group_idx": 92, "all_group": 92, "label_to_idx": 92, "label_tree_edg": 92, "hierarchi": [92, 113], "kept": 92, "head_to_logits_rang": 92, "rigid": 92, "rectangl": 92, "triangl": 92, "circl": 92, "anim": 92, "lion": 92, "panda": 92, "handel": 92, "as_head_config_dict": 92, "hlabel": 92, "from_dm_label_group": 92, "dm_label_categori": 92, "labelcategori": 92, "hlabeldata": 92, "from_json": 92, "serial": 92, "as_dict": 92, "heart_k": 92, "heart_queen": 92, "spade_k": 92, "spade_jack": 92, "from_num_class": 92, "label_0": 92, "to_json": 92, "nulllabelinfo": 92, "seglabelinfo": 92, "build_mm_model": 94, "sometim": 94, "get_default_num_async_infer_request": 94, "request": 94, "modify_num_class": 94, "trainerargumentscach": 95, "omegaconf": 95, "val_check_interv": [95, 105], "get_trainer_constructor_arg": 95, "requires_upd": 95, "convert_conf_to_mmconfig_dict": 96, "inplace_num_class": 96, "listconfig": 96, "mmconfig_dict_to_dict": 96, "obj": 96, "to_list": 96, "dict_": 96, "recurs": 96, "to_tupl": 96, "get_otx_root_path": 97, "instantiate_callback": 98, "callbacks_cfg": 98, "instantiate_logg": 98, "logger_cfg": 98, "instantiate_sampl": 98, "sampler_config": 98, "partial_instantiate_class": 98, "qualifi": 98, "encode_rl": 99, "rle": 99, "rewrit": 99, "cocodataset": 99, "cocoapi": 99, "Or": 99, "polygon_to_bitmap": 99, "bitmap": 99, "polygon_to_rl": 99, "ensure_cal": 100, "func": 100, "_t": 100, "_v": 100, "get_pylogg": 101, "__name__": 101, "detectiontilemerg": 102, "img_info": 102, "imageinfo": 102, "tilemerg": 102, "batch_tile_pr": 102, "batch_tile_attr": 102, "detpredent": 102, "instancesegtilemerg": 102, "instancesegpredent": 102, "seg": [102, 113], "t_otxdataent": 102, "suppress": 102, "nms_postprocess": 102, "get_adaptive_num_work": 103, "num_dataload": 103, "measur": [103, 118, 119, 120, 121, 122, 126], "get_idx_list_per_class": 103, "dm_dataset": 103, "dmdataset": 103, "use_string_label": 103, "get_mean_std_from_data_process": 103, "data_process": 103, "is_ckpt_for_finetun": 103, "is_ckpt_from_otx_v1": 103, "otx1": 103, "anomalydatamodul": 104, "data_dir": 104, "train_batch_s": 104, "train_num_work": 104, "train_transform": 104, "train_transform_lib_typ": 104, "val_batch_s": 104, "val_num_work": 104, "val_transform": 104, "val_transform_lib_typ": 104, "test_batch_s": 104, "test_num_work": 104, "test_transform": 104, "test_transform_lib_typ": 104, "govern": 105, "pl": 105, "eval_dataload": 105, "explain_config": [105, 116], "export_config": 105, "exportconfig": 105, "from_model_nam": 105, "max_data_subset_s": 105, "path_to_ir_xml": 105, "return_predict": 105, "metric_cal": 105, "temporarilli": 105, "_precision_input": 105, "failur": 105, "trainer_param": 105, "hpobas": 106, "asyncron": 106, "novel": 106, "bandit": 106, "jmlr": 106, "2018": 106, "1603": 106, "06560": 106, "washington": 106, "edu": 106, "jamieson": 106, "massiv": 106, "mlsy": 106, "2020": 106, "1810": 106, "05934": 106, "decicd": 106, "auto_config": 106, "align": 106, "lesser": 106, "get_best_config": 106, "get_next_sampl": 106, "ashatri": 106, "get_progress": 106, "progress": 106, "is_don": 106, "print_result": 106, "report_scor": 106, "trial_id": 106, "hashabl": 106, "trialstatu": 106, "decid": 106, "save_result": 106, "intenum": 106, "run_hpo_loop": 106, "hpo_algo": 106, "train_func": 106, "resource_typ": 106, "num_parallel_tri": 106, "num_gpu_for_single_tri": 106, "available_gpu": 106, "cpuresourcemanag": 106, "gpuresourcemanag": 106, "runnabl": 108, "script": [108, 110], "configconvert": 109, "modeltempl": 109, "train_kwarg": 109, "append_main_proc_signal_handl": 111, "sig_num": 111, "sig_handl": 111, "append": 111, "handler": 111, "signal": 111, "append_signal_handl": 111, "sent": 111, "featurevectorhook": 113, "segmant": 113, "otxsampl": 113, "adaptiverepeatdatahook": 113, "semi": 113, "sl": 113, "track": 113, "refin": 113, "timeout": 113, "cl": 113, "det": 113, "iseg": 113, "sseg": 113, "modelapi": 113, "numpi": 113, "bump": 113, "minor": 113, "readm": [113, 117, 120], "encrypt": 113, "oom": 113, "deform": 113, "detr": 113, "channel_last": 113, "persistent_work": 113, "pin_memori": 113, "prototyp": 113, "reciev": 113, "2023": 113, "verion": 113, "centercrop": 113, "switch": 113, "direct": [113, 114], "storag": 113, "apach": 113, "arrow": 113, "greedi": 113, "noisi": 113, "labeltre": 113, "labelschema": 113, "speedup": 113, "classificaiton": 113, "refactor": 113, "mmdeploi": 113, "consumpt": 113, "cli_report": 113, "clean": 113, "detcon": 113, "supcon": 113, "visiontransform": 113, "parametr": [113, 116], "bring": 113, "mpa": 113, "proof": 113, "review": 113, "pot": 113, "stat_requests_numb": 113, "mobilenet_v3_larg": 114, "0058": 114, "warmupreducelronplateau": 114, "warmup_step": 114, "_base_": 114, "mmpretrain_bas": 114, "readthedoc": 114, "io": 114, "v4": 114, "loadimagefromfil": 114, "cv2": 114, "prob": 114, "randomflip": 114, "packinput": 114, "print_config": [114, 121, 122, 124, 125, 126], "ligthn": 114, "write": 115, "gave": 116, "epoch_": [116, 118, 119, 121, 122, 124, 125, 126], "20240312_051135": [116, 118, 119, 121, 122, 124, 125], "epoch_033": [116, 119, 122, 124, 125], "overlai": 116, "feature_map": 116, "20240312_052847": [116, 118, 120, 121, 122, 124, 125], "xml_weights_path": 116, "grayscal": 116, "colormap": 116, "chosen": 116, "outsid": 117, "ll": [117, 121, 125], "exportable_cod": 117, "dir": [117, 118, 119, 120, 121, 122, 124, 125, 126], "nad": 117, "archiv": 117, "licens": [117, 120], "md": 117, "demo_packag": 117, "pytorch_checkpoint": 117, "abl": 117, "footag": 117, "camera": 117, "unzip": [117, 121], "brand": 117, "minimalist": 117, "python3": 117, "demo_venv": 117, "wgisd_dataset_sampl": 117, "press": 117, "q": 117, "screen": 117, "enforc": 117, "button": 117, "kill": 117, "termin": 117, "ctrl": 117, "resulted_imag": 117, "sudo": 117, "apt": 117, "v4l": 117, "v4l2": 117, "ctl": 117, "usb": 117, "0000": 117, "00": [117, 118, 120, 121, 122, 124, 125, 126], "1a": 117, "video0": 117, "live": [118, 119, 121], "been": [118, 119, 120, 121, 122, 124, 125, 126], "tm": [118, 119, 120, 121, 122, 124, 125, 126], "i9": [118, 119, 120, 121, 122, 124, 125, 126], "10980xe": [118, 119, 121], "univers": [118, 119, 120, 121, 122, 124, 125, 126], "covert": 118, "silky_straight_hair_original_brush_hair_h_nm_np1_ba_goo_0": 118, "avi": 118, "csv": [118, 119, 121, 122, 124, 125, 126], "red_head_brush_hair_u_cm_np1_ba_goo_0": 118, "sarah_brushing_her_hair_brush_hair_h_cm_np1_ri_goo_0": 118, "And": 118, "youtube_id": 118, "time_start": 118, "time_end": 118, "is_cc": 118, "brush_hair": 118, "276": 118, "timestamp": [118, 119, 120, 121, 122, 124, 125, 126], "20240403_134256": [118, 119, 121, 122, 124, 125, 126], "characterist": [118, 119, 121, 122, 124, 125, 126], "took": [118, 119, 121, 122, 124, 125, 126], "evali": 118, "snapshot": [118, 119, 121, 122, 124, 125, 126], "6039215922355652": 118, "data_tim": [118, 119, 120, 121, 122, 124, 126], "13730056583881378": 118, "iter_tim": [118, 119, 120, 121, 122, 124, 126], "16275013983249664": 118, "version_0": [118, 119, 121, 122, 124, 125, 126], "runtim": [118, 121, 122, 126], "295829": 118, "5222222208976746": 118, "14048805832862854": 118, "5871070623397827": 118, "209": 118, "613333": 118, "20240312_055042": [118, 121, 122, 124, 125], "optimized_model": [118, 120, 121, 122, 124, 125], "5078431367874146": 118, "23449821770191193": 118, "4908757507801056": 118, "255130": 118, "spatio": 119, "jhmdb_10": 119, "ava_action_list_v2": 119, "pbtxt": 119, "ava_test": 119, "ava_train": 119, "ava_v": 119, "pkl": 119, "train_video001": 119, "train_video001_0001": 119, "test_video001": 119, "test_video001_0001": 119, "006367621477693319": 119, "02698644995689392": 119, "10247182101011276": 119, "3779516816139221": 119, "map_75": [119, 122, 124, 126], "03639398142695427": 119, "map_larg": [119, 122, 126], "11831618845462799": 119, "map_medium": [119, 122, 126], "02958027645945549": 119, "map_per_class": [119, 122, 126], "map_smal": [119, 122, 126], "mar_1": [119, 122, 126], "12753313779830933": 119, "mar_10": [119, 122, 126], "1305265873670578": 119, "mar_100": [119, 122, 126], "mar_100_per_class": [119, 122, 126], "mar_larg": [119, 122, 126], "14978596568107605": 119, "mar_medium": [119, 122, 126], "06217033043503761": 119, "mar_smal": [119, 122, 126], "11900": [120, 122, 124, 125, 126], "bottl": 120, "broken_larg": 120, "001_mask": 120, "002_mask": 120, "broken_smal": 120, "stfpm": 120, "padim": 120, "notic": 120, "image_auroc": 120, "image_f1scor": 120, "pixel_auroc": 120, "pixel_f1scor": 120, "6517705321311951": 120, "6630784869194031": 120, "20240313_042421": 120, "epoch_010": 120, "f": 120, "588245": [120, 122, 124, 125], "20240313_052847": 120, "yamll": 120, "02": [120, 121, 122, 124, 125], "958733": [120, 121, 122, 124, 125], "20240313_055042": 120, "260521": [120, 121, 122, 124, 125], "substitut": 121, "everyth": 121, "wget": 121, "example_imag": 121, "flower_photo": 121, "tgz": 121, "tar": 121, "xzvf": 121, "insert": [121, 126], "mkdir": [121, 122, 124, 126], "daisi": 121, "dandelion": 121, "rose": 121, "sunflow": 121, "tulip": 121, "cp": [121, 122, 124, 126], "exact": 121, "tv_efficientnet_b0": 121, "tv_resnet_50": 121, "efficientnet_v2_light": 121, "tv_efficientnet_b3": 121, "efficientnet_b0_light": 121, "tv_efficientnet_v2_l": 121, "tv_efficientnet_b1": 121, "tv_mobilenet_v3_smal": 121, "otx_mobilenet_v3_larg": 121, "otx_deit_tini": 121, "tv_efficientnet_b4": 121, "otx_efficientnet_v2": 121, "mobilenet_v3_large_light": 121, "otx_efficientnet_b0": 121, "otx_dino_v2": 121, "otx_dino_v2_linear_prob": 121, "counterintuit": [121, 122, 124, 126], "disable_infer_num_class": [121, 122, 124, 125, 126], "9929155111312866": 121, "0430680550634861": 121, "058606021106243134": 121, "epoch_014": 121, "446673": 121, "9931880235671997": 121, "018398193642497063": 121, "2764030694961548": 121, "989645779132843": 121, "00853706430643797": 121, "43554383516311646": 121, "reveal": [122, 124, 126], "page": [122, 124, 126, 128], "grapevin": [122, 124, 126], "grape": [122, 124, 126], "cdy": [122, 124, 126], "chardonnai": [122, 124, 126], "cfr": [122, 124, 126], "cabernet": [122, 124, 126], "franc": [122, 124, 126], "sauvignon": [122, 124, 126], "svb": [122, 124, 126], "blanc": [122, 124, 126], "syh": [122, 124, 126], "syrah": [122, 124, 126], "great": [122, 126], "reformat": [122, 126], "meet": [122, 124, 126], "_train": [122, 124, 126], "025369757786393166": 122, "8693901896476746": 122, "08180806040763855": 122, "5444773435592651": 122, "5761404037475586": 122, "561242401599884": 122, "2926788330078125": 122, "055956535041332245": 122, "45759353041648865": 122, "6809769868850708": 122, "6932432055473328": 122, "46584922075271606": 122, "toi": [124, 126], "train_polygons_inst": 124, "test_polygons_inst": 124, "maskrcnn_r50": [124, 125], "maskrcnn_r50_til": 124, "maskrcnn_swint": 124, "maskrcnn_efficientnetb2b": 124, "rtmdet_inst_tini": 124, "maskrcnn_efficientnetb2b_til": 124, "maskrcnn_swint_til": 124, "mostli": [124, 126], "workplac": [124, 125, 126], "0007903117220848799": 124, "062202490866184235": 124, "33679962158203125": 124, "5482384562492371": [124, 125], "37118086218833923": 124, "epoch_059": [124, 125], "hood": [124, 125], "voc2012": 125, "semnat": 125, "common_semantic_segmentation_dataset": 125, "segnext_t": 125, "segnext_b": 125, "dino_v2": 125, "litehrnet_18": 125, "segnext_": 125, "litehrnet_x": 125, "litehrnet_": 125, "1556396484375": 125, "0009265312692150474": 126, "9201090335845947": 126, "9201071262359619": 126, "8520355224609375": 126, "3015514016151428": 126, "5886790156364441": 126, "9061686396598816": 126, "6716098785400391": 126, "7401198148727417": 126, "5705212950706482": 126, "21598181128501892": 126, "03824029490351677": 126, "3468073010444641": 126, "614170253276825": 126, "766523003578186": 126, "599896252155304": 126, "2501521706581116": 126, "epoch_009": 126, "0009342798730358481": 126, "31654438376426697": 126, "396129": 126, "313879": 126, "0007283412269316614": 126, "9990837574005127": 126, "9169966578483582": 126, "8467163443565369": 126, "1121630668640137": 126, "47309553623199463": 126, "8371172547340393": 126, "5044668912887573": 126, "6876431107521057": 126, "5046071410179138": 126, "11672457307577133": 126, "02601064182817936": 126, "26142847537994385": 126, "6027402281761169": 126, "7594292163848877": 126, "5897444486618042": 126, "22268414497375488": 126, "0007516053738072515": 126, "09753680229187": 126, "matter": 126, "609954": 126, "fault": 126, "occur": 126, "thread": 126, "affect": 126, "optimized_model_decod": 126, "0007440951885655522": 126, "998199462890625": 126, "853766918182373": 126, "7448458075523376": 126, "8865625858306885": 126, "23295165598392487": 126, "5494663119316101": 126, "15102604031562805": 126, "45290130376815796": 126, "16153287887573242": 126, "012729672715067863": 126, "014449129812419415": 126, "15996699035167694": 126, "3901452422142029": 126, "5868775844573975": 126, "30925533175468445": 126, "027198636904358864": 126}, "objects": {"": [[32, 0, 0, "-", "otx"]], "otx": [[33, 0, 0, "-", "algo"], [52, 0, 0, "-", "cli"], [60, 0, 0, "-", "core"], [104, 0, 0, "-", "data"], [105, 0, 0, "-", "engine"], [106, 0, 0, "-", "hpo"], [107, 0, 0, "-", "recipe"], [108, 0, 0, "-", "tools"], [111, 0, 0, "-", "utils"]], "otx.algo": [[34, 0, 0, "-", "action_classification"], [35, 0, 0, "-", "classification"], [39, 0, 0, "-", "detection"], [44, 0, 0, "-", "segmentation"], [48, 0, 0, "-", "visual_prompting"]], "otx.algo.action_classification": [[34, 1, 1, "", "MoViNetHead"], [34, 1, 1, "", "MoViNetRecognizer"], [34, 1, 1, "", "OTXMoViNet"], [34, 1, 1, "", "OTXOVActionCls"], [34, 1, 1, "", "OTXRecognizer3D"]], "otx.algo.action_classification.MoViNetHead": [[34, 2, 1, "", "forward"], [34, 2, 1, "", "init_weights"]], "otx.algo.action_classification.MoViNetRecognizer": [[34, 2, 1, "", "load_state_dict_pre_hook"], [34, 2, 1, "", "state_dict_hook"]], "otx.algo.action_classification.OTXMoViNet": [[34, 2, 1, "", "fill_conv"], [34, 2, 1, "", "fill_se_config"]], "otx.algo.action_classification.OTXOVActionCls": [[34, 2, 1, "", "postprocess"], [34, 2, 1, "", "preprocess"]], "otx.algo.classification": [[35, 1, 1, "", "DINOv2"], [35, 1, 1, "", "DINOv2RegisterClassifier"], [36, 0, 0, "-", "backbones"], [37, 0, 0, "-", "heads"], [38, 0, 0, "-", "losses"]], "otx.algo.classification.DINOv2": [[35, 2, 1, "", "forward"]], "otx.algo.classification.backbones": [[36, 1, 1, "", "OTXEfficientNet"], [36, 1, 1, "", "OTXEfficientNetV2"], [36, 1, 1, "", "OTXMobileNetV3"]], "otx.algo.classification.backbones.OTXEfficientNet": [[36, 2, 1, "", "forward"], [36, 2, 1, "", "init_weights"]], "otx.algo.classification.backbones.OTXEfficientNetV2": [[36, 2, 1, "", "init_weights"]], "otx.algo.classification.backbones.OTXMobileNetV3": [[36, 2, 1, "", "forward"], [36, 2, 1, "", "init_weights"]], "otx.algo.classification.heads": [[37, 1, 1, "", "CustomHierarchicalLinearClsHead"], [37, 1, 1, "", "CustomHierarchicalNonLinearClsHead"], [37, 1, 1, "", "CustomMultiLabelLinearClsHead"], [37, 1, 1, "", "CustomMultiLabelNonLinearClsHead"]], "otx.algo.classification.heads.CustomHierarchicalLinearClsHead": [[37, 2, 1, "", "forward"], [37, 2, 1, "", "get_valid_label_mask"], [37, 2, 1, "", "loss"], [37, 2, 1, "", "pre_logits"], [37, 2, 1, "", "predict"]], "otx.algo.classification.heads.CustomHierarchicalNonLinearClsHead": [[37, 2, 1, "", "forward"], [37, 2, 1, "", "get_valid_label_mask"], [37, 2, 1, "", "loss"], [37, 2, 1, "", "pre_logits"], [37, 2, 1, "", "predict"]], "otx.algo.classification.heads.CustomMultiLabelLinearClsHead": [[37, 2, 1, "", "get_valid_label_mask"], [37, 2, 1, "", "loss"]], "otx.algo.classification.heads.CustomMultiLabelNonLinearClsHead": [[37, 2, 1, "", "forward"], [37, 2, 1, "", "get_valid_label_mask"], [37, 2, 1, "", "loss"]], "otx.algo.classification.losses": [[38, 1, 1, "", "AsymmetricAngularLossWithIgnore"]], "otx.algo.classification.losses.AsymmetricAngularLossWithIgnore": [[38, 2, 1, "", "forward"]], "otx.algo.detection": [[39, 1, 1, "", "SSD"], [40, 0, 0, "-", "backbones"], [42, 0, 0, "-", "heads"], [43, 0, 0, "-", "losses"]], "otx.algo.detection.SSD": [[39, 2, 1, "", "get_classification_layers"], [39, 2, 1, "", "load_from_otx_v1_ckpt"], [39, 2, 1, "", "load_state_dict_pre_hook"], [39, 2, 1, "", "setup"], [39, 2, 1, "", "state_dict"]], "otx.algo.detection.backbones": [[41, 0, 0, "-", "pytorchcv_backbones"]], "otx.algo.detection.backbones.pytorchcv_backbones": [[41, 3, 1, "", "init_weights"], [41, 3, 1, "", "multioutput_forward"], [41, 3, 1, "", "replace_activation"], [41, 3, 1, "", "replace_norm"], [41, 3, 1, "", "train"]], "otx.algo.detection.heads": [[42, 1, 1, "", "CustomATSSHead"], [42, 1, 1, "", "CustomSSDHead"], [42, 1, 1, "", "SSDAnchorGeneratorClustered"]], "otx.algo.detection.heads.CustomATSSHead": [[42, 2, 1, "", "get_targets"], [42, 2, 1, "", "loss_by_feat"], [42, 2, 1, "", "loss_by_feat_single"]], "otx.algo.detection.heads.SSDAnchorGeneratorClustered": [[42, 2, 1, "", "gen_base_anchors"], [42, 2, 1, "", "gen_single_level_base_anchors"]], "otx.algo.segmentation": [[45, 0, 0, "-", "backbones"], [46, 0, 0, "-", "heads"], [47, 0, 0, "-", "losses"]], "otx.algo.segmentation.backbones": [[45, 1, 1, "", "DinoVisionTransformer"], [45, 1, 1, "", "LiteHRNet"]], "otx.algo.segmentation.backbones.DinoVisionTransformer": [[45, 2, 1, "", "forward"], [45, 2, 1, "", "init_weights"]], "otx.algo.segmentation.backbones.LiteHRNet": [[45, 2, 1, "", "forward"]], "otx.algo.segmentation.heads": [[46, 1, 1, "", "CustomFCNHead"], [46, 1, 1, "", "CustomLightHamHead"]], "otx.algo.segmentation.losses": [[47, 1, 1, "", "CrossEntropyLossWithIgnore"]], "otx.algo.segmentation.losses.CrossEntropyLossWithIgnore": [[47, 2, 1, "", "forward"], [47, 4, 1, "", "loss_name"]], "otx.algo.visual_prompting": [[48, 1, 1, "", "OTXSegmentAnything"], [48, 1, 1, "", "OTXZeroShotSegmentAnything"], [48, 1, 1, "", "SegmentAnything"], [48, 1, 1, "", "VisualPromptingDecoder"], [48, 1, 1, "", "VisualPromptingImageEncoder"], [48, 1, 1, "", "ZeroShotSegmentAnything"], [49, 0, 0, "-", "backbones"], [50, 0, 0, "-", "decoders"], [51, 0, 0, "-", "encoders"]], "otx.algo.visual_prompting.OTXZeroShotSegmentAnything": [[48, 2, 1, "", "apply_boxes"], [48, 2, 1, "", "apply_coords"], [48, 2, 1, "", "apply_image"], [48, 2, 1, "", "apply_points"], [48, 2, 1, "", "apply_prompts"], [48, 2, 1, "", "forward"], [48, 2, 1, "", "get_preprocess_shape"], [48, 2, 1, "", "infer"], [48, 2, 1, "", "initialize_reference_info"], [48, 2, 1, "", "learn"], [48, 2, 1, "", "load_latest_reference_info"], [48, 2, 1, "", "preprocess"], [48, 2, 1, "", "transforms"]], "otx.algo.visual_prompting.SegmentAnything": [[48, 2, 1, "", "calculate_dice_loss"], [48, 2, 1, "", "calculate_iou"], [48, 2, 1, "", "calculate_sigmoid_ce_focal_loss"], [48, 2, 1, "", "calculate_stability_score"], [48, 2, 1, "", "forward"], [48, 2, 1, "", "forward_inference"], [48, 2, 1, "", "forward_train"], [48, 2, 1, "", "freeze_networks"], [48, 2, 1, "", "get_prepadded_size"], [48, 2, 1, "", "load_checkpoint"], [48, 2, 1, "", "postprocess_masks"], [48, 2, 1, "", "select_masks"]], "otx.algo.visual_prompting.VisualPromptingDecoder": [[48, 2, 1, "", "apply_coords"], [48, 2, 1, "", "parameters"], [48, 2, 1, "", "postprocess"], [48, 2, 1, "", "preprocess"]], "otx.algo.visual_prompting.VisualPromptingImageEncoder": [[48, 2, 1, "", "parameters"], [48, 2, 1, "", "preprocess"]], "otx.algo.visual_prompting.ZeroShotSegmentAnything": [[48, 2, 1, "", "expand_reference_info"], [48, 2, 1, "", "infer"], [48, 2, 1, "", "learn"], [48, 2, 1, "", "pad_to_square"], [48, 2, 1, "", "set_default_config"]], "otx.algo.visual_prompting.backbones": [[49, 1, 1, "", "TinyViT"], [49, 1, 1, "", "ViT"]], "otx.algo.visual_prompting.backbones.TinyViT": [[49, 2, 1, "", "forward"], [49, 2, 1, "", "no_weight_decay_keywords"], [49, 2, 1, "", "set_layer_lr_decay"]], "otx.algo.visual_prompting.backbones.ViT": [[49, 2, 1, "", "forward"]], "otx.algo.visual_prompting.decoders": [[50, 1, 1, "", "SAMMaskDecoder"]], "otx.algo.visual_prompting.decoders.SAMMaskDecoder": [[50, 2, 1, "", "forward"], [50, 2, 1, "", "predict_masks"]], "otx.algo.visual_prompting.encoders": [[51, 1, 1, "", "SAMImageEncoder"], [51, 1, 1, "", "SAMPromptEncoder"]], "otx.algo.visual_prompting.encoders.SAMPromptEncoder": [[51, 2, 1, "", "forward"], [51, 2, 1, "", "get_dense_pe"]], "otx.cli": [[53, 0, 0, "-", "cli"], [54, 0, 0, "-", "install"], [52, 3, 1, "", "main"], [55, 0, 0, "-", "utils"]], "otx.cli.cli": [[53, 1, 1, "", "OTXCLI"]], "otx.cli.cli.OTXCLI": [[53, 2, 1, "", "add_subcommands"], [53, 2, 1, "", "engine_subcommand_parser"], [53, 2, 1, "", "engine_subcommands"], [53, 2, 1, "", "get_config_value"], [53, 2, 1, "", "get_subcommand_parser"], [53, 2, 1, "", "init_parser"], [53, 2, 1, "", "instantiate_classes"], [53, 2, 1, "", "instantiate_engine"], [53, 2, 1, "", "instantiate_model"], [53, 2, 1, "", "prepare_subcommand_kwargs"], [53, 2, 1, "", "run"], [53, 2, 1, "", "save_config"], [53, 2, 1, "", "set_seed"], [53, 2, 1, "", "update_latest"]], "otx.cli.install": [[54, 3, 1, "", "add_install_parser"], [54, 3, 1, "", "otx_install"]], "otx.cli.utils": [[55, 3, 1, "", "absolute_path"], [56, 0, 0, "-", "help_formatter"], [57, 0, 0, "-", "installation"], [58, 0, 0, "-", "jsonargparse"], [59, 0, 0, "-", "workspace"]], "otx.cli.utils.help_formatter": [[56, 1, 1, "", "CustomHelpFormatter"], [56, 3, 1, "", "get_cli_usage_docstring"], [56, 3, 1, "", "get_verbosity_subcommand"], [56, 3, 1, "", "render_guide"]], "otx.cli.utils.help_formatter.CustomHelpFormatter": [[56, 2, 1, "id0", "add_argument"], [56, 2, 1, "id1", "add_usage"], [56, 2, 1, "id2", "format_help"], [56, 5, 1, "", "subcommand"], [56, 5, 1, "", "verbosity_level"]], "otx.cli.utils.installation": [[57, 3, 1, "", "add_hardware_suffix_to_torch"], [57, 3, 1, "", "get_cuda_suffix"], [57, 3, 1, "", "get_cuda_version"], [57, 3, 1, "", "get_hardware_suffix"], [57, 3, 1, "", "get_mmcv_install_args"], [57, 3, 1, "", "get_module_version"], [57, 3, 1, "", "get_requirements"], [57, 3, 1, "", "get_torch_install_args"], [57, 3, 1, "", "mim_installation"], [57, 3, 1, "", "parse_requirements"], [57, 3, 1, "", "patch_mmaction2"], [57, 3, 1, "", "update_cuda_version_with_available_torch_cuda_build"]], "otx.cli.utils.jsonargparse": [[58, 3, 1, "", "add_list_type_arguments"], [58, 3, 1, "", "apply_config"], [58, 3, 1, "", "flatten_dict"], [58, 3, 1, "", "get_configuration"], [58, 3, 1, "", "get_defaults_with_overrides"], [58, 3, 1, "", "get_instantiated_classes"], [58, 3, 1, "", "get_short_docstring"], [58, 3, 1, "", "list_override"], [58, 3, 1, "", "patch_update_configs"], [58, 3, 1, "", "update"]], "otx.cli.utils.workspace": [[59, 1, 1, "", "Workspace"]], "otx.core": [[61, 0, 0, "-", "config"], [66, 0, 0, "-", "data"], [67, 0, 0, "-", "exporter"], [74, 0, 0, "-", "metrics"], [75, 0, 0, "-", "model"], [91, 0, 0, "-", "schedulers"], [92, 0, 0, "-", "types"], [93, 0, 0, "-", "utils"]], "otx.core.config": [[61, 3, 1, "", "any_representer"], [61, 3, 1, "", "as_int_tuple"], [61, 3, 1, "", "as_torch_dtype"], [62, 0, 0, "-", "data"], [63, 0, 0, "-", "device"], [61, 3, 1, "", "dtype_representer"], [64, 0, 0, "-", "explain"], [65, 0, 0, "-", "hpo"], [61, 3, 1, "", "ignore_aliases"], [61, 3, 1, "", "register_configs"]], "otx.core.config.data": [[62, 1, 1, "", "DataModuleConfig"], [62, 1, 1, "", "SamplerConfig"], [62, 1, 1, "", "SubsetConfig"], [62, 1, 1, "", "TileConfig"], [62, 1, 1, "", "VisualPromptingConfig"]], "otx.core.config.data.SubsetConfig": [[62, 5, 1, "", "batch_size"], [62, 5, 1, "", "num_workers"], [62, 5, 1, "", "subset_name"], [62, 5, 1, "", "transform_lib_type"], [62, 5, 1, "", "transforms"]], "otx.core.config.device": [[63, 1, 1, "", "DeviceConfig"]], "otx.core.config.explain": [[64, 1, 1, "", "ExplainConfig"]], "otx.core.config.hpo": [[65, 1, 1, "", "HpoConfig"]], "otx.core.data": [[66, 1, 1, "", "OTXDataModule"], [66, 1, 1, "", "OTXDatasetFactory"], [66, 1, 1, "", "TransformLibFactory"]], "otx.core.data.OTXDataModule": [[66, 4, 1, "", "hparams_initial"], [66, 2, 1, "", "predict_dataloader"], [66, 2, 1, "", "setup"], [66, 2, 1, "", "teardown"], [66, 2, 1, "", "test_dataloader"], [66, 2, 1, "", "train_dataloader"], [66, 2, 1, "", "val_dataloader"]], "otx.core.data.OTXDatasetFactory": [[66, 2, 1, "", "create"]], "otx.core.data.TransformLibFactory": [[66, 2, 1, "", "generate"]], "otx.core.exporter": [[68, 0, 0, "-", "base"], [69, 0, 0, "-", "exportable_code"], [71, 0, 0, "-", "mmdeploy"], [72, 0, 0, "-", "native"], [73, 0, 0, "-", "visual_prompting"]], "otx.core.exporter.base": [[68, 1, 1, "", "OTXModelExporter"]], "otx.core.exporter.base.OTXModelExporter": [[68, 2, 1, "", "export"], [68, 2, 1, "", "to_exportable_code"], [68, 2, 1, "", "to_onnx"], [68, 2, 1, "", "to_openvino"]], "otx.core.exporter.exportable_code": [[70, 0, 0, "-", "demo"]], "otx.core.exporter.mmdeploy": [[71, 1, 1, "", "MMdeployExporter"], [71, 3, 1, "", "load_mmconfig_from_pkg"], [71, 3, 1, "", "mmdeploy_init_model_helper"], [71, 3, 1, "", "patch_input_shape"], [71, 3, 1, "", "patch_ir_scale_factor"], [71, 3, 1, "", "use_temporary_default_scope"]], "otx.core.exporter.mmdeploy.MMdeployExporter": [[71, 2, 1, "", "cvt_torch2onnx_partition"], [71, 2, 1, "", "to_onnx"], [71, 2, 1, "", "to_openvino"]], "otx.core.exporter.native": [[72, 1, 1, "", "OTXNativeModelExporter"]], "otx.core.exporter.native.OTXNativeModelExporter": [[72, 2, 1, "", "to_onnx"], [72, 2, 1, "", "to_openvino"]], "otx.core.exporter.visual_prompting": [[73, 1, 1, "", "OTXVisualPromptingModelExporter"]], "otx.core.exporter.visual_prompting.OTXVisualPromptingModelExporter": [[73, 2, 1, "", "export"], [73, 2, 1, "", "get_onnx_dummy_inputs"], [73, 2, 1, "", "to_onnx"], [73, 2, 1, "", "to_openvino"]], "otx.core.model": [[76, 0, 0, "-", "action_classification"], [77, 0, 0, "-", "action_detection"], [78, 0, 0, "-", "anomaly"], [79, 0, 0, "-", "base"], [80, 0, 0, "-", "classification"], [81, 0, 0, "-", "detection"], [82, 0, 0, "-", "instance_segmentation"], [83, 0, 0, "-", "rotated_detection"], [84, 0, 0, "-", "segmentation"], [85, 0, 0, "-", "utils"], [90, 0, 0, "-", "visual_prompting"]], "otx.core.model.action_classification": [[76, 1, 1, "", "MMActionCompatibleModel"], [76, 1, 1, "", "OTXActionClsModel"], [76, 1, 1, "", "OVActionClsModel"]], "otx.core.model.action_classification.OVActionClsModel": [[76, 4, 1, "", "model_adapter_parameters"], [76, 2, 1, "", "transform_fn"]], "otx.core.model.action_detection": [[77, 1, 1, "", "MMActionCompatibleModel"], [77, 1, 1, "", "OTXActionDetModel"]], "otx.core.model.anomaly": [[78, 1, 1, "", "OTXAnomaly"]], "otx.core.model.anomaly.OTXAnomaly": [[78, 2, 1, "", "configure_callbacks"], [78, 2, 1, "", "configure_optimizers"], [78, 2, 1, "", "export"], [78, 2, 1, "", "forward"], [78, 4, 1, "", "input_size"], [78, 4, 1, "", "label_info"], [78, 2, 1, "", "load_state_dict"], [78, 2, 1, "", "on_predict_batch_end"], [78, 2, 1, "", "on_test_batch_end"], [78, 2, 1, "", "predict_step"], [78, 2, 1, "", "setup"], [78, 2, 1, "", "state_dict"], [78, 4, 1, "", "task"], [78, 4, 1, "", "trainable_model"]], "otx.core.model.base": [[79, 1, 1, "", "OTXModel"], [79, 1, 1, "", "OVModel"]], "otx.core.model.base.OTXModel": [[79, 2, 1, "", "configure_metric"], [79, 2, 1, "", "configure_optimizers"], [79, 4, 1, "id0", "explain_mode"], [79, 2, 1, "", "export"], [79, 2, 1, "", "forward"], [79, 2, 1, "", "forward_explain"], [79, 2, 1, "", "forward_tiles"], [79, 2, 1, "", "get_explain_fn"], [79, 4, 1, "", "label_info"], [79, 2, 1, "", "load_from_otx_v1_ckpt"], [79, 2, 1, "", "load_state_dict"], [79, 2, 1, "", "load_state_dict_pre_hook"], [79, 2, 1, "", "lr_scheduler_step"], [79, 2, 1, "", "map_class_names"], [79, 4, 1, "", "metric"], [79, 4, 1, "", "num_classes"], [79, 2, 1, "", "on_test_epoch_end"], [79, 2, 1, "", "on_test_epoch_start"], [79, 2, 1, "", "on_test_start"], [79, 2, 1, "", "on_validation_epoch_end"], [79, 2, 1, "", "on_validation_epoch_start"], [79, 2, 1, "", "on_validation_start"], [79, 2, 1, "", "optimize"], [79, 2, 1, "", "predict_step"], [79, 2, 1, "", "register_load_state_dict_pre_hook"], [79, 2, 1, "", "setup"], [79, 2, 1, "", "state_dict"], [79, 2, 1, "", "test_step"], [79, 2, 1, "", "training_step"], [79, 2, 1, "", "validation_step"]], "otx.core.model.base.OVModel": [[79, 2, 1, "", "forward"], [79, 2, 1, "", "forward_explain"], [79, 4, 1, "", "model_adapter_parameters"], [79, 2, 1, "", "optimize"], [79, 2, 1, "", "transform_fn"]], "otx.core.model.classification": [[80, 1, 1, "", "MMPretrainHlabelClsModel"], [80, 1, 1, "", "MMPretrainMulticlassClsModel"], [80, 1, 1, "", "MMPretrainMultilabelClsModel"], [80, 1, 1, "", "OTXHlabelClsModel"], [80, 1, 1, "", "OTXMulticlassClsModel"], [80, 1, 1, "", "OTXMultilabelClsModel"], [80, 1, 1, "", "OVHlabelClassificationModel"], [80, 1, 1, "", "OVMulticlassClassificationModel"], [80, 1, 1, "", "OVMultilabelClassificationModel"]], "otx.core.model.detection": [[81, 1, 1, "", "ExplainableOTXDetModel"], [81, 1, 1, "", "MMDetCompatibleModel"], [81, 1, 1, "", "OTXDetectionModel"], [81, 1, 1, "", "OVDetectionModel"]], "otx.core.model.detection.ExplainableOTXDetModel": [[81, 2, 1, "", "forward_explain"], [81, 2, 1, "", "get_explain_fn"], [81, 2, 1, "", "get_num_anchors"]], "otx.core.model.detection.OTXDetectionModel": [[81, 2, 1, "", "forward_tiles"], [81, 2, 1, "", "load_state_dict"]], "otx.core.model.instance_segmentation": [[82, 1, 1, "", "ExplainableOTXInstanceSegModel"], [82, 1, 1, "", "MMDetInstanceSegCompatibleModel"], [82, 1, 1, "", "OTXInstanceSegModel"], [82, 1, 1, "", "OVInstanceSegmentationModel"]], "otx.core.model.instance_segmentation.ExplainableOTXInstanceSegModel": [[82, 2, 1, "", "forward_explain"], [82, 2, 1, "", "get_explain_fn"]], "otx.core.model.instance_segmentation.OTXInstanceSegModel": [[82, 2, 1, "", "forward_tiles"], [82, 2, 1, "", "load_state_dict"]], "otx.core.model.rotated_detection": [[83, 1, 1, "", "MMDetRotatedDetModel"], [83, 1, 1, "", "OTXRotatedDetModel"], [83, 1, 1, "", "OVRotatedDetectionModel"]], "otx.core.model.rotated_detection.OTXRotatedDetModel": [[83, 2, 1, "", "predict_step"]], "otx.core.model.segmentation": [[84, 1, 1, "", "MMSegCompatibleModel"], [84, 1, 1, "", "OTXSegmentationModel"], [84, 1, 1, "", "OVSegmentationModel"]], "otx.core.model.utils": [[86, 0, 0, "-", "mmaction"], [87, 0, 0, "-", "mmdet"], [88, 0, 0, "-", "mmpretrain"], [89, 0, 0, "-", "mmseg"]], "otx.core.model.utils.mmaction": [[86, 1, 1, "", "ActionDataPreprocessor"], [86, 3, 1, "", "create_model"]], "otx.core.model.utils.mmaction.ActionDataPreprocessor": [[86, 4, 1, "", "device"]], "otx.core.model.utils.mmdet": [[87, 1, 1, "", "DetDataPreprocessor"], [87, 3, 1, "", "create_model"]], "otx.core.model.utils.mmdet.DetDataPreprocessor": [[87, 4, 1, "", "device"]], "otx.core.model.utils.mmpretrain": [[88, 1, 1, "", "ClsDataPreprocessor"], [88, 1, 1, "", "ExplainableMixInMMPretrainModel"], [88, 3, 1, "", "create_model"]], "otx.core.model.utils.mmpretrain.ClsDataPreprocessor": [[88, 4, 1, "", "device"]], "otx.core.model.utils.mmpretrain.ExplainableMixInMMPretrainModel": [[88, 2, 1, "", "forward_explain"], [88, 2, 1, "", "get_explain_fn"], [88, 4, 1, "", "has_gap"], [88, 2, 1, "", "head_forward_fn"]], "otx.core.model.utils.mmseg": [[89, 1, 1, "", "SegDataPreProcessor"], [89, 3, 1, "", "create_model"], [89, 3, 1, "", "stack_batch"]], "otx.core.model.utils.mmseg.SegDataPreProcessor": [[89, 4, 1, "", "device"], [89, 2, 1, "", "forward"]], "otx.core.model.visual_prompting": [[90, 1, 1, "", "OTXVisualPromptingModel"], [90, 1, 1, "", "OTXZeroShotVisualPromptingModel"], [90, 1, 1, "", "OVVisualPromptingModel"], [90, 1, 1, "", "OVZeroShotVisualPromptingModel"]], "otx.core.model.visual_prompting.OTXVisualPromptingModel": [[90, 2, 1, "", "test_step"], [90, 2, 1, "", "validation_step"]], "otx.core.model.visual_prompting.OTXZeroShotVisualPromptingModel": [[90, 2, 1, "", "configure_optimizers"], [90, 2, 1, "", "on_predict_start"], [90, 2, 1, "", "on_test_start"], [90, 2, 1, "", "on_train_epoch_end"], [90, 2, 1, "", "on_train_epoch_start"], [90, 2, 1, "", "on_train_start"], [90, 2, 1, "", "on_validation_epoch_end"], [90, 2, 1, "", "on_validation_epoch_start"], [90, 2, 1, "", "test_step"], [90, 2, 1, "", "training_step"], [90, 2, 1, "", "validation_step"]], "otx.core.model.visual_prompting.OVVisualPromptingModel": [[90, 2, 1, "", "forward"], [90, 2, 1, "", "optimize"], [90, 2, 1, "", "test_step"], [90, 2, 1, "", "validation_step"]], "otx.core.model.visual_prompting.OVZeroShotVisualPromptingModel": [[90, 2, 1, "", "expand_reference_info"], [90, 2, 1, "", "forward"], [90, 2, 1, "", "infer"], [90, 2, 1, "", "initialize_reference_info"], [90, 2, 1, "", "learn"], [90, 2, 1, "", "load_latest_reference_info"], [90, 2, 1, "", "test_step"], [90, 2, 1, "", "validation_step"]], "otx.core.schedulers": [[91, 1, 1, "", "LinearWarmupScheduler"], [91, 1, 1, "", "LinearWarmupSchedulerCallable"]], "otx.core.schedulers.LinearWarmupScheduler": [[91, 4, 1, "", "activated"], [91, 2, 1, "", "step"]], "otx.core.schedulers.LinearWarmupSchedulerCallable": [[91, 2, 1, "", "__call__"]], "otx.core.types": [[92, 1, 1, "", "HLabelInfo"], [92, 1, 1, "", "LabelInfo"], [92, 1, 1, "", "NullLabelInfo"], [92, 1, 1, "", "OTXTaskType"], [92, 1, 1, "", "SegLabelInfo"]], "otx.core.types.HLabelInfo": [[92, 2, 1, "", "as_head_config_dict"], [92, 2, 1, "", "from_dm_label_groups"], [92, 2, 1, "", "from_json"]], "otx.core.types.LabelInfo": [[92, 2, 1, "", "as_dict"], [92, 2, 1, "", "from_dm_label_groups"], [92, 2, 1, "", "from_json"], [92, 2, 1, "", "from_num_classes"], [92, 4, 1, "", "num_classes"], [92, 2, 1, "", "to_json"]], "otx.core.types.NullLabelInfo": [[92, 2, 1, "", "from_json"]], "otx.core.utils": [[94, 0, 0, "-", "build"], [95, 0, 0, "-", "cache"], [96, 0, 0, "-", "config"], [97, 0, 0, "-", "imports"], [98, 0, 0, "-", "instantiators"], [99, 0, 0, "-", "mask_util"], [100, 0, 0, "-", "miscellaneous"], [101, 0, 0, "-", "pylogger"], [102, 0, 0, "-", "tile_merge"], [103, 0, 0, "-", "utils"]], "otx.core.utils.build": [[94, 3, 1, "", "build_mm_model"], [94, 3, 1, "", "get_classification_layers"], [94, 3, 1, "", "get_default_num_async_infer_requests"], [94, 3, 1, "", "modify_num_classes"]], "otx.core.utils.cache": [[95, 1, 1, "", "TrainerArgumentsCache"]], "otx.core.utils.cache.TrainerArgumentsCache": [[95, 4, 1, "", "args"], [95, 2, 1, "", "get_trainer_constructor_args"], [95, 2, 1, "", "requires_update"], [95, 2, 1, "", "update"]], "otx.core.utils.config": [[96, 3, 1, "", "convert_conf_to_mmconfig_dict"], [96, 3, 1, "", "inplace_num_classes"], [96, 3, 1, "", "mmconfig_dict_to_dict"], [96, 3, 1, "", "to_list"], [96, 3, 1, "", "to_tuple"]], "otx.core.utils.imports": [[97, 3, 1, "", "get_otx_root_path"]], "otx.core.utils.instantiators": [[98, 3, 1, "", "instantiate_callbacks"], [98, 3, 1, "", "instantiate_loggers"], [98, 3, 1, "", "instantiate_sampler"], [98, 3, 1, "", "partial_instantiate_class"]], "otx.core.utils.mask_util": [[99, 3, 1, "", "encode_rle"], [99, 3, 1, "", "polygon_to_bitmap"], [99, 3, 1, "", "polygon_to_rle"]], "otx.core.utils.miscellaneous": [[100, 3, 1, "", "ensure_callable"]], "otx.core.utils.pylogger": [[101, 3, 1, "", "get_pylogger"]], "otx.core.utils.tile_merge": [[102, 1, 1, "", "DetectionTileMerge"], [102, 1, 1, "", "InstanceSegTileMerge"], [102, 1, 1, "", "TileMerge"]], "otx.core.utils.tile_merge.DetectionTileMerge": [[102, 2, 1, "", "merge"]], "otx.core.utils.tile_merge.InstanceSegTileMerge": [[102, 2, 1, "", "merge"]], "otx.core.utils.tile_merge.TileMerge": [[102, 2, 1, "", "merge"], [102, 2, 1, "", "nms_postprocess"]], "otx.core.utils.utils": [[103, 3, 1, "", "get_adaptive_num_workers"], [103, 3, 1, "", "get_idx_list_per_classes"], [103, 3, 1, "", "get_mean_std_from_data_processing"], [103, 3, 1, "", "is_ckpt_for_finetuning"], [103, 3, 1, "", "is_ckpt_from_otx_v1"]], "otx.data": [[104, 1, 1, "", "AnomalyDataModule"]], "otx.engine": [[105, 1, 1, "", "Engine"]], "otx.engine.Engine": [[105, 4, 1, "", "datamodule"], [105, 4, 1, "", "device"], [105, 2, 1, "", "explain"], [105, 2, 1, "", "export"], [105, 2, 1, "", "from_config"], [105, 2, 1, "", "from_model_name"], [105, 4, 1, "", "model"], [105, 2, 1, "", "optimize"], [105, 2, 1, "", "predict"], [105, 2, 1, "", "test"], [105, 2, 1, "", "train"], [105, 4, 1, "", "trainer"], [105, 4, 1, "", "trainer_params"], [105, 4, 1, "", "work_dir"]], "otx.hpo": [[106, 1, 1, "", "HyperBand"], [106, 1, 1, "", "TrialStatus"], [106, 3, 1, "", "run_hpo_loop"]], "otx.hpo.HyperBand": [[106, 2, 1, "", "auto_config"], [106, 2, 1, "", "get_best_config"], [106, 2, 1, "", "get_next_sample"], [106, 2, 1, "", "get_progress"], [106, 2, 1, "", "is_done"], [106, 2, 1, "", "print_result"], [106, 2, 1, "", "report_score"], [106, 2, 1, "", "save_results"]], "otx.tools": [[109, 0, 0, "-", "converter"], [110, 0, 0, "-", "translate_mmrecipe"]], "otx.tools.converter": [[109, 1, 1, "", "ConfigConverter"]], "otx.tools.converter.ConfigConverter": [[109, 2, 1, "", "convert"], [109, 2, 1, "", "instantiate"]], "otx.utils": [[111, 3, 1, "", "append_main_proc_signal_handler"], [111, 3, 1, "", "append_signal_handler"]]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:function", "4": "py:property", "5": "py:attribute"}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "function", "Python function"], "4": ["py", "property", "Python property"], "5": ["py", "attribute", "Python attribute"]}, "titleterms": {"adapt": [0, 1], "train": [0, 6, 7, 12, 27, 28, 29, 118, 119, 120, 121, 122, 123, 124, 125, 126, 128], "auto": [1, 27], "configur": [1, 4, 7, 27, 114], "batch": 1, "size": [1, 7], "num_work": 1, "class": [2, 15, 27, 28, 29], "increment": 2, "sampler": 2, "balanc": 2, "fast": 3, "data": [3, 62, 66, 104], "load": 3, "cach": [3, 95], "In": 3, "memori": 3, "hyperparamet": 4, "optim": [4, 6, 7, 27, 28, 118, 120, 121, 122, 124, 125, 126], "algorithm": [4, 8, 17], "how": [4, 114], "hyper": 4, "paramet": [4, 7, 12], "addit": 5, "featur": [5, 30], "model": [6, 7, 9, 10, 12, 13, 15, 16, 19, 21, 22, 23, 25, 27, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 118, 119, 121, 122, 124, 125, 126], "post": 6, "quantiz": 6, "tool": [6, 108, 109, 110], "improv": 7, "small": 7, "object": [7, 18, 19, 122], "detect": [7, 8, 10, 12, 18, 19, 39, 40, 41, 42, 43, 81, 119, 120, 122], "imag": 7, "tile": 7, "strategi": 7, "enabl": 7, "via": 7, "otx": [7, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 114], "overlap": 7, "sampl": 7, "manual": 7, "run": [7, 29], "openvino": [7, 29, 128], "export": [7, 27, 28, 67, 68, 69, 70, 71, 72, 73, 117, 118, 120, 121, 122, 124, 125, 126], "explain": [8, 64], "ai": 8, "xai": [8, 27, 116], "classif": [8, 9, 12, 13, 14, 15, 16, 35, 36, 37, 38, 80, 118, 120, 121], "instanc": [8, 21, 124], "segment": [8, 12, 20, 21, 22, 44, 45, 46, 47, 84, 120, 124, 125], "action": [9, 10, 11, 118, 119], "dataset": [9, 10, 12, 13, 15, 16, 19, 21, 22, 23, 25, 27, 28, 118, 119, 120, 121, 122, 124, 125, 126], "format": [9, 10, 12, 13, 15, 16, 19, 21, 22, 23, 25], "recognit": 11, "anomali": [12, 78, 120], "task": 12, "type": [12, 92], "cluster": 12, "base": [12, 68, 79, 127], "padim": 12, "knowledg": 12, "distil": 12, "stfpm": 12, "reconstruct": 12, "dr\u00e6m": 12, "hierarch": 13, "multi": [15, 16], "label": 16, "content": [17, 30], "semant": [22, 125], "visual": [23, 24, 25, 126], "prompt": [23, 24, 25, 126], "fine": 23, "tune": 23, "zero": 25, "shot": 25, "learn": 25, "simpl": 25, "tutori": [25, 115, 116, 120, 123, 127], "product": 26, "design": 26, "our": 26, "mission": 26, "principl": 26, "core": [26, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103], "entrypoint": 26, "svg": [27, 28, 29], "version": [27, 28, 29], "1": [27, 28, 29, 113], "width": [27, 28, 29], "0em": [27, 28, 29], "height": [27, 28, 29], "sd": [27, 28, 29], "octicon": [27, 28, 29], "code": 27, "squar": 27, "viewbox": [27, 28, 29], "0": [27, 28, 29, 113], "16": [27, 28, 29], "aria": [27, 28, 29], "hidden": [27, 28, 29], "true": [27, 28, 29], "path": [27, 28, 29], "fill": [27, 28, 29], "rule": [27, 28, 29], "evenodd": [27, 28, 29], "d": [27, 28, 29], "m1": 27, "75": [27, 28, 29], "5a": [27, 28], "25": [27, 28, 29], "00": [27, 28, 29], "25v12": 27, "5c0": [27, 28], "138": [27, 28], "112": [27, 28], "25h12": [27, 28], "25v1": 27, "75a": [27, 28], "25h1": [27, 28], "75zm0": 27, "75c0": [27, 28], "784": [27, 28], "0h12": 27, "5c15": 27, "216": 27, "75v12": 27, "5a1": [27, 28], "0114": [27, 28], "16h1": 27, "75a1": [27, 28], "010": [27, 28], "14": [27, 28], "75zm9": 27, "22": [27, 28], "3": [27, 28, 29, 113], "72a": 27, "000": [27, 28], "06l10": 27, "69": 27, "8": [27, 28, 29], "9": 27, "47a": 27, "101": 27, "06": [27, 28], "06l2": [27, 28], "2a": 27, "06l": 27, "2": [27, 28, 29, 113], "0zm6": 27, "78": 27, "6": [27, 28], "53a": 27, "06l5": [27, 28], "31": 27, "8l1": 27, "47": 27, "47z": 27, "api": [27, 112], "quick": 27, "guid": [27, 28, 31], "prepar": [27, 118, 119, 120, 121, 122, 124, 125, 126], "start": 27, "check": 27, "avail": 27, "recip": [27, 107, 114], "engin": [27, 105], "evalu": [27, 28, 118, 119, 120, 121, 122, 126], "termin": 28, "m0": 28, "1h12": 28, "5c": 28, "966": 28, "75v10": 28, "15h1": 28, "13": 28, "25v2": 28, "75zm1": 28, "25a": 28, "25v10": 28, "75zm7": 28, "8a": 28, "01": [28, 29], "53l": 28, "11": 28, "44": 28, "72": 28, "28a": 28, "111": 28, "25c": 28, "141": 28, "331": 28, "53zm1": 28, "5": [28, 29, 113], "5h3a": 28, "5h": 28, "3z": 28, "cli": [28, 52, 53, 54, 55, 56, 57, 58, 59], "help": 28, "print_config": 28, "find": 28, "handl": 28, "explan": 28, "workspac": [28, 59], "packag": 29, "m8": 29, "878": 29, "392a1": 29, "756": 29, "0l": 29, "045a1": 29, "001": 29, "4": [29, 113], "951v6": 29, "098c0": 29, "624": 29, "332": 29, "872": 29, "514l5": 29, "0l5": 29, "045c": 29, "54": 29, "313": 29, "89": 29, "514v4": 29, "951c0": 29, "514l8": 29, "392zm7": 29, "875": 29, "69a": 29, "0l4": 29, "63": 29, "685l8": 29, "7": 29, "133": 29, "245": 29, "375l4": 29, "685zm2": 29, "677v5": 29, "372c0": 29, "09": 29, "047": 29, "171": 29, "125": 29, "216l4": 29, "625": 29, "683v8": 29, "432l2": 29, "677zm6": 29, "271l4": 29, "683a": 29, "216v5": 29, "677l8": 29, "432v5": 29, "516z": 29, "instal": [29, 54, 57], "prerequisit": 29, "extens": [29, 128], "user": 29, "cuda": 29, "cpu": 29, "xpu": 29, "devic": [29, 63], "develop": [29, 128], "us": 29, "docker": 29, "test": 29, "troubleshoot": 29, "introduct": 30, "kei": 30, "document": [30, 128], "releas": [31, 113], "note": 31, "algo": [33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51], "action_classif": [34, 76], "backbon": [36, 40, 41, 45, 49], "head": [37, 42, 46], "loss": [38, 43, 47], "pytorchcv_backbon": 41, "visual_prompt": [48, 49, 50, 51, 73, 90], "decod": 50, "encod": 51, "util": [55, 56, 57, 58, 59, 85, 86, 87, 88, 89, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 111], "help_formatt": 56, "jsonargpars": 58, "config": [61, 62, 63, 64, 65, 96], "hpo": [65, 106], "exportable_cod": [69, 70], "demo": [70, 117], "mmdeploi": 71, "nativ": 72, "metric": 74, "action_detect": 77, "instance_segment": 82, "rotated_detect": 83, "mmaction": 86, "mmdet": 87, "mmpretrain": 88, "mmseg": 89, "schedul": 91, "build": 94, "import": 97, "instanti": 98, "mask_util": 99, "miscellan": 100, "pylogg": 101, "tile_merg": 102, "convert": 109, "translate_mmrecip": 110, "refer": 112, "v2": 113, "1q24": 113, "v1": 113, "4q23": 113, "3q23": 113, "2q23": 113, "1q23": 113, "write": 114, "advanc": 115, "deploi": 117, "demonstr": 117, "setup": [118, 119, 120, 121, 122, 124, 125, 126], "virtual": [118, 119, 120, 121, 122, 124, 125, 126], "environ": [118, 119, 120, 121, 122, 124, 125, 126], "deploy": 123, "valid": [124, 125], "welcom": 128, "intel": 128, "": 128, "indic": 128, "tabl": 128}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1, "sphinx.ext.intersphinx": 1, "sphinx": 60}, "alltitles": {"Adaptive Training": [[0, "adaptive-training"]], "Auto-configuration": [[1, "auto-configuration"]], "Auto-adapt batch size": [[1, "auto-adapt-batch-size"]], "Auto-adapt num_workers": [[1, "auto-adapt-num-workers"]], "Class-Incremental Sampler": [[2, "class-incremental-sampler"]], "Balanced Sampler": [[2, "balanced-sampler"]], "Fast Data Loading": [[3, "fast-data-loading"]], "Caching": [[3, "caching"]], "In-Memory Caching": [[3, "in-memory-caching"]], "Hyperparameters Optimization": [[4, "hyperparameters-optimization"]], "Algorithm": [[4, "algorithm"]], "How to configure hyper-parameter optimization": [[4, "how-to-configure-hyper-parameter-optimization"]], "Additional Features": [[5, "additional-features"]], "Models Optimization": [[6, "models-optimization"]], "Post-Training Quantization Tool": [[6, "post-training-quantization-tool"]], "Improve Small Object Detection with Image Tiling": [[7, "improve-small-object-detection-with-image-tiling"]], "Tiling Strategies": [[7, "tiling-strategies"]], "Enable Tiling via OTX Training": [[7, "enable-tiling-via-otx-training"]], "Tile Size and Tile Overlap Optimization": [[7, "tile-size-and-tile-overlap-optimization"]], "Tiling Sampling Strategy": [[7, "tiling-sampling-strategy"]], "Manual Tiling Parameter Configuration": [[7, "manual-tiling-parameter-configuration"]], "Run Tiling on OpenVINO Exported Model": [[7, "run-tiling-on-openvino-exported-model"]], "Explainable AI (XAI)": [[8, "explainable-ai-xai"]], "XAI algorithms for classification": [[8, "xai-algorithms-for-classification"]], "XAI algorithms for detection": [[8, "xai-algorithms-for-detection"]], "XAI algorithms for instance segmentation": [[8, "xai-algorithms-for-instance-segmentation"]], "Action Classification": [[9, "action-classification"]], "Dataset Format": [[9, "dataset-format"], [10, "dataset-format"], [12, "dataset-format"], [13, "dataset-format"], [15, "dataset-format"], [16, "dataset-format"], [19, "dataset-format"], [21, "dataset-format"], [22, "dataset-format"], [23, "dataset-format"], [25, "dataset-format"]], "Models": [[9, "models"], [10, "models"], [12, "models"], [13, "models"], [15, "models"], [16, "models"], [19, "models"], [21, "models"], [22, "models"], [23, "models"], [25, "models"]], "Action Detection": [[10, "action-detection"]], "Action Recognition": [[11, "action-recognition"]], "Anomaly Detection": [[12, "anomaly-detection"], [12, "id1"]], "Task Types": [[12, "task-types"]], "Anomaly Classification": [[12, "anomaly-classification"]], "Anomaly Segmentation": [[12, "anomaly-segmentation"]], "Clustering-based Models": [[12, "clustering-based-models"]], "PADIM": [[12, "id7"]], "Parameters": [[12, "parameters"]], "Knowledge Distillation-based Models": [[12, "knowledge-distillation-based-models"]], "STFPM": [[12, "id8"]], "Training Parameters": [[12, "training-parameters"], [12, "id9"]], "Reconstruction-based Models": [[12, "reconstruction-based-models"]], "DR\u00c6M": [[12, "draem"]], "Hierarchical Classification": [[13, "hierarchical-classification"]], "Classification": [[14, "classification"]], "Multi-class Classification": [[15, "multi-class-classification"]], "Multi-label Classification": [[16, "multi-label-classification"]], "Algorithms": [[17, "algorithms"]], "Contents": [[17, "contents"]], "Object Detection": [[18, "object-detection"], [19, "object-detection"]], "Segmentation": [[20, "segmentation"]], "Instance Segmentation": [[21, "instance-segmentation"]], "Semantic Segmentation": [[22, "semantic-segmentation"]], "Visual Prompting (Fine-tuning)": [[23, "visual-prompting-fine-tuning"]], "Visual Prompting": [[24, "visual-prompting"]], "Visual Prompting (Zero-shot learning)": [[25, "visual-prompting-zero-shot-learning"]], "Simple tutorial": [[25, "simple-tutorial"]], "Product Design": [[26, "product-design"]], "Our Product Mission": [[26, "our-product-mission"]], "Product Design Principles": [[26, "product-design-principles"]], "Core": [[26, "core"]], "Entrypoint": [[26, "entrypoint"]], " API Quick-Guide": [[27, "svg-version-1-1-width-1-0em-height-1-0em-class-sd-octicon-sd-octicon-code-square-viewbox-0-0-16-16-aria-hidden-true-path-fill-rule-evenodd-d-m1-75-1-5a-25-25-0-00-25-25v12-5c0-138-112-25-25-25h12-5a-25-25-0-00-25-25v1-75a-25-25-0-00-25-25h1-75zm0-1-75c0-784-784-0-1-75-0h12-5c15-216-0-16-784-16-1-75v12-5a1-75-1-75-0-0114-25-16h1-75a1-75-1-75-0-010-14-25v1-75zm9-22-3-72a-75-75-0-000-1-06l10-69-8-9-22-9-47a-75-75-0-101-06-1-06l2-2a-75-75-0-000-1-06l-2-2a-75-75-0-00-1-06-0zm6-78-6-53a-75-75-0-00-1-06-1-06l-2-2a-75-75-0-000-1-06l2-2a-75-75-0-101-06-1-06l5-31-8l1-47-1-47z-path-svg-api-quick-guide"]], "Dataset preparation": [[27, "dataset-preparation"], [118, "dataset-preparation"], [119, "dataset-preparation"], [121, "dataset-preparation"], [122, "dataset-preparation"], [124, "dataset-preparation"], [125, "dataset-preparation"], [126, "dataset-preparation"]], "Quick Start with auto-configuration": [[27, "quick-start-with-auto-configuration"]], "Check Available Model Recipes": [[27, "check-available-model-recipes"]], "Engine": [[27, "engine"]], "Training": [[27, "training"], [28, "training"], [118, "training"], [119, "training"], [120, "training"], [121, "training"], [122, "training"], [124, "training"], [125, "training"], [126, "training"]], "Evaluation": [[27, "evaluation"], [28, "evaluation"], [118, "evaluation"], [119, "evaluation"], [120, "evaluation"], [121, "evaluation"], [122, "evaluation"], [126, "evaluation"]], "Exporting": [[27, "exporting"], [28, "exporting"]], "XAI": [[27, "xai"]], "Optimization": [[27, "optimization"], [28, "optimization"], [118, "optimization"], [120, "optimization"], [121, "optimization"], [122, "optimization"], [124, "optimization"], [125, "optimization"], [126, "optimization"]], " CLI Guide": [[28, "svg-version-1-1-width-1-0em-height-1-0em-class-sd-octicon-sd-octicon-terminal-viewbox-0-0-16-16-aria-hidden-true-path-fill-rule-evenodd-d-m0-2-75c0-1-784-784-1-1-75-1h12-5c-966-0-1-75-784-1-75-1-75v10-5a1-75-1-75-0-0114-25-15h1-75a1-75-1-75-0-010-13-25v2-75zm1-75-25a-25-25-0-00-25-25v10-5c0-138-112-25-25-25h12-5a-25-25-0-00-25-25v2-75a-25-25-0-00-25-25h1-75zm7-25-8a-75-75-0-01-22-53l-2-25-2-25a-75-75-0-11-1-06-1-06l5-44-8-3-72-6-28a-75-75-0-111-06-1-06l2-25-2-25c-141-14-22-331-22-53zm1-5-1-5a-75-75-0-000-1-5h3a-75-75-0-000-1-5h-3z-path-svg-cli-guide"]], "Help": [[28, "help"]], "print_config": [[28, "print-config"]], "Find": [[28, "find"]], "Dataset handling": [[28, "dataset-handling"]], "Explanation": [[28, "explanation"]], "Workspace": [[28, "workspace"]], " Installation": [[29, "svg-version-1-1-width-1-0em-height-1-0em-class-sd-octicon-sd-octicon-package-viewbox-0-0-16-16-aria-hidden-true-path-fill-rule-evenodd-d-m8-878-392a1-75-1-75-0-00-1-756-0l-5-25-3-045a1-75-1-75-0-001-4-951v6-098c0-624-332-1-2-872-1-514l5-25-3-045a1-75-1-75-0-001-756-0l5-25-3-045c-54-313-872-89-872-1-514v4-951c0-624-332-1-2-872-1-514l8-878-392zm7-875-1-69a-25-25-0-01-25-0l4-63-2-685l8-7-133-3-245-4-375l4-63-2-685zm2-5-5-677v5-372c0-09-047-171-125-216l4-625-2-683v8-432l2-5-5-677zm6-25-8-271l4-625-2-683a-25-25-0-00-125-216v5-677l8-75-8-432v5-516z-path-svg-installation"]], "Prerequisites": [[29, "prerequisites"]], "Install OpenVINO\u2122 Training Extensions for users (CUDA/CPU)": [[29, "install-openvino-training-extensions-for-users-cuda-cpu"]], "Install OpenVINO\u2122 Training Extensions for users (XPU devices)": [[29, "install-openvino-training-extensions-for-users-xpu-devices"]], "Install OpenVINO\u2122 Training Extensions for developers": [[29, "install-openvino-training-extensions-for-developers"]], "Install OpenVINO\u2122 Training Extensions by using Docker": [[29, "install-openvino-training-extensions-by-using-docker"]], "Run tests": [[29, "run-tests"]], "Troubleshooting": [[29, "troubleshooting"]], "Introduction": [[30, "introduction"]], "Key Features": [[30, "key-features"]], "Documentation content": [[30, "documentation-content"]], "Guide": [[31, "guide"]], "Release Notes": [[31, null]], "otx": [[32, "module-otx"]], "otx.algo": [[33, "module-otx.algo"]], "otx.algo.action_classification": [[34, "module-otx.algo.action_classification"]], "otx.algo.classification": [[35, "module-otx.algo.classification"]], "otx.algo.classification.backbones": [[36, "module-otx.algo.classification.backbones"]], "otx.algo.classification.heads": [[37, "module-otx.algo.classification.heads"]], "otx.algo.classification.losses": [[38, "module-otx.algo.classification.losses"]], "otx.algo.detection": [[39, "module-otx.algo.detection"]], "otx.algo.detection.backbones": [[40, "module-otx.algo.detection.backbones"]], "otx.algo.detection.backbones.pytorchcv_backbones": [[41, "module-otx.algo.detection.backbones.pytorchcv_backbones"]], "otx.algo.detection.heads": [[42, "module-otx.algo.detection.heads"]], "otx.algo.detection.losses": [[43, "module-otx.algo.detection.losses"]], "otx.algo.segmentation": [[44, "module-otx.algo.segmentation"]], "otx.algo.segmentation.backbones": [[45, "module-otx.algo.segmentation.backbones"]], "otx.algo.segmentation.heads": [[46, "module-otx.algo.segmentation.heads"]], "otx.algo.segmentation.losses": [[47, "module-otx.algo.segmentation.losses"]], "otx.algo.visual_prompting": [[48, "module-otx.algo.visual_prompting"]], "otx.algo.visual_prompting.backbones": [[49, "module-otx.algo.visual_prompting.backbones"]], "otx.algo.visual_prompting.decoders": [[50, "module-otx.algo.visual_prompting.decoders"]], "otx.algo.visual_prompting.encoders": [[51, "module-otx.algo.visual_prompting.encoders"]], "otx.cli": [[52, "module-otx.cli"]], "otx.cli.cli": [[53, "module-otx.cli.cli"]], "otx.cli.install": [[54, "module-otx.cli.install"]], "otx.cli.utils": [[55, "module-otx.cli.utils"]], "otx.cli.utils.help_formatter": [[56, "module-otx.cli.utils.help_formatter"]], "otx.cli.utils.installation": [[57, "module-otx.cli.utils.installation"]], "otx.cli.utils.jsonargparse": [[58, "module-otx.cli.utils.jsonargparse"]], "otx.cli.utils.workspace": [[59, "module-otx.cli.utils.workspace"]], "otx.core": [[60, "module-otx.core"]], "otx.core.config": [[61, "module-otx.core.config"]], "otx.core.config.data": [[62, "module-otx.core.config.data"]], ")": [[62, "id5"]], "otx.core.config.device": [[63, "module-otx.core.config.device"]], "otx.core.config.explain": [[64, "module-otx.core.config.explain"]], "otx.core.config.hpo": [[65, "module-otx.core.config.hpo"]], "otx.core.data": [[66, "module-otx.core.data"]], "otx.core.exporter": [[67, "module-otx.core.exporter"]], "otx.core.exporter.base": [[68, "module-otx.core.exporter.base"]], "otx.core.exporter.exportable_code": [[69, "module-otx.core.exporter.exportable_code"]], "otx.core.exporter.exportable_code.demo": [[70, "module-otx.core.exporter.exportable_code.demo"]], "otx.core.exporter.mmdeploy": [[71, "module-otx.core.exporter.mmdeploy"]], "otx.core.exporter.native": [[72, "module-otx.core.exporter.native"]], "otx.core.exporter.visual_prompting": [[73, "module-otx.core.exporter.visual_prompting"]], "otx.core.metrics": [[74, "module-otx.core.metrics"]], "otx.core.model": [[75, "module-otx.core.model"]], "otx.core.model.action_classification": [[76, "module-otx.core.model.action_classification"]], "otx.core.model.action_detection": [[77, "module-otx.core.model.action_detection"]], "otx.core.model.anomaly": [[78, "module-otx.core.model.anomaly"]], "otx.core.model.base": [[79, "module-otx.core.model.base"]], "otx.core.model.classification": [[80, "module-otx.core.model.classification"]], "otx.core.model.detection": [[81, "module-otx.core.model.detection"]], "otx.core.model.instance_segmentation": [[82, "module-otx.core.model.instance_segmentation"]], "otx.core.model.rotated_detection": [[83, "module-otx.core.model.rotated_detection"]], "otx.core.model.segmentation": [[84, "module-otx.core.model.segmentation"]], "otx.core.model.utils": [[85, "module-otx.core.model.utils"]], "otx.core.model.utils.mmaction": [[86, "module-otx.core.model.utils.mmaction"]], "otx.core.model.utils.mmdet": [[87, "module-otx.core.model.utils.mmdet"]], "otx.core.model.utils.mmpretrain": [[88, "module-otx.core.model.utils.mmpretrain"]], "otx.core.model.utils.mmseg": [[89, "module-otx.core.model.utils.mmseg"]], "otx.core.model.visual_prompting": [[90, "module-otx.core.model.visual_prompting"]], "otx.core.schedulers": [[91, "module-otx.core.schedulers"]], "otx.core.types": [[92, "module-otx.core.types"]], "otx.core.utils": [[93, "module-otx.core.utils"]], "otx.core.utils.build": [[94, "module-otx.core.utils.build"]], "otx.core.utils.cache": [[95, "module-otx.core.utils.cache"]], "otx.core.utils.config": [[96, "module-otx.core.utils.config"]], "otx.core.utils.imports": [[97, "module-otx.core.utils.imports"]], "otx.core.utils.instantiators": [[98, "module-otx.core.utils.instantiators"]], "otx.core.utils.mask_util": [[99, "module-otx.core.utils.mask_util"]], "otx.core.utils.miscellaneous": [[100, "module-otx.core.utils.miscellaneous"]], "otx.core.utils.pylogger": [[101, "module-otx.core.utils.pylogger"]], "otx.core.utils.tile_merge": [[102, "module-otx.core.utils.tile_merge"]], "otx.core.utils.utils": [[103, "module-otx.core.utils.utils"]], "otx.data": [[104, "module-otx.data"]], "otx.engine": [[105, "module-otx.engine"]], "otx.hpo": [[106, "module-otx.hpo"]], "otx.recipe": [[107, "module-otx.recipe"]], "otx.tools": [[108, "module-otx.tools"]], "otx.tools.converter": [[109, "module-otx.tools.converter"]], "otx.tools.translate_mmrecipe": [[110, "module-otx.tools.translate_mmrecipe"]], "otx.utils": [[111, "module-otx.utils"]], "API reference": [[112, "api-reference"]], "Releases": [[113, "releases"]], "v2.0.0 (1Q24)": [[113, "v2-0-0-1q24"]], "v1.5.0 (4Q23)": [[113, "v1-5-0-4q23"]], "v1.4.4 (4Q23)": [[113, "v1-4-4-4q23"]], "v1.4.3 (4Q23)": [[113, "v1-4-3-4q23"]], "v1.4.2 (4Q23)": [[113, "v1-4-2-4q23"]], "v1.4.1 (3Q23)": [[113, "v1-4-1-3q23"]], "v1.4.0 (3Q23)": [[113, "v1-4-0-3q23"]], "v1.3.1 (2Q23)": [[113, "v1-3-1-2q23"]], "v1.3.0 (2Q23)": [[113, "v1-3-0-2q23"]], "v1.2.4 (3Q23)": [[113, "v1-2-4-3q23"]], "v1.2.3 (2Q23)": [[113, "v1-2-3-2q23"]], "v1.2.1 (2Q23)": [[113, "v1-2-1-2q23"]], "v1.2.0 (2Q23)": [[113, "v1-2-0-2q23"]], "v1.1.2 (2Q23)": [[113, "v1-1-2-2q23"]], "v1.1.1 (1Q23)": [[113, "v1-1-1-1q23"]], "v1.1.0 (1Q23)": [[113, "v1-1-0-1q23"]], "v1.0.1 (1Q23)": [[113, "v1-0-1-1q23"]], "v1.0.0 (1Q23)": [[113, "v1-0-0-1q23"]], "How to write OTX Configuration (recipe)": [[114, "how-to-write-otx-configuration-recipe"]], "Configuration": [[114, "configuration"]], "Advanced Tutorials": [[115, "advanced-tutorials"]], "XAI Tutorial": [[116, "xai-tutorial"]], "Deploy & Demo": [[117, "deploy-demo"]], "Export": [[117, "export"], [118, "export"], [120, "export"], [121, "export"], [122, "export"], [124, "export"], [125, "export"], [126, "export"]], "Deploy": [[117, "deploy"]], "Demonstration": [[117, "demonstration"]], "Action Classification model": [[118, "action-classification-model"]], "Setup virtual environment": [[118, "setup-virtual-environment"], [119, "setup-virtual-environment"], [121, "setup-virtual-environment"], [122, "setup-virtual-environment"], [124, "setup-virtual-environment"], [125, "setup-virtual-environment"], [126, "setup-virtual-environment"]], "Action Detection model": [[119, "action-detection-model"]], "Anomaly Detection Tutorial": [[120, "anomaly-detection-tutorial"]], "Setup the Virtual environment": [[120, "setup-the-virtual-environment"]], "Dataset Preparation": [[120, "dataset-preparation"]], "Segmentation and Classification": [[120, "segmentation-and-classification"]], "Classification model": [[121, "classification-model"]], "Object Detection model": [[122, "object-detection-model"]], "Training to deployment tutorials": [[123, "training-to-deployment-tutorials"]], "Instance Segmentation model": [[124, "instance-segmentation-model"]], "Validation": [[124, "validation"], [125, "validation"]], "Semantic Segmentation model": [[125, "semantic-segmentation-model"]], "Visual Prompting model": [[126, "visual-prompting-model"]], "Base Tutorials": [[127, "base-tutorials"]], "Welcome to Intel OpenVINO Training Extensions\u2019s develop documentation!": [[128, "welcome-to-intel-openvino-training-extensions-s-develop-documentation"]], "Indices and tables": [[128, "indices-and-tables"]]}, "indexentries": {"module": [[32, "module-otx"], [33, "module-otx.algo"], [34, "module-otx.algo.action_classification"], [35, "module-otx.algo.classification"], [36, "module-otx.algo.classification.backbones"], [37, "module-otx.algo.classification.heads"], [38, "module-otx.algo.classification.losses"], [39, "module-otx.algo.detection"], [40, "module-otx.algo.detection.backbones"], [41, "module-otx.algo.detection.backbones.pytorchcv_backbones"], [42, "module-otx.algo.detection.heads"], [43, "module-otx.algo.detection.losses"], [44, "module-otx.algo.segmentation"], [45, "module-otx.algo.segmentation.backbones"], [46, "module-otx.algo.segmentation.heads"], [47, "module-otx.algo.segmentation.losses"], [48, "module-otx.algo.visual_prompting"], [49, "module-otx.algo.visual_prompting.backbones"], [50, "module-otx.algo.visual_prompting.decoders"], [51, "module-otx.algo.visual_prompting.encoders"], [52, "module-otx.cli"], [53, "module-otx.cli.cli"], [54, "module-otx.cli.install"], [55, "module-otx.cli.utils"], [56, "module-otx.cli.utils.help_formatter"], [57, "module-otx.cli.utils.installation"], [58, "module-otx.cli.utils.jsonargparse"], [59, "module-otx.cli.utils.workspace"], [60, "module-otx.core"], [61, "module-otx.core.config"], [62, "module-otx.core.config.data"], [63, "module-otx.core.config.device"], [64, "module-otx.core.config.explain"], [65, "module-otx.core.config.hpo"], [66, "module-otx.core.data"], [67, "module-otx.core.exporter"], [68, "module-otx.core.exporter.base"], [69, "module-otx.core.exporter.exportable_code"], [70, "module-otx.core.exporter.exportable_code.demo"], [71, "module-otx.core.exporter.mmdeploy"], [72, "module-otx.core.exporter.native"], [73, "module-otx.core.exporter.visual_prompting"], [74, "module-otx.core.metrics"], [75, "module-otx.core.model"], [76, "module-otx.core.model.action_classification"], [77, "module-otx.core.model.action_detection"], [78, "module-otx.core.model.anomaly"], [79, "module-otx.core.model.base"], [80, "module-otx.core.model.classification"], [81, "module-otx.core.model.detection"], [82, "module-otx.core.model.instance_segmentation"], [83, "module-otx.core.model.rotated_detection"], [84, "module-otx.core.model.segmentation"], [85, "module-otx.core.model.utils"], [86, "module-otx.core.model.utils.mmaction"], [87, "module-otx.core.model.utils.mmdet"], [88, "module-otx.core.model.utils.mmpretrain"], [89, "module-otx.core.model.utils.mmseg"], [90, "module-otx.core.model.visual_prompting"], [91, "module-otx.core.schedulers"], [92, "module-otx.core.types"], [93, "module-otx.core.utils"], [94, "module-otx.core.utils.build"], [95, "module-otx.core.utils.cache"], [96, "module-otx.core.utils.config"], [97, "module-otx.core.utils.imports"], [98, "module-otx.core.utils.instantiators"], [99, "module-otx.core.utils.mask_util"], [100, "module-otx.core.utils.miscellaneous"], [101, "module-otx.core.utils.pylogger"], [102, "module-otx.core.utils.tile_merge"], [103, "module-otx.core.utils.utils"], [104, "module-otx.data"], [105, "module-otx.engine"], [106, "module-otx.hpo"], [107, "module-otx.recipe"], [108, "module-otx.tools"], [109, "module-otx.tools.converter"], [110, "module-otx.tools.translate_mmrecipe"], [111, "module-otx.utils"]], "otx": [[32, "module-otx"]], "otx.algo": [[33, "module-otx.algo"]], "movinethead (class in otx.algo.action_classification)": [[34, "otx.algo.action_classification.MoViNetHead"]], "movinetrecognizer (class in otx.algo.action_classification)": [[34, "otx.algo.action_classification.MoViNetRecognizer"]], "otxmovinet (class in otx.algo.action_classification)": [[34, "otx.algo.action_classification.OTXMoViNet"]], "otxovactioncls (class in otx.algo.action_classification)": [[34, "otx.algo.action_classification.OTXOVActionCls"]], "otxrecognizer3d (class in otx.algo.action_classification)": [[34, "otx.algo.action_classification.OTXRecognizer3D"]], "fill_conv() (otx.algo.action_classification.otxmovinet static method)": [[34, "otx.algo.action_classification.OTXMoViNet.fill_conv"]], "fill_se_config() (otx.algo.action_classification.otxmovinet static method)": [[34, "otx.algo.action_classification.OTXMoViNet.fill_se_config"]], "forward() (otx.algo.action_classification.movinethead method)": [[34, "otx.algo.action_classification.MoViNetHead.forward"]], "init_weights() (otx.algo.action_classification.movinethead method)": [[34, "otx.algo.action_classification.MoViNetHead.init_weights"]], "load_state_dict_pre_hook() (otx.algo.action_classification.movinetrecognizer static method)": [[34, "otx.algo.action_classification.MoViNetRecognizer.load_state_dict_pre_hook"]], "otx.algo.action_classification": [[34, "module-otx.algo.action_classification"]], "postprocess() (otx.algo.action_classification.otxovactioncls method)": [[34, "otx.algo.action_classification.OTXOVActionCls.postprocess"]], "preprocess() (otx.algo.action_classification.otxovactioncls method)": [[34, "otx.algo.action_classification.OTXOVActionCls.preprocess"]], "state_dict_hook() (otx.algo.action_classification.movinetrecognizer static method)": [[34, "otx.algo.action_classification.MoViNetRecognizer.state_dict_hook"]], "dinov2 (class in otx.algo.classification)": [[35, "otx.algo.classification.DINOv2"]], "dinov2registerclassifier (class in otx.algo.classification)": [[35, "otx.algo.classification.DINOv2RegisterClassifier"]], "forward() (otx.algo.classification.dinov2 method)": [[35, "otx.algo.classification.DINOv2.forward"]], "otx.algo.classification": [[35, "module-otx.algo.classification"]], "otxefficientnet (class in otx.algo.classification.backbones)": [[36, "otx.algo.classification.backbones.OTXEfficientNet"]], "otxefficientnetv2 (class in otx.algo.classification.backbones)": [[36, "otx.algo.classification.backbones.OTXEfficientNetV2"]], "otxmobilenetv3 (class in otx.algo.classification.backbones)": [[36, "otx.algo.classification.backbones.OTXMobileNetV3"]], "forward() (otx.algo.classification.backbones.otxefficientnet method)": [[36, "otx.algo.classification.backbones.OTXEfficientNet.forward"]], "forward() (otx.algo.classification.backbones.otxmobilenetv3 method)": [[36, "otx.algo.classification.backbones.OTXMobileNetV3.forward"]], "init_weights() (otx.algo.classification.backbones.otxefficientnet method)": [[36, "otx.algo.classification.backbones.OTXEfficientNet.init_weights"]], "init_weights() (otx.algo.classification.backbones.otxefficientnetv2 method)": [[36, "otx.algo.classification.backbones.OTXEfficientNetV2.init_weights"]], "init_weights() (otx.algo.classification.backbones.otxmobilenetv3 method)": [[36, "otx.algo.classification.backbones.OTXMobileNetV3.init_weights"]], "otx.algo.classification.backbones": [[36, "module-otx.algo.classification.backbones"]], "customhierarchicallinearclshead (class in otx.algo.classification.heads)": [[37, "otx.algo.classification.heads.CustomHierarchicalLinearClsHead"]], "customhierarchicalnonlinearclshead (class in otx.algo.classification.heads)": [[37, "otx.algo.classification.heads.CustomHierarchicalNonLinearClsHead"]], "custommultilabellinearclshead (class in otx.algo.classification.heads)": [[37, "otx.algo.classification.heads.CustomMultiLabelLinearClsHead"]], "custommultilabelnonlinearclshead (class in otx.algo.classification.heads)": [[37, "otx.algo.classification.heads.CustomMultiLabelNonLinearClsHead"]], "forward() (otx.algo.classification.heads.customhierarchicallinearclshead method)": [[37, "otx.algo.classification.heads.CustomHierarchicalLinearClsHead.forward"]], "forward() (otx.algo.classification.heads.customhierarchicalnonlinearclshead method)": [[37, "otx.algo.classification.heads.CustomHierarchicalNonLinearClsHead.forward"]], "forward() (otx.algo.classification.heads.custommultilabelnonlinearclshead method)": [[37, "otx.algo.classification.heads.CustomMultiLabelNonLinearClsHead.forward"]], "get_valid_label_mask() (otx.algo.classification.heads.customhierarchicallinearclshead method)": [[37, "otx.algo.classification.heads.CustomHierarchicalLinearClsHead.get_valid_label_mask"]], "get_valid_label_mask() (otx.algo.classification.heads.customhierarchicalnonlinearclshead method)": [[37, "otx.algo.classification.heads.CustomHierarchicalNonLinearClsHead.get_valid_label_mask"]], "get_valid_label_mask() (otx.algo.classification.heads.custommultilabellinearclshead method)": [[37, "otx.algo.classification.heads.CustomMultiLabelLinearClsHead.get_valid_label_mask"]], "get_valid_label_mask() (otx.algo.classification.heads.custommultilabelnonlinearclshead method)": [[37, "otx.algo.classification.heads.CustomMultiLabelNonLinearClsHead.get_valid_label_mask"]], "loss() (otx.algo.classification.heads.customhierarchicallinearclshead method)": [[37, "otx.algo.classification.heads.CustomHierarchicalLinearClsHead.loss"]], "loss() (otx.algo.classification.heads.customhierarchicalnonlinearclshead method)": [[37, "otx.algo.classification.heads.CustomHierarchicalNonLinearClsHead.loss"]], "loss() (otx.algo.classification.heads.custommultilabellinearclshead method)": [[37, "otx.algo.classification.heads.CustomMultiLabelLinearClsHead.loss"]], "loss() (otx.algo.classification.heads.custommultilabelnonlinearclshead method)": [[37, "otx.algo.classification.heads.CustomMultiLabelNonLinearClsHead.loss"]], "otx.algo.classification.heads": [[37, "module-otx.algo.classification.heads"]], "pre_logits() (otx.algo.classification.heads.customhierarchicallinearclshead method)": [[37, "otx.algo.classification.heads.CustomHierarchicalLinearClsHead.pre_logits"]], "pre_logits() (otx.algo.classification.heads.customhierarchicalnonlinearclshead method)": [[37, "otx.algo.classification.heads.CustomHierarchicalNonLinearClsHead.pre_logits"]], "predict() (otx.algo.classification.heads.customhierarchicallinearclshead method)": [[37, "otx.algo.classification.heads.CustomHierarchicalLinearClsHead.predict"]], "predict() (otx.algo.classification.heads.customhierarchicalnonlinearclshead method)": [[37, "otx.algo.classification.heads.CustomHierarchicalNonLinearClsHead.predict"]], "asymmetricangularlosswithignore (class in otx.algo.classification.losses)": [[38, "otx.algo.classification.losses.AsymmetricAngularLossWithIgnore"]], "forward() (otx.algo.classification.losses.asymmetricangularlosswithignore method)": [[38, "otx.algo.classification.losses.AsymmetricAngularLossWithIgnore.forward"]], "otx.algo.classification.losses": [[38, "module-otx.algo.classification.losses"]], "ssd (class in otx.algo.detection)": [[39, "otx.algo.detection.SSD"]], "get_classification_layers() (otx.algo.detection.ssd static method)": [[39, "otx.algo.detection.SSD.get_classification_layers"]], "load_from_otx_v1_ckpt() (otx.algo.detection.ssd method)": [[39, "otx.algo.detection.SSD.load_from_otx_v1_ckpt"]], "load_state_dict_pre_hook() (otx.algo.detection.ssd method)": [[39, "otx.algo.detection.SSD.load_state_dict_pre_hook"]], "otx.algo.detection": [[39, "module-otx.algo.detection"]], "setup() (otx.algo.detection.ssd method)": [[39, "otx.algo.detection.SSD.setup"]], "state_dict() (otx.algo.detection.ssd method)": [[39, "otx.algo.detection.SSD.state_dict"]], "otx.algo.detection.backbones": [[40, "module-otx.algo.detection.backbones"]], "init_weights() (in module otx.algo.detection.backbones.pytorchcv_backbones)": [[41, "otx.algo.detection.backbones.pytorchcv_backbones.init_weights"]], "multioutput_forward() (in module otx.algo.detection.backbones.pytorchcv_backbones)": [[41, "otx.algo.detection.backbones.pytorchcv_backbones.multioutput_forward"]], "otx.algo.detection.backbones.pytorchcv_backbones": [[41, "module-otx.algo.detection.backbones.pytorchcv_backbones"]], "replace_activation() (in module otx.algo.detection.backbones.pytorchcv_backbones)": [[41, "otx.algo.detection.backbones.pytorchcv_backbones.replace_activation"]], "replace_norm() (in module otx.algo.detection.backbones.pytorchcv_backbones)": [[41, "otx.algo.detection.backbones.pytorchcv_backbones.replace_norm"]], "train() (in module otx.algo.detection.backbones.pytorchcv_backbones)": [[41, "otx.algo.detection.backbones.pytorchcv_backbones.train"]], "customatsshead (class in otx.algo.detection.heads)": [[42, "otx.algo.detection.heads.CustomATSSHead"]], "customssdhead (class in otx.algo.detection.heads)": [[42, "otx.algo.detection.heads.CustomSSDHead"]], "ssdanchorgeneratorclustered (class in otx.algo.detection.heads)": [[42, "otx.algo.detection.heads.SSDAnchorGeneratorClustered"]], "gen_base_anchors() (otx.algo.detection.heads.ssdanchorgeneratorclustered method)": [[42, "otx.algo.detection.heads.SSDAnchorGeneratorClustered.gen_base_anchors"]], "gen_single_level_base_anchors() (otx.algo.detection.heads.ssdanchorgeneratorclustered method)": [[42, "otx.algo.detection.heads.SSDAnchorGeneratorClustered.gen_single_level_base_anchors"]], "get_targets() (otx.algo.detection.heads.customatsshead method)": [[42, "otx.algo.detection.heads.CustomATSSHead.get_targets"]], "loss_by_feat() (otx.algo.detection.heads.customatsshead method)": [[42, "otx.algo.detection.heads.CustomATSSHead.loss_by_feat"]], "loss_by_feat_single() (otx.algo.detection.heads.customatsshead method)": [[42, "otx.algo.detection.heads.CustomATSSHead.loss_by_feat_single"]], "otx.algo.detection.heads": [[42, "module-otx.algo.detection.heads"]], "otx.algo.detection.losses": [[43, "module-otx.algo.detection.losses"]], "otx.algo.segmentation": [[44, "module-otx.algo.segmentation"]], "dinovisiontransformer (class in otx.algo.segmentation.backbones)": [[45, "otx.algo.segmentation.backbones.DinoVisionTransformer"]], "litehrnet (class in otx.algo.segmentation.backbones)": [[45, "otx.algo.segmentation.backbones.LiteHRNet"]], "forward() (otx.algo.segmentation.backbones.dinovisiontransformer method)": [[45, "otx.algo.segmentation.backbones.DinoVisionTransformer.forward"]], "forward() (otx.algo.segmentation.backbones.litehrnet method)": [[45, "otx.algo.segmentation.backbones.LiteHRNet.forward"]], "init_weights() (otx.algo.segmentation.backbones.dinovisiontransformer method)": [[45, "otx.algo.segmentation.backbones.DinoVisionTransformer.init_weights"]], "otx.algo.segmentation.backbones": [[45, "module-otx.algo.segmentation.backbones"]], "customfcnhead (class in otx.algo.segmentation.heads)": [[46, "otx.algo.segmentation.heads.CustomFCNHead"]], "customlighthamhead (class in otx.algo.segmentation.heads)": [[46, "otx.algo.segmentation.heads.CustomLightHamHead"]], "otx.algo.segmentation.heads": [[46, "module-otx.algo.segmentation.heads"]], "crossentropylosswithignore (class in otx.algo.segmentation.losses)": [[47, "otx.algo.segmentation.losses.CrossEntropyLossWithIgnore"]], "forward() (otx.algo.segmentation.losses.crossentropylosswithignore method)": [[47, "otx.algo.segmentation.losses.CrossEntropyLossWithIgnore.forward"]], "loss_name (otx.algo.segmentation.losses.crossentropylosswithignore property)": [[47, "otx.algo.segmentation.losses.CrossEntropyLossWithIgnore.loss_name"]], "otx.algo.segmentation.losses": [[47, "module-otx.algo.segmentation.losses"]], "otxsegmentanything (class in otx.algo.visual_prompting)": [[48, "otx.algo.visual_prompting.OTXSegmentAnything"]], "otxzeroshotsegmentanything (class in otx.algo.visual_prompting)": [[48, "otx.algo.visual_prompting.OTXZeroShotSegmentAnything"]], "segmentanything (class in otx.algo.visual_prompting)": [[48, "otx.algo.visual_prompting.SegmentAnything"]], "visualpromptingdecoder (class in otx.algo.visual_prompting)": [[48, "otx.algo.visual_prompting.VisualPromptingDecoder"]], "visualpromptingimageencoder (class in otx.algo.visual_prompting)": [[48, "otx.algo.visual_prompting.VisualPromptingImageEncoder"]], "zeroshotsegmentanything (class in otx.algo.visual_prompting)": [[48, "otx.algo.visual_prompting.ZeroShotSegmentAnything"]], "apply_boxes() (otx.algo.visual_prompting.otxzeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.OTXZeroShotSegmentAnything.apply_boxes"]], "apply_coords() (otx.algo.visual_prompting.otxzeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.OTXZeroShotSegmentAnything.apply_coords"]], "apply_coords() (otx.algo.visual_prompting.visualpromptingdecoder method)": [[48, "otx.algo.visual_prompting.VisualPromptingDecoder.apply_coords"]], "apply_image() (otx.algo.visual_prompting.otxzeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.OTXZeroShotSegmentAnything.apply_image"]], "apply_points() (otx.algo.visual_prompting.otxzeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.OTXZeroShotSegmentAnything.apply_points"]], "apply_prompts() (otx.algo.visual_prompting.otxzeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.OTXZeroShotSegmentAnything.apply_prompts"]], "calculate_dice_loss() (otx.algo.visual_prompting.segmentanything method)": [[48, "otx.algo.visual_prompting.SegmentAnything.calculate_dice_loss"]], "calculate_iou() (otx.algo.visual_prompting.segmentanything method)": [[48, "otx.algo.visual_prompting.SegmentAnything.calculate_iou"]], "calculate_sigmoid_ce_focal_loss() (otx.algo.visual_prompting.segmentanything method)": [[48, "otx.algo.visual_prompting.SegmentAnything.calculate_sigmoid_ce_focal_loss"]], "calculate_stability_score() (otx.algo.visual_prompting.segmentanything method)": [[48, "otx.algo.visual_prompting.SegmentAnything.calculate_stability_score"]], "expand_reference_info() (otx.algo.visual_prompting.zeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.ZeroShotSegmentAnything.expand_reference_info"]], "forward() (otx.algo.visual_prompting.otxzeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.OTXZeroShotSegmentAnything.forward"]], "forward() (otx.algo.visual_prompting.segmentanything method)": [[48, "otx.algo.visual_prompting.SegmentAnything.forward"]], "forward_inference() (otx.algo.visual_prompting.segmentanything method)": [[48, "otx.algo.visual_prompting.SegmentAnything.forward_inference"]], "forward_train() (otx.algo.visual_prompting.segmentanything method)": [[48, "otx.algo.visual_prompting.SegmentAnything.forward_train"]], "freeze_networks() (otx.algo.visual_prompting.segmentanything method)": [[48, "otx.algo.visual_prompting.SegmentAnything.freeze_networks"]], "get_prepadded_size() (otx.algo.visual_prompting.segmentanything method)": [[48, "otx.algo.visual_prompting.SegmentAnything.get_prepadded_size"]], "get_preprocess_shape() (otx.algo.visual_prompting.otxzeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.OTXZeroShotSegmentAnything.get_preprocess_shape"]], "infer() (otx.algo.visual_prompting.otxzeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.OTXZeroShotSegmentAnything.infer"]], "infer() (otx.algo.visual_prompting.zeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.ZeroShotSegmentAnything.infer"]], "initialize_reference_info() (otx.algo.visual_prompting.otxzeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.OTXZeroShotSegmentAnything.initialize_reference_info"]], "learn() (otx.algo.visual_prompting.otxzeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.OTXZeroShotSegmentAnything.learn"]], "learn() (otx.algo.visual_prompting.zeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.ZeroShotSegmentAnything.learn"]], "load_checkpoint() (otx.algo.visual_prompting.segmentanything method)": [[48, "otx.algo.visual_prompting.SegmentAnything.load_checkpoint"]], "load_latest_reference_info() (otx.algo.visual_prompting.otxzeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.OTXZeroShotSegmentAnything.load_latest_reference_info"]], "otx.algo.visual_prompting": [[48, "module-otx.algo.visual_prompting"]], "pad_to_square() (otx.algo.visual_prompting.zeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.ZeroShotSegmentAnything.pad_to_square"]], "parameters() (otx.algo.visual_prompting.visualpromptingdecoder class method)": [[48, "otx.algo.visual_prompting.VisualPromptingDecoder.parameters"]], "parameters() (otx.algo.visual_prompting.visualpromptingimageencoder class method)": [[48, "otx.algo.visual_prompting.VisualPromptingImageEncoder.parameters"]], "postprocess() (otx.algo.visual_prompting.visualpromptingdecoder method)": [[48, "otx.algo.visual_prompting.VisualPromptingDecoder.postprocess"]], "postprocess_masks() (otx.algo.visual_prompting.segmentanything class method)": [[48, "otx.algo.visual_prompting.SegmentAnything.postprocess_masks"]], "preprocess() (otx.algo.visual_prompting.otxzeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.OTXZeroShotSegmentAnything.preprocess"]], "preprocess() (otx.algo.visual_prompting.visualpromptingdecoder method)": [[48, "otx.algo.visual_prompting.VisualPromptingDecoder.preprocess"]], "preprocess() (otx.algo.visual_prompting.visualpromptingimageencoder method)": [[48, "otx.algo.visual_prompting.VisualPromptingImageEncoder.preprocess"]], "select_masks() (otx.algo.visual_prompting.segmentanything method)": [[48, "otx.algo.visual_prompting.SegmentAnything.select_masks"]], "set_default_config() (otx.algo.visual_prompting.zeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.ZeroShotSegmentAnything.set_default_config"]], "transforms() (otx.algo.visual_prompting.otxzeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.OTXZeroShotSegmentAnything.transforms"]], "tinyvit (class in otx.algo.visual_prompting.backbones)": [[49, "otx.algo.visual_prompting.backbones.TinyViT"]], "vit (class in otx.algo.visual_prompting.backbones)": [[49, "otx.algo.visual_prompting.backbones.ViT"]], "forward() (otx.algo.visual_prompting.backbones.tinyvit method)": [[49, "otx.algo.visual_prompting.backbones.TinyViT.forward"]], "forward() (otx.algo.visual_prompting.backbones.vit method)": [[49, "otx.algo.visual_prompting.backbones.ViT.forward"]], "no_weight_decay_keywords() (otx.algo.visual_prompting.backbones.tinyvit method)": [[49, "otx.algo.visual_prompting.backbones.TinyViT.no_weight_decay_keywords"]], "otx.algo.visual_prompting.backbones": [[49, "module-otx.algo.visual_prompting.backbones"]], "set_layer_lr_decay() (otx.algo.visual_prompting.backbones.tinyvit method)": [[49, "otx.algo.visual_prompting.backbones.TinyViT.set_layer_lr_decay"]], "sammaskdecoder (class in otx.algo.visual_prompting.decoders)": [[50, "otx.algo.visual_prompting.decoders.SAMMaskDecoder"]], "forward() (otx.algo.visual_prompting.decoders.sammaskdecoder method)": [[50, "otx.algo.visual_prompting.decoders.SAMMaskDecoder.forward"]], "otx.algo.visual_prompting.decoders": [[50, "module-otx.algo.visual_prompting.decoders"]], "predict_masks() (otx.algo.visual_prompting.decoders.sammaskdecoder method)": [[50, "otx.algo.visual_prompting.decoders.SAMMaskDecoder.predict_masks"]], "samimageencoder (class in otx.algo.visual_prompting.encoders)": [[51, "otx.algo.visual_prompting.encoders.SAMImageEncoder"]], "sampromptencoder (class in otx.algo.visual_prompting.encoders)": [[51, "otx.algo.visual_prompting.encoders.SAMPromptEncoder"]], "forward() (otx.algo.visual_prompting.encoders.sampromptencoder method)": [[51, "otx.algo.visual_prompting.encoders.SAMPromptEncoder.forward"]], "get_dense_pe() (otx.algo.visual_prompting.encoders.sampromptencoder method)": [[51, "otx.algo.visual_prompting.encoders.SAMPromptEncoder.get_dense_pe"]], "otx.algo.visual_prompting.encoders": [[51, "module-otx.algo.visual_prompting.encoders"]], "main() (in module otx.cli)": [[52, "otx.cli.main"]], "otx.cli": [[52, "module-otx.cli"]], "otxcli (class in otx.cli.cli)": [[53, "otx.cli.cli.OTXCLI"]], "add_subcommands() (otx.cli.cli.otxcli method)": [[53, "otx.cli.cli.OTXCLI.add_subcommands"]], "engine_subcommand_parser() (otx.cli.cli.otxcli static method)": [[53, "otx.cli.cli.OTXCLI.engine_subcommand_parser"]], "engine_subcommands() (otx.cli.cli.otxcli static method)": [[53, "otx.cli.cli.OTXCLI.engine_subcommands"]], "get_config_value() (otx.cli.cli.otxcli method)": [[53, "otx.cli.cli.OTXCLI.get_config_value"]], "get_subcommand_parser() (otx.cli.cli.otxcli method)": [[53, "otx.cli.cli.OTXCLI.get_subcommand_parser"]], "init_parser() (otx.cli.cli.otxcli method)": [[53, "otx.cli.cli.OTXCLI.init_parser"]], "instantiate_classes() (otx.cli.cli.otxcli method)": [[53, "otx.cli.cli.OTXCLI.instantiate_classes"]], "instantiate_engine() (otx.cli.cli.otxcli method)": [[53, "otx.cli.cli.OTXCLI.instantiate_engine"]], "instantiate_model() (otx.cli.cli.otxcli method)": [[53, "otx.cli.cli.OTXCLI.instantiate_model"]], "otx.cli.cli": [[53, "module-otx.cli.cli"]], "prepare_subcommand_kwargs() (otx.cli.cli.otxcli method)": [[53, "otx.cli.cli.OTXCLI.prepare_subcommand_kwargs"]], "run() (otx.cli.cli.otxcli method)": [[53, "otx.cli.cli.OTXCLI.run"]], "save_config() (otx.cli.cli.otxcli method)": [[53, "otx.cli.cli.OTXCLI.save_config"]], "set_seed() (otx.cli.cli.otxcli method)": [[53, "otx.cli.cli.OTXCLI.set_seed"]], "update_latest() (otx.cli.cli.otxcli method)": [[53, "otx.cli.cli.OTXCLI.update_latest"]], "add_install_parser() (in module otx.cli.install)": [[54, "otx.cli.install.add_install_parser"]], "otx.cli.install": [[54, "module-otx.cli.install"]], "otx_install() (in module otx.cli.install)": [[54, "otx.cli.install.otx_install"]], "absolute_path() (in module otx.cli.utils)": [[55, "otx.cli.utils.absolute_path"]], "otx.cli.utils": [[55, "module-otx.cli.utils"]], "customhelpformatter (class in otx.cli.utils.help_formatter)": [[56, "otx.cli.utils.help_formatter.CustomHelpFormatter"]], "add_argument() (otx.cli.utils.help_formatter.customhelpformatter method)": [[56, "id0"], [56, "otx.cli.utils.help_formatter.CustomHelpFormatter.add_argument"]], "add_usage() (otx.cli.utils.help_formatter.customhelpformatter method)": [[56, "id1"], [56, "otx.cli.utils.help_formatter.CustomHelpFormatter.add_usage"]], "format_help() (otx.cli.utils.help_formatter.customhelpformatter method)": [[56, "id2"], [56, "otx.cli.utils.help_formatter.CustomHelpFormatter.format_help"]], "get_cli_usage_docstring() (in module otx.cli.utils.help_formatter)": [[56, "otx.cli.utils.help_formatter.get_cli_usage_docstring"]], "get_verbosity_subcommand() (in module otx.cli.utils.help_formatter)": [[56, "otx.cli.utils.help_formatter.get_verbosity_subcommand"]], "otx.cli.utils.help_formatter": [[56, "module-otx.cli.utils.help_formatter"]], "render_guide() (in module otx.cli.utils.help_formatter)": [[56, "otx.cli.utils.help_formatter.render_guide"]], "subcommand (otx.cli.utils.help_formatter.customhelpformatter attribute)": [[56, "otx.cli.utils.help_formatter.CustomHelpFormatter.subcommand"]], "verbosity_level (otx.cli.utils.help_formatter.customhelpformatter attribute)": [[56, "otx.cli.utils.help_formatter.CustomHelpFormatter.verbosity_level"]], "add_hardware_suffix_to_torch() (in module otx.cli.utils.installation)": [[57, "otx.cli.utils.installation.add_hardware_suffix_to_torch"]], "get_cuda_suffix() (in module otx.cli.utils.installation)": [[57, "otx.cli.utils.installation.get_cuda_suffix"]], "get_cuda_version() (in module otx.cli.utils.installation)": [[57, "otx.cli.utils.installation.get_cuda_version"]], "get_hardware_suffix() (in module otx.cli.utils.installation)": [[57, "otx.cli.utils.installation.get_hardware_suffix"]], "get_mmcv_install_args() (in module otx.cli.utils.installation)": [[57, "otx.cli.utils.installation.get_mmcv_install_args"]], "get_module_version() (in module otx.cli.utils.installation)": [[57, "otx.cli.utils.installation.get_module_version"]], "get_requirements() (in module otx.cli.utils.installation)": [[57, "otx.cli.utils.installation.get_requirements"]], "get_torch_install_args() (in module otx.cli.utils.installation)": [[57, "otx.cli.utils.installation.get_torch_install_args"]], "mim_installation() (in module otx.cli.utils.installation)": [[57, "otx.cli.utils.installation.mim_installation"]], "otx.cli.utils.installation": [[57, "module-otx.cli.utils.installation"]], "parse_requirements() (in module otx.cli.utils.installation)": [[57, "otx.cli.utils.installation.parse_requirements"]], "patch_mmaction2() (in module otx.cli.utils.installation)": [[57, "otx.cli.utils.installation.patch_mmaction2"]], "update_cuda_version_with_available_torch_cuda_build() (in module otx.cli.utils.installation)": [[57, "otx.cli.utils.installation.update_cuda_version_with_available_torch_cuda_build"]], "add_list_type_arguments() (in module otx.cli.utils.jsonargparse)": [[58, "otx.cli.utils.jsonargparse.add_list_type_arguments"]], "apply_config() (in module otx.cli.utils.jsonargparse)": [[58, "otx.cli.utils.jsonargparse.apply_config"]], "flatten_dict() (in module otx.cli.utils.jsonargparse)": [[58, "otx.cli.utils.jsonargparse.flatten_dict"]], "get_configuration() (in module otx.cli.utils.jsonargparse)": [[58, "otx.cli.utils.jsonargparse.get_configuration"]], "get_defaults_with_overrides() (in module otx.cli.utils.jsonargparse)": [[58, "otx.cli.utils.jsonargparse.get_defaults_with_overrides"]], "get_instantiated_classes() (in module otx.cli.utils.jsonargparse)": [[58, "otx.cli.utils.jsonargparse.get_instantiated_classes"]], "get_short_docstring() (in module otx.cli.utils.jsonargparse)": [[58, "otx.cli.utils.jsonargparse.get_short_docstring"]], "list_override() (in module otx.cli.utils.jsonargparse)": [[58, "otx.cli.utils.jsonargparse.list_override"]], "otx.cli.utils.jsonargparse": [[58, "module-otx.cli.utils.jsonargparse"]], "patch_update_configs() (in module otx.cli.utils.jsonargparse)": [[58, "otx.cli.utils.jsonargparse.patch_update_configs"]], "update() (in module otx.cli.utils.jsonargparse)": [[58, "otx.cli.utils.jsonargparse.update"]], "workspace (class in otx.cli.utils.workspace)": [[59, "otx.cli.utils.workspace.Workspace"]], "otx.cli.utils.workspace": [[59, "module-otx.cli.utils.workspace"]], "otx.core": [[60, "module-otx.core"]], "any_representer() (in module otx.core.config)": [[61, "otx.core.config.any_representer"]], "as_int_tuple() (in module otx.core.config)": [[61, "otx.core.config.as_int_tuple"]], "as_torch_dtype() (in module otx.core.config)": [[61, "otx.core.config.as_torch_dtype"]], "dtype_representer() (in module otx.core.config)": [[61, "otx.core.config.dtype_representer"]], "ignore_aliases() (in module otx.core.config)": [[61, "otx.core.config.ignore_aliases"]], "otx.core.config": [[61, "module-otx.core.config"]], "register_configs() (in module otx.core.config)": [[61, "otx.core.config.register_configs"]], "datamoduleconfig (class in otx.core.config.data)": [[62, "otx.core.config.data.DataModuleConfig"]], "samplerconfig (class in otx.core.config.data)": [[62, "otx.core.config.data.SamplerConfig"]], "subsetconfig (class in otx.core.config.data)": [[62, "otx.core.config.data.SubsetConfig"]], "tileconfig (class in otx.core.config.data)": [[62, "otx.core.config.data.TileConfig"]], "visualpromptingconfig (class in otx.core.config.data)": [[62, "otx.core.config.data.VisualPromptingConfig"]], "batch_size (otx.core.config.data.subsetconfig attribute)": [[62, "otx.core.config.data.SubsetConfig.batch_size"]], "num_workers (otx.core.config.data.subsetconfig attribute)": [[62, "otx.core.config.data.SubsetConfig.num_workers"]], "otx.core.config.data": [[62, "module-otx.core.config.data"]], "subset_name (otx.core.config.data.subsetconfig attribute)": [[62, "otx.core.config.data.SubsetConfig.subset_name"]], "transform_lib_type (otx.core.config.data.subsetconfig attribute)": [[62, "otx.core.config.data.SubsetConfig.transform_lib_type"]], "transforms (otx.core.config.data.subsetconfig attribute)": [[62, "otx.core.config.data.SubsetConfig.transforms"]], "deviceconfig (class in otx.core.config.device)": [[63, "otx.core.config.device.DeviceConfig"]], "otx.core.config.device": [[63, "module-otx.core.config.device"]], "explainconfig (class in otx.core.config.explain)": [[64, "otx.core.config.explain.ExplainConfig"]], "otx.core.config.explain": [[64, "module-otx.core.config.explain"]], "hpoconfig (class in otx.core.config.hpo)": [[65, "otx.core.config.hpo.HpoConfig"]], "otx.core.config.hpo": [[65, "module-otx.core.config.hpo"]], "otxdatamodule (class in otx.core.data)": [[66, "otx.core.data.OTXDataModule"]], "otxdatasetfactory (class in otx.core.data)": [[66, "otx.core.data.OTXDatasetFactory"]], "transformlibfactory (class in otx.core.data)": [[66, "otx.core.data.TransformLibFactory"]], "create() (otx.core.data.otxdatasetfactory class method)": [[66, "otx.core.data.OTXDatasetFactory.create"]], "generate() (otx.core.data.transformlibfactory class method)": [[66, "otx.core.data.TransformLibFactory.generate"]], "hparams_initial (otx.core.data.otxdatamodule property)": [[66, "otx.core.data.OTXDataModule.hparams_initial"]], "otx.core.data": [[66, "module-otx.core.data"]], "predict_dataloader() (otx.core.data.otxdatamodule method)": [[66, "otx.core.data.OTXDataModule.predict_dataloader"]], "setup() (otx.core.data.otxdatamodule method)": [[66, "otx.core.data.OTXDataModule.setup"]], "teardown() (otx.core.data.otxdatamodule method)": [[66, "otx.core.data.OTXDataModule.teardown"]], "test_dataloader() (otx.core.data.otxdatamodule method)": [[66, "otx.core.data.OTXDataModule.test_dataloader"]], "train_dataloader() (otx.core.data.otxdatamodule method)": [[66, "otx.core.data.OTXDataModule.train_dataloader"]], "val_dataloader() (otx.core.data.otxdatamodule method)": [[66, "otx.core.data.OTXDataModule.val_dataloader"]], "otx.core.exporter": [[67, "module-otx.core.exporter"]], "otxmodelexporter (class in otx.core.exporter.base)": [[68, "otx.core.exporter.base.OTXModelExporter"]], "export() (otx.core.exporter.base.otxmodelexporter method)": [[68, "otx.core.exporter.base.OTXModelExporter.export"]], "otx.core.exporter.base": [[68, "module-otx.core.exporter.base"]], "to_exportable_code() (otx.core.exporter.base.otxmodelexporter method)": [[68, "otx.core.exporter.base.OTXModelExporter.to_exportable_code"]], "to_onnx() (otx.core.exporter.base.otxmodelexporter method)": [[68, "otx.core.exporter.base.OTXModelExporter.to_onnx"]], "to_openvino() (otx.core.exporter.base.otxmodelexporter method)": [[68, "otx.core.exporter.base.OTXModelExporter.to_openvino"]], "otx.core.exporter.exportable_code": [[69, "module-otx.core.exporter.exportable_code"]], "otx.core.exporter.exportable_code.demo": [[70, "module-otx.core.exporter.exportable_code.demo"]], "mmdeployexporter (class in otx.core.exporter.mmdeploy)": [[71, "otx.core.exporter.mmdeploy.MMdeployExporter"]], "cvt_torch2onnx_partition() (otx.core.exporter.mmdeploy.mmdeployexporter method)": [[71, "otx.core.exporter.mmdeploy.MMdeployExporter.cvt_torch2onnx_partition"]], "load_mmconfig_from_pkg() (in module otx.core.exporter.mmdeploy)": [[71, "otx.core.exporter.mmdeploy.load_mmconfig_from_pkg"]], "mmdeploy_init_model_helper() (in module otx.core.exporter.mmdeploy)": [[71, "otx.core.exporter.mmdeploy.mmdeploy_init_model_helper"]], "otx.core.exporter.mmdeploy": [[71, "module-otx.core.exporter.mmdeploy"]], "patch_input_shape() (in module otx.core.exporter.mmdeploy)": [[71, "otx.core.exporter.mmdeploy.patch_input_shape"]], "patch_ir_scale_factor() (in module otx.core.exporter.mmdeploy)": [[71, "otx.core.exporter.mmdeploy.patch_ir_scale_factor"]], "to_onnx() (otx.core.exporter.mmdeploy.mmdeployexporter method)": [[71, "otx.core.exporter.mmdeploy.MMdeployExporter.to_onnx"]], "to_openvino() (otx.core.exporter.mmdeploy.mmdeployexporter method)": [[71, "otx.core.exporter.mmdeploy.MMdeployExporter.to_openvino"]], "use_temporary_default_scope() (in module otx.core.exporter.mmdeploy)": [[71, "otx.core.exporter.mmdeploy.use_temporary_default_scope"]], "otxnativemodelexporter (class in otx.core.exporter.native)": [[72, "otx.core.exporter.native.OTXNativeModelExporter"]], "otx.core.exporter.native": [[72, "module-otx.core.exporter.native"]], "to_onnx() (otx.core.exporter.native.otxnativemodelexporter method)": [[72, "otx.core.exporter.native.OTXNativeModelExporter.to_onnx"]], "to_openvino() (otx.core.exporter.native.otxnativemodelexporter method)": [[72, "otx.core.exporter.native.OTXNativeModelExporter.to_openvino"]], "otxvisualpromptingmodelexporter (class in otx.core.exporter.visual_prompting)": [[73, "otx.core.exporter.visual_prompting.OTXVisualPromptingModelExporter"]], "export() (otx.core.exporter.visual_prompting.otxvisualpromptingmodelexporter method)": [[73, "otx.core.exporter.visual_prompting.OTXVisualPromptingModelExporter.export"]], "get_onnx_dummy_inputs() (otx.core.exporter.visual_prompting.otxvisualpromptingmodelexporter method)": [[73, "otx.core.exporter.visual_prompting.OTXVisualPromptingModelExporter.get_onnx_dummy_inputs"]], "otx.core.exporter.visual_prompting": [[73, "module-otx.core.exporter.visual_prompting"]], "to_onnx() (otx.core.exporter.visual_prompting.otxvisualpromptingmodelexporter method)": [[73, "otx.core.exporter.visual_prompting.OTXVisualPromptingModelExporter.to_onnx"]], "to_openvino() (otx.core.exporter.visual_prompting.otxvisualpromptingmodelexporter method)": [[73, "otx.core.exporter.visual_prompting.OTXVisualPromptingModelExporter.to_openvino"]], "otx.core.metrics": [[74, "module-otx.core.metrics"]], "otx.core.model": [[75, "module-otx.core.model"]], "mmactioncompatiblemodel (class in otx.core.model.action_classification)": [[76, "otx.core.model.action_classification.MMActionCompatibleModel"]], "otxactionclsmodel (class in otx.core.model.action_classification)": [[76, "otx.core.model.action_classification.OTXActionClsModel"]], "ovactionclsmodel (class in otx.core.model.action_classification)": [[76, "otx.core.model.action_classification.OVActionClsModel"]], "model_adapter_parameters (otx.core.model.action_classification.ovactionclsmodel property)": [[76, "otx.core.model.action_classification.OVActionClsModel.model_adapter_parameters"]], "otx.core.model.action_classification": [[76, "module-otx.core.model.action_classification"]], "transform_fn() (otx.core.model.action_classification.ovactionclsmodel method)": [[76, "otx.core.model.action_classification.OVActionClsModel.transform_fn"]], "mmactioncompatiblemodel (class in otx.core.model.action_detection)": [[77, "otx.core.model.action_detection.MMActionCompatibleModel"]], "otxactiondetmodel (class in otx.core.model.action_detection)": [[77, "otx.core.model.action_detection.OTXActionDetModel"]], "otx.core.model.action_detection": [[77, "module-otx.core.model.action_detection"]], "otxanomaly (class in otx.core.model.anomaly)": [[78, "otx.core.model.anomaly.OTXAnomaly"]], "configure_callbacks() (otx.core.model.anomaly.otxanomaly method)": [[78, "otx.core.model.anomaly.OTXAnomaly.configure_callbacks"]], "configure_optimizers() (otx.core.model.anomaly.otxanomaly method)": [[78, "otx.core.model.anomaly.OTXAnomaly.configure_optimizers"]], "export() (otx.core.model.anomaly.otxanomaly method)": [[78, "otx.core.model.anomaly.OTXAnomaly.export"]], "forward() (otx.core.model.anomaly.otxanomaly method)": [[78, "otx.core.model.anomaly.OTXAnomaly.forward"]], "input_size (otx.core.model.anomaly.otxanomaly property)": [[78, "otx.core.model.anomaly.OTXAnomaly.input_size"]], "label_info (otx.core.model.anomaly.otxanomaly property)": [[78, "otx.core.model.anomaly.OTXAnomaly.label_info"]], "load_state_dict() (otx.core.model.anomaly.otxanomaly method)": [[78, "otx.core.model.anomaly.OTXAnomaly.load_state_dict"]], "on_predict_batch_end() (otx.core.model.anomaly.otxanomaly method)": [[78, "otx.core.model.anomaly.OTXAnomaly.on_predict_batch_end"]], "on_test_batch_end() (otx.core.model.anomaly.otxanomaly method)": [[78, "otx.core.model.anomaly.OTXAnomaly.on_test_batch_end"]], "otx.core.model.anomaly": [[78, "module-otx.core.model.anomaly"]], "predict_step() (otx.core.model.anomaly.otxanomaly method)": [[78, "otx.core.model.anomaly.OTXAnomaly.predict_step"]], "setup() (otx.core.model.anomaly.otxanomaly method)": [[78, "otx.core.model.anomaly.OTXAnomaly.setup"]], "state_dict() (otx.core.model.anomaly.otxanomaly method)": [[78, "otx.core.model.anomaly.OTXAnomaly.state_dict"]], "task (otx.core.model.anomaly.otxanomaly property)": [[78, "otx.core.model.anomaly.OTXAnomaly.task"]], "trainable_model (otx.core.model.anomaly.otxanomaly property)": [[78, "otx.core.model.anomaly.OTXAnomaly.trainable_model"]], "otxmodel (class in otx.core.model.base)": [[79, "otx.core.model.base.OTXModel"]], "ovmodel (class in otx.core.model.base)": [[79, "otx.core.model.base.OVModel"]], "configure_metric() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.configure_metric"]], "configure_optimizers() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.configure_optimizers"]], "explain_mode (otx.core.model.base.otxmodel attribute)": [[79, "otx.core.model.base.OTXModel.explain_mode"]], "explain_mode (otx.core.model.base.otxmodel property)": [[79, "id0"]], "export() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.export"]], "forward() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.forward"]], "forward() (otx.core.model.base.ovmodel method)": [[79, "otx.core.model.base.OVModel.forward"]], "forward_explain() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.forward_explain"]], "forward_explain() (otx.core.model.base.ovmodel method)": [[79, "otx.core.model.base.OVModel.forward_explain"]], "forward_tiles() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.forward_tiles"]], "get_explain_fn() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.get_explain_fn"]], "label_info (otx.core.model.base.otxmodel property)": [[79, "otx.core.model.base.OTXModel.label_info"]], "load_from_otx_v1_ckpt() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.load_from_otx_v1_ckpt"]], "load_state_dict() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.load_state_dict"]], "load_state_dict_pre_hook() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.load_state_dict_pre_hook"]], "lr_scheduler_step() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.lr_scheduler_step"]], "map_class_names() (otx.core.model.base.otxmodel static method)": [[79, "otx.core.model.base.OTXModel.map_class_names"]], "metric (otx.core.model.base.otxmodel property)": [[79, "otx.core.model.base.OTXModel.metric"]], "model_adapter_parameters (otx.core.model.base.ovmodel property)": [[79, "otx.core.model.base.OVModel.model_adapter_parameters"]], "num_classes (otx.core.model.base.otxmodel property)": [[79, "otx.core.model.base.OTXModel.num_classes"]], "on_test_epoch_end() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.on_test_epoch_end"]], "on_test_epoch_start() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.on_test_epoch_start"]], "on_test_start() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.on_test_start"]], "on_validation_epoch_end() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.on_validation_epoch_end"]], "on_validation_epoch_start() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.on_validation_epoch_start"]], "on_validation_start() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.on_validation_start"]], "optimize() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.optimize"]], "optimize() (otx.core.model.base.ovmodel method)": [[79, "otx.core.model.base.OVModel.optimize"]], "otx.core.model.base": [[79, "module-otx.core.model.base"]], "predict_step() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.predict_step"]], "register_load_state_dict_pre_hook() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.register_load_state_dict_pre_hook"]], "setup() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.setup"]], "state_dict() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.state_dict"]], "test_step() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.test_step"]], "training_step() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.training_step"]], "transform_fn() (otx.core.model.base.ovmodel method)": [[79, "otx.core.model.base.OVModel.transform_fn"]], "validation_step() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.validation_step"]], "mmpretrainhlabelclsmodel (class in otx.core.model.classification)": [[80, "otx.core.model.classification.MMPretrainHlabelClsModel"]], "mmpretrainmulticlassclsmodel (class in otx.core.model.classification)": [[80, "otx.core.model.classification.MMPretrainMulticlassClsModel"]], "mmpretrainmultilabelclsmodel (class in otx.core.model.classification)": [[80, "otx.core.model.classification.MMPretrainMultilabelClsModel"]], "otxhlabelclsmodel (class in otx.core.model.classification)": [[80, "otx.core.model.classification.OTXHlabelClsModel"]], "otxmulticlassclsmodel (class in otx.core.model.classification)": [[80, "otx.core.model.classification.OTXMulticlassClsModel"]], "otxmultilabelclsmodel (class in otx.core.model.classification)": [[80, "otx.core.model.classification.OTXMultilabelClsModel"]], "ovhlabelclassificationmodel (class in otx.core.model.classification)": [[80, "otx.core.model.classification.OVHlabelClassificationModel"]], "ovmulticlassclassificationmodel (class in otx.core.model.classification)": [[80, "otx.core.model.classification.OVMulticlassClassificationModel"]], "ovmultilabelclassificationmodel (class in otx.core.model.classification)": [[80, "otx.core.model.classification.OVMultilabelClassificationModel"]], "otx.core.model.classification": [[80, "module-otx.core.model.classification"]], "explainableotxdetmodel (class in otx.core.model.detection)": [[81, "otx.core.model.detection.ExplainableOTXDetModel"]], "mmdetcompatiblemodel (class in otx.core.model.detection)": [[81, "otx.core.model.detection.MMDetCompatibleModel"]], "otxdetectionmodel (class in otx.core.model.detection)": [[81, "otx.core.model.detection.OTXDetectionModel"]], "ovdetectionmodel (class in otx.core.model.detection)": [[81, "otx.core.model.detection.OVDetectionModel"]], "forward_explain() (otx.core.model.detection.explainableotxdetmodel method)": [[81, "otx.core.model.detection.ExplainableOTXDetModel.forward_explain"]], "forward_tiles() (otx.core.model.detection.otxdetectionmodel method)": [[81, "otx.core.model.detection.OTXDetectionModel.forward_tiles"]], "get_explain_fn() (otx.core.model.detection.explainableotxdetmodel method)": [[81, "otx.core.model.detection.ExplainableOTXDetModel.get_explain_fn"]], "get_num_anchors() (otx.core.model.detection.explainableotxdetmodel method)": [[81, "otx.core.model.detection.ExplainableOTXDetModel.get_num_anchors"]], "load_state_dict() (otx.core.model.detection.otxdetectionmodel method)": [[81, "otx.core.model.detection.OTXDetectionModel.load_state_dict"]], "otx.core.model.detection": [[81, "module-otx.core.model.detection"]], "explainableotxinstancesegmodel (class in otx.core.model.instance_segmentation)": [[82, "otx.core.model.instance_segmentation.ExplainableOTXInstanceSegModel"]], "mmdetinstancesegcompatiblemodel (class in otx.core.model.instance_segmentation)": [[82, "otx.core.model.instance_segmentation.MMDetInstanceSegCompatibleModel"]], "otxinstancesegmodel (class in otx.core.model.instance_segmentation)": [[82, "otx.core.model.instance_segmentation.OTXInstanceSegModel"]], "ovinstancesegmentationmodel (class in otx.core.model.instance_segmentation)": [[82, "otx.core.model.instance_segmentation.OVInstanceSegmentationModel"]], "forward_explain() (otx.core.model.instance_segmentation.explainableotxinstancesegmodel method)": [[82, "otx.core.model.instance_segmentation.ExplainableOTXInstanceSegModel.forward_explain"]], "forward_tiles() (otx.core.model.instance_segmentation.otxinstancesegmodel method)": [[82, "otx.core.model.instance_segmentation.OTXInstanceSegModel.forward_tiles"]], "get_explain_fn() (otx.core.model.instance_segmentation.explainableotxinstancesegmodel method)": [[82, "otx.core.model.instance_segmentation.ExplainableOTXInstanceSegModel.get_explain_fn"]], "load_state_dict() (otx.core.model.instance_segmentation.otxinstancesegmodel method)": [[82, "otx.core.model.instance_segmentation.OTXInstanceSegModel.load_state_dict"]], "otx.core.model.instance_segmentation": [[82, "module-otx.core.model.instance_segmentation"]], "mmdetrotateddetmodel (class in otx.core.model.rotated_detection)": [[83, "otx.core.model.rotated_detection.MMDetRotatedDetModel"]], "otxrotateddetmodel (class in otx.core.model.rotated_detection)": [[83, "otx.core.model.rotated_detection.OTXRotatedDetModel"]], "ovrotateddetectionmodel (class in otx.core.model.rotated_detection)": [[83, "otx.core.model.rotated_detection.OVRotatedDetectionModel"]], "otx.core.model.rotated_detection": [[83, "module-otx.core.model.rotated_detection"]], "predict_step() (otx.core.model.rotated_detection.otxrotateddetmodel method)": [[83, "otx.core.model.rotated_detection.OTXRotatedDetModel.predict_step"]], "mmsegcompatiblemodel (class in otx.core.model.segmentation)": [[84, "otx.core.model.segmentation.MMSegCompatibleModel"]], "otxsegmentationmodel (class in otx.core.model.segmentation)": [[84, "otx.core.model.segmentation.OTXSegmentationModel"]], "ovsegmentationmodel (class in otx.core.model.segmentation)": [[84, "otx.core.model.segmentation.OVSegmentationModel"]], "otx.core.model.segmentation": [[84, "module-otx.core.model.segmentation"]], "otx.core.model.utils": [[85, "module-otx.core.model.utils"]], "actiondatapreprocessor (class in otx.core.model.utils.mmaction)": [[86, "otx.core.model.utils.mmaction.ActionDataPreprocessor"]], "create_model() (in module otx.core.model.utils.mmaction)": [[86, "otx.core.model.utils.mmaction.create_model"]], "device (otx.core.model.utils.mmaction.actiondatapreprocessor property)": [[86, "otx.core.model.utils.mmaction.ActionDataPreprocessor.device"]], "otx.core.model.utils.mmaction": [[86, "module-otx.core.model.utils.mmaction"]], "detdatapreprocessor (class in otx.core.model.utils.mmdet)": [[87, "otx.core.model.utils.mmdet.DetDataPreprocessor"]], "create_model() (in module otx.core.model.utils.mmdet)": [[87, "otx.core.model.utils.mmdet.create_model"]], "device (otx.core.model.utils.mmdet.detdatapreprocessor property)": [[87, "otx.core.model.utils.mmdet.DetDataPreprocessor.device"]], "otx.core.model.utils.mmdet": [[87, "module-otx.core.model.utils.mmdet"]], "clsdatapreprocessor (class in otx.core.model.utils.mmpretrain)": [[88, "otx.core.model.utils.mmpretrain.ClsDataPreprocessor"]], "explainablemixinmmpretrainmodel (class in otx.core.model.utils.mmpretrain)": [[88, "otx.core.model.utils.mmpretrain.ExplainableMixInMMPretrainModel"]], "create_model() (in module otx.core.model.utils.mmpretrain)": [[88, "otx.core.model.utils.mmpretrain.create_model"]], "device (otx.core.model.utils.mmpretrain.clsdatapreprocessor property)": [[88, "otx.core.model.utils.mmpretrain.ClsDataPreprocessor.device"]], "forward_explain() (otx.core.model.utils.mmpretrain.explainablemixinmmpretrainmodel method)": [[88, "otx.core.model.utils.mmpretrain.ExplainableMixInMMPretrainModel.forward_explain"]], "get_explain_fn() (otx.core.model.utils.mmpretrain.explainablemixinmmpretrainmodel method)": [[88, "otx.core.model.utils.mmpretrain.ExplainableMixInMMPretrainModel.get_explain_fn"]], "has_gap (otx.core.model.utils.mmpretrain.explainablemixinmmpretrainmodel property)": [[88, "otx.core.model.utils.mmpretrain.ExplainableMixInMMPretrainModel.has_gap"]], "head_forward_fn() (otx.core.model.utils.mmpretrain.explainablemixinmmpretrainmodel method)": [[88, "otx.core.model.utils.mmpretrain.ExplainableMixInMMPretrainModel.head_forward_fn"]], "otx.core.model.utils.mmpretrain": [[88, "module-otx.core.model.utils.mmpretrain"]], "segdatapreprocessor (class in otx.core.model.utils.mmseg)": [[89, "otx.core.model.utils.mmseg.SegDataPreProcessor"]], "create_model() (in module otx.core.model.utils.mmseg)": [[89, "otx.core.model.utils.mmseg.create_model"]], "device (otx.core.model.utils.mmseg.segdatapreprocessor property)": [[89, "otx.core.model.utils.mmseg.SegDataPreProcessor.device"]], "forward() (otx.core.model.utils.mmseg.segdatapreprocessor method)": [[89, "otx.core.model.utils.mmseg.SegDataPreProcessor.forward"]], "otx.core.model.utils.mmseg": [[89, "module-otx.core.model.utils.mmseg"]], "stack_batch() (in module otx.core.model.utils.mmseg)": [[89, "otx.core.model.utils.mmseg.stack_batch"]], "otxvisualpromptingmodel (class in otx.core.model.visual_prompting)": [[90, "otx.core.model.visual_prompting.OTXVisualPromptingModel"]], "otxzeroshotvisualpromptingmodel (class in otx.core.model.visual_prompting)": [[90, "otx.core.model.visual_prompting.OTXZeroShotVisualPromptingModel"]], "ovvisualpromptingmodel (class in otx.core.model.visual_prompting)": [[90, "otx.core.model.visual_prompting.OVVisualPromptingModel"]], "ovzeroshotvisualpromptingmodel (class in otx.core.model.visual_prompting)": [[90, "otx.core.model.visual_prompting.OVZeroShotVisualPromptingModel"]], "configure_optimizers() (otx.core.model.visual_prompting.otxzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OTXZeroShotVisualPromptingModel.configure_optimizers"]], "expand_reference_info() (otx.core.model.visual_prompting.ovzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OVZeroShotVisualPromptingModel.expand_reference_info"]], "forward() (otx.core.model.visual_prompting.ovvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OVVisualPromptingModel.forward"]], "forward() (otx.core.model.visual_prompting.ovzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OVZeroShotVisualPromptingModel.forward"]], "infer() (otx.core.model.visual_prompting.ovzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OVZeroShotVisualPromptingModel.infer"]], "initialize_reference_info() (otx.core.model.visual_prompting.ovzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OVZeroShotVisualPromptingModel.initialize_reference_info"]], "learn() (otx.core.model.visual_prompting.ovzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OVZeroShotVisualPromptingModel.learn"]], "load_latest_reference_info() (otx.core.model.visual_prompting.ovzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OVZeroShotVisualPromptingModel.load_latest_reference_info"]], "on_predict_start() (otx.core.model.visual_prompting.otxzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OTXZeroShotVisualPromptingModel.on_predict_start"]], "on_test_start() (otx.core.model.visual_prompting.otxzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OTXZeroShotVisualPromptingModel.on_test_start"]], "on_train_epoch_end() (otx.core.model.visual_prompting.otxzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OTXZeroShotVisualPromptingModel.on_train_epoch_end"]], "on_train_epoch_start() (otx.core.model.visual_prompting.otxzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OTXZeroShotVisualPromptingModel.on_train_epoch_start"]], "on_train_start() (otx.core.model.visual_prompting.otxzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OTXZeroShotVisualPromptingModel.on_train_start"]], "on_validation_epoch_end() (otx.core.model.visual_prompting.otxzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OTXZeroShotVisualPromptingModel.on_validation_epoch_end"]], "on_validation_epoch_start() (otx.core.model.visual_prompting.otxzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OTXZeroShotVisualPromptingModel.on_validation_epoch_start"]], "optimize() (otx.core.model.visual_prompting.ovvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OVVisualPromptingModel.optimize"]], "otx.core.model.visual_prompting": [[90, "module-otx.core.model.visual_prompting"]], "test_step() (otx.core.model.visual_prompting.otxvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OTXVisualPromptingModel.test_step"]], "test_step() (otx.core.model.visual_prompting.otxzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OTXZeroShotVisualPromptingModel.test_step"]], "test_step() (otx.core.model.visual_prompting.ovvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OVVisualPromptingModel.test_step"]], "test_step() (otx.core.model.visual_prompting.ovzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OVZeroShotVisualPromptingModel.test_step"]], "training_step() (otx.core.model.visual_prompting.otxzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OTXZeroShotVisualPromptingModel.training_step"]], "validation_step() (otx.core.model.visual_prompting.otxvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OTXVisualPromptingModel.validation_step"]], "validation_step() (otx.core.model.visual_prompting.otxzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OTXZeroShotVisualPromptingModel.validation_step"]], "validation_step() (otx.core.model.visual_prompting.ovvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OVVisualPromptingModel.validation_step"]], "validation_step() (otx.core.model.visual_prompting.ovzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OVZeroShotVisualPromptingModel.validation_step"]], "linearwarmupscheduler (class in otx.core.schedulers)": [[91, "otx.core.schedulers.LinearWarmupScheduler"]], "linearwarmupschedulercallable (class in otx.core.schedulers)": [[91, "otx.core.schedulers.LinearWarmupSchedulerCallable"]], "__call__() (otx.core.schedulers.linearwarmupschedulercallable method)": [[91, "otx.core.schedulers.LinearWarmupSchedulerCallable.__call__"]], "activated (otx.core.schedulers.linearwarmupscheduler property)": [[91, "otx.core.schedulers.LinearWarmupScheduler.activated"]], "otx.core.schedulers": [[91, "module-otx.core.schedulers"]], "step() (otx.core.schedulers.linearwarmupscheduler method)": [[91, "otx.core.schedulers.LinearWarmupScheduler.step"]], "hlabelinfo (class in otx.core.types)": [[92, "otx.core.types.HLabelInfo"]], "labelinfo (class in otx.core.types)": [[92, "otx.core.types.LabelInfo"]], "nulllabelinfo (class in otx.core.types)": [[92, "otx.core.types.NullLabelInfo"]], "otxtasktype (class in otx.core.types)": [[92, "otx.core.types.OTXTaskType"]], "seglabelinfo (class in otx.core.types)": [[92, "otx.core.types.SegLabelInfo"]], "as_dict() (otx.core.types.labelinfo method)": [[92, "otx.core.types.LabelInfo.as_dict"]], "as_head_config_dict() (otx.core.types.hlabelinfo method)": [[92, "otx.core.types.HLabelInfo.as_head_config_dict"]], "from_dm_label_groups() (otx.core.types.hlabelinfo class method)": [[92, "otx.core.types.HLabelInfo.from_dm_label_groups"]], "from_dm_label_groups() (otx.core.types.labelinfo class method)": [[92, "otx.core.types.LabelInfo.from_dm_label_groups"]], "from_json() (otx.core.types.hlabelinfo class method)": [[92, "otx.core.types.HLabelInfo.from_json"]], "from_json() (otx.core.types.labelinfo class method)": [[92, "otx.core.types.LabelInfo.from_json"]], "from_json() (otx.core.types.nulllabelinfo class method)": [[92, "otx.core.types.NullLabelInfo.from_json"]], "from_num_classes() (otx.core.types.labelinfo class method)": [[92, "otx.core.types.LabelInfo.from_num_classes"]], "num_classes (otx.core.types.labelinfo property)": [[92, "otx.core.types.LabelInfo.num_classes"]], "otx.core.types": [[92, "module-otx.core.types"]], "to_json() (otx.core.types.labelinfo method)": [[92, "otx.core.types.LabelInfo.to_json"]], "otx.core.utils": [[93, "module-otx.core.utils"]], "build_mm_model() (in module otx.core.utils.build)": [[94, "otx.core.utils.build.build_mm_model"]], "get_classification_layers() (in module otx.core.utils.build)": [[94, "otx.core.utils.build.get_classification_layers"]], "get_default_num_async_infer_requests() (in module otx.core.utils.build)": [[94, "otx.core.utils.build.get_default_num_async_infer_requests"]], "modify_num_classes() (in module otx.core.utils.build)": [[94, "otx.core.utils.build.modify_num_classes"]], "otx.core.utils.build": [[94, "module-otx.core.utils.build"]], "trainerargumentscache (class in otx.core.utils.cache)": [[95, "otx.core.utils.cache.TrainerArgumentsCache"]], "args (otx.core.utils.cache.trainerargumentscache property)": [[95, "otx.core.utils.cache.TrainerArgumentsCache.args"]], "get_trainer_constructor_args() (otx.core.utils.cache.trainerargumentscache static method)": [[95, "otx.core.utils.cache.TrainerArgumentsCache.get_trainer_constructor_args"]], "otx.core.utils.cache": [[95, "module-otx.core.utils.cache"]], "requires_update() (otx.core.utils.cache.trainerargumentscache method)": [[95, "otx.core.utils.cache.TrainerArgumentsCache.requires_update"]], "update() (otx.core.utils.cache.trainerargumentscache method)": [[95, "otx.core.utils.cache.TrainerArgumentsCache.update"]], "convert_conf_to_mmconfig_dict() (in module otx.core.utils.config)": [[96, "otx.core.utils.config.convert_conf_to_mmconfig_dict"]], "inplace_num_classes() (in module otx.core.utils.config)": [[96, "otx.core.utils.config.inplace_num_classes"]], "mmconfig_dict_to_dict() (in module otx.core.utils.config)": [[96, "otx.core.utils.config.mmconfig_dict_to_dict"]], "otx.core.utils.config": [[96, "module-otx.core.utils.config"]], "to_list() (in module otx.core.utils.config)": [[96, "otx.core.utils.config.to_list"]], "to_tuple() (in module otx.core.utils.config)": [[96, "otx.core.utils.config.to_tuple"]], "get_otx_root_path() (in module otx.core.utils.imports)": [[97, "otx.core.utils.imports.get_otx_root_path"]], "otx.core.utils.imports": [[97, "module-otx.core.utils.imports"]], "instantiate_callbacks() (in module otx.core.utils.instantiators)": [[98, "otx.core.utils.instantiators.instantiate_callbacks"]], "instantiate_loggers() (in module otx.core.utils.instantiators)": [[98, "otx.core.utils.instantiators.instantiate_loggers"]], "instantiate_sampler() (in module otx.core.utils.instantiators)": [[98, "otx.core.utils.instantiators.instantiate_sampler"]], "otx.core.utils.instantiators": [[98, "module-otx.core.utils.instantiators"]], "partial_instantiate_class() (in module otx.core.utils.instantiators)": [[98, "otx.core.utils.instantiators.partial_instantiate_class"]], "encode_rle() (in module otx.core.utils.mask_util)": [[99, "otx.core.utils.mask_util.encode_rle"]], "otx.core.utils.mask_util": [[99, "module-otx.core.utils.mask_util"]], "polygon_to_bitmap() (in module otx.core.utils.mask_util)": [[99, "otx.core.utils.mask_util.polygon_to_bitmap"]], "polygon_to_rle() (in module otx.core.utils.mask_util)": [[99, "otx.core.utils.mask_util.polygon_to_rle"]], "ensure_callable() (in module otx.core.utils.miscellaneous)": [[100, "otx.core.utils.miscellaneous.ensure_callable"]], "otx.core.utils.miscellaneous": [[100, "module-otx.core.utils.miscellaneous"]], "get_pylogger() (in module otx.core.utils.pylogger)": [[101, "otx.core.utils.pylogger.get_pylogger"]], "otx.core.utils.pylogger": [[101, "module-otx.core.utils.pylogger"]], "detectiontilemerge (class in otx.core.utils.tile_merge)": [[102, "otx.core.utils.tile_merge.DetectionTileMerge"]], "instancesegtilemerge (class in otx.core.utils.tile_merge)": [[102, "otx.core.utils.tile_merge.InstanceSegTileMerge"]], "tilemerge (class in otx.core.utils.tile_merge)": [[102, "otx.core.utils.tile_merge.TileMerge"]], "merge() (otx.core.utils.tile_merge.detectiontilemerge method)": [[102, "otx.core.utils.tile_merge.DetectionTileMerge.merge"]], "merge() (otx.core.utils.tile_merge.instancesegtilemerge method)": [[102, "otx.core.utils.tile_merge.InstanceSegTileMerge.merge"]], "merge() (otx.core.utils.tile_merge.tilemerge method)": [[102, "otx.core.utils.tile_merge.TileMerge.merge"]], "nms_postprocess() (otx.core.utils.tile_merge.tilemerge method)": [[102, "otx.core.utils.tile_merge.TileMerge.nms_postprocess"]], "otx.core.utils.tile_merge": [[102, "module-otx.core.utils.tile_merge"]], "get_adaptive_num_workers() (in module otx.core.utils.utils)": [[103, "otx.core.utils.utils.get_adaptive_num_workers"]], "get_idx_list_per_classes() (in module otx.core.utils.utils)": [[103, "otx.core.utils.utils.get_idx_list_per_classes"]], "get_mean_std_from_data_processing() (in module otx.core.utils.utils)": [[103, "otx.core.utils.utils.get_mean_std_from_data_processing"]], "is_ckpt_for_finetuning() (in module otx.core.utils.utils)": [[103, "otx.core.utils.utils.is_ckpt_for_finetuning"]], "is_ckpt_from_otx_v1() (in module otx.core.utils.utils)": [[103, "otx.core.utils.utils.is_ckpt_from_otx_v1"]], "otx.core.utils.utils": [[103, "module-otx.core.utils.utils"]], "anomalydatamodule (class in otx.data)": [[104, "otx.data.AnomalyDataModule"]], "otx.data": [[104, "module-otx.data"]], "engine (class in otx.engine)": [[105, "otx.engine.Engine"]], "datamodule (otx.engine.engine property)": [[105, "otx.engine.Engine.datamodule"]], "device (otx.engine.engine property)": [[105, "otx.engine.Engine.device"]], "explain() (otx.engine.engine method)": [[105, "otx.engine.Engine.explain"]], "export() (otx.engine.engine method)": [[105, "otx.engine.Engine.export"]], "from_config() (otx.engine.engine class method)": [[105, "otx.engine.Engine.from_config"]], "from_model_name() (otx.engine.engine class method)": [[105, "otx.engine.Engine.from_model_name"]], "model (otx.engine.engine property)": [[105, "otx.engine.Engine.model"]], "optimize() (otx.engine.engine method)": [[105, "otx.engine.Engine.optimize"]], "otx.engine": [[105, "module-otx.engine"]], "predict() (otx.engine.engine method)": [[105, "otx.engine.Engine.predict"]], "test() (otx.engine.engine method)": [[105, "otx.engine.Engine.test"]], "train() (otx.engine.engine method)": [[105, "otx.engine.Engine.train"]], "trainer (otx.engine.engine property)": [[105, "otx.engine.Engine.trainer"]], "trainer_params (otx.engine.engine property)": [[105, "otx.engine.Engine.trainer_params"]], "work_dir (otx.engine.engine property)": [[105, "otx.engine.Engine.work_dir"]], "hyperband (class in otx.hpo)": [[106, "otx.hpo.HyperBand"]], "trialstatus (class in otx.hpo)": [[106, "otx.hpo.TrialStatus"]], "auto_config() (otx.hpo.hyperband method)": [[106, "otx.hpo.HyperBand.auto_config"]], "get_best_config() (otx.hpo.hyperband method)": [[106, "otx.hpo.HyperBand.get_best_config"]], "get_next_sample() (otx.hpo.hyperband method)": [[106, "otx.hpo.HyperBand.get_next_sample"]], "get_progress() (otx.hpo.hyperband method)": [[106, "otx.hpo.HyperBand.get_progress"]], "is_done() (otx.hpo.hyperband method)": [[106, "otx.hpo.HyperBand.is_done"]], "otx.hpo": [[106, "module-otx.hpo"]], "print_result() (otx.hpo.hyperband method)": [[106, "otx.hpo.HyperBand.print_result"]], "report_score() (otx.hpo.hyperband method)": [[106, "otx.hpo.HyperBand.report_score"]], "run_hpo_loop() (in module otx.hpo)": [[106, "otx.hpo.run_hpo_loop"]], "save_results() (otx.hpo.hyperband method)": [[106, "otx.hpo.HyperBand.save_results"]], "otx.recipe": [[107, "module-otx.recipe"]], "otx.tools": [[108, "module-otx.tools"]], "configconverter (class in otx.tools.converter)": [[109, "otx.tools.converter.ConfigConverter"]], "convert() (otx.tools.converter.configconverter static method)": [[109, "otx.tools.converter.ConfigConverter.convert"]], "instantiate() (otx.tools.converter.configconverter static method)": [[109, "otx.tools.converter.ConfigConverter.instantiate"]], "otx.tools.converter": [[109, "module-otx.tools.converter"]], "otx.tools.translate_mmrecipe": [[110, "module-otx.tools.translate_mmrecipe"]], "append_main_proc_signal_handler() (in module otx.utils)": [[111, "otx.utils.append_main_proc_signal_handler"]], "append_signal_handler() (in module otx.utils)": [[111, "otx.utils.append_signal_handler"]], "otx.utils": [[111, "module-otx.utils"]]}}) \ No newline at end of file +Search.setIndex({"docnames": ["guide/explanation/additional_features/adaptive_training", "guide/explanation/additional_features/auto_configuration", "guide/explanation/additional_features/class_incremental_sampler", "guide/explanation/additional_features/fast_data_loading", "guide/explanation/additional_features/hpo", "guide/explanation/additional_features/index", "guide/explanation/additional_features/models_optimization", "guide/explanation/additional_features/tiling", "guide/explanation/additional_features/xai", "guide/explanation/algorithms/action/action_classification", "guide/explanation/algorithms/action/action_detection", "guide/explanation/algorithms/action/index", "guide/explanation/algorithms/anomaly/index", "guide/explanation/algorithms/classification/hierarhical_classification", "guide/explanation/algorithms/classification/index", "guide/explanation/algorithms/classification/multi_class_classification", "guide/explanation/algorithms/classification/multi_label_classification", "guide/explanation/algorithms/index", "guide/explanation/algorithms/object_detection/index", "guide/explanation/algorithms/object_detection/object_detection", "guide/explanation/algorithms/segmentation/index", "guide/explanation/algorithms/segmentation/instance_segmentation", "guide/explanation/algorithms/segmentation/semantic_segmentation", "guide/explanation/algorithms/visual_prompting/fine_tuning", "guide/explanation/algorithms/visual_prompting/index", "guide/explanation/algorithms/visual_prompting/zero_shot", "guide/explanation/product_design", "guide/get_started/api_tutorial", "guide/get_started/cli_commands", "guide/get_started/installation", "guide/get_started/introduction", "guide/index", "guide/reference/_autosummary/otx", "guide/reference/_autosummary/otx.algo", "guide/reference/_autosummary/otx.algo.action_classification", "guide/reference/_autosummary/otx.algo.classification", "guide/reference/_autosummary/otx.algo.classification.backbones", "guide/reference/_autosummary/otx.algo.classification.heads", "guide/reference/_autosummary/otx.algo.classification.losses", "guide/reference/_autosummary/otx.algo.detection", "guide/reference/_autosummary/otx.algo.detection.backbones", "guide/reference/_autosummary/otx.algo.detection.backbones.pytorchcv_backbones", "guide/reference/_autosummary/otx.algo.detection.heads", "guide/reference/_autosummary/otx.algo.detection.losses", "guide/reference/_autosummary/otx.algo.segmentation", "guide/reference/_autosummary/otx.algo.segmentation.backbones", "guide/reference/_autosummary/otx.algo.segmentation.heads", "guide/reference/_autosummary/otx.algo.segmentation.losses", "guide/reference/_autosummary/otx.algo.visual_prompting", "guide/reference/_autosummary/otx.algo.visual_prompting.backbones", "guide/reference/_autosummary/otx.algo.visual_prompting.decoders", "guide/reference/_autosummary/otx.algo.visual_prompting.encoders", "guide/reference/_autosummary/otx.cli", "guide/reference/_autosummary/otx.cli.cli", "guide/reference/_autosummary/otx.cli.install", "guide/reference/_autosummary/otx.cli.utils", "guide/reference/_autosummary/otx.cli.utils.help_formatter", "guide/reference/_autosummary/otx.cli.utils.installation", "guide/reference/_autosummary/otx.cli.utils.jsonargparse", "guide/reference/_autosummary/otx.cli.utils.workspace", "guide/reference/_autosummary/otx.core", "guide/reference/_autosummary/otx.core.config", "guide/reference/_autosummary/otx.core.config.data", "guide/reference/_autosummary/otx.core.config.device", "guide/reference/_autosummary/otx.core.config.explain", "guide/reference/_autosummary/otx.core.config.hpo", "guide/reference/_autosummary/otx.core.data", "guide/reference/_autosummary/otx.core.exporter", "guide/reference/_autosummary/otx.core.exporter.base", "guide/reference/_autosummary/otx.core.exporter.exportable_code", "guide/reference/_autosummary/otx.core.exporter.exportable_code.demo", "guide/reference/_autosummary/otx.core.exporter.mmdeploy", "guide/reference/_autosummary/otx.core.exporter.native", "guide/reference/_autosummary/otx.core.exporter.visual_prompting", "guide/reference/_autosummary/otx.core.metrics", "guide/reference/_autosummary/otx.core.model", "guide/reference/_autosummary/otx.core.model.action_classification", "guide/reference/_autosummary/otx.core.model.action_detection", "guide/reference/_autosummary/otx.core.model.anomaly", "guide/reference/_autosummary/otx.core.model.base", "guide/reference/_autosummary/otx.core.model.classification", "guide/reference/_autosummary/otx.core.model.detection", "guide/reference/_autosummary/otx.core.model.instance_segmentation", "guide/reference/_autosummary/otx.core.model.rotated_detection", "guide/reference/_autosummary/otx.core.model.segmentation", "guide/reference/_autosummary/otx.core.model.utils", "guide/reference/_autosummary/otx.core.model.utils.mmaction", "guide/reference/_autosummary/otx.core.model.utils.mmdet", "guide/reference/_autosummary/otx.core.model.utils.mmpretrain", "guide/reference/_autosummary/otx.core.model.utils.mmseg", "guide/reference/_autosummary/otx.core.model.visual_prompting", "guide/reference/_autosummary/otx.core.schedulers", "guide/reference/_autosummary/otx.core.types", "guide/reference/_autosummary/otx.core.utils", "guide/reference/_autosummary/otx.core.utils.build", "guide/reference/_autosummary/otx.core.utils.cache", "guide/reference/_autosummary/otx.core.utils.config", "guide/reference/_autosummary/otx.core.utils.imports", "guide/reference/_autosummary/otx.core.utils.instantiators", "guide/reference/_autosummary/otx.core.utils.mask_util", "guide/reference/_autosummary/otx.core.utils.miscellaneous", "guide/reference/_autosummary/otx.core.utils.pylogger", "guide/reference/_autosummary/otx.core.utils.tile_merge", "guide/reference/_autosummary/otx.core.utils.utils", "guide/reference/_autosummary/otx.data", "guide/reference/_autosummary/otx.engine", "guide/reference/_autosummary/otx.hpo", "guide/reference/_autosummary/otx.recipe", "guide/reference/_autosummary/otx.tools", "guide/reference/_autosummary/otx.tools.converter", "guide/reference/_autosummary/otx.tools.translate_mmrecipe", "guide/reference/_autosummary/otx.utils", "guide/reference/index", "guide/release_notes/index", "guide/tutorials/advanced/configuration", "guide/tutorials/advanced/index", "guide/tutorials/base/explain", "guide/tutorials/base/export", "guide/tutorials/base/how_to_train/action_classification", "guide/tutorials/base/how_to_train/action_detection", "guide/tutorials/base/how_to_train/anomaly_detection", "guide/tutorials/base/how_to_train/classification", "guide/tutorials/base/how_to_train/detection", "guide/tutorials/base/how_to_train/index", "guide/tutorials/base/how_to_train/instance_segmentation", "guide/tutorials/base/how_to_train/semantic_segmentation", "guide/tutorials/base/how_to_train/visual_prompting", "guide/tutorials/base/index", "index"], "filenames": ["guide/explanation/additional_features/adaptive_training.rst", "guide/explanation/additional_features/auto_configuration.rst", "guide/explanation/additional_features/class_incremental_sampler.rst", "guide/explanation/additional_features/fast_data_loading.rst", "guide/explanation/additional_features/hpo.rst", "guide/explanation/additional_features/index.rst", "guide/explanation/additional_features/models_optimization.rst", "guide/explanation/additional_features/tiling.rst", "guide/explanation/additional_features/xai.rst", "guide/explanation/algorithms/action/action_classification.rst", "guide/explanation/algorithms/action/action_detection.rst", "guide/explanation/algorithms/action/index.rst", "guide/explanation/algorithms/anomaly/index.rst", "guide/explanation/algorithms/classification/hierarhical_classification.rst", "guide/explanation/algorithms/classification/index.rst", "guide/explanation/algorithms/classification/multi_class_classification.rst", "guide/explanation/algorithms/classification/multi_label_classification.rst", "guide/explanation/algorithms/index.rst", "guide/explanation/algorithms/object_detection/index.rst", "guide/explanation/algorithms/object_detection/object_detection.rst", "guide/explanation/algorithms/segmentation/index.rst", "guide/explanation/algorithms/segmentation/instance_segmentation.rst", "guide/explanation/algorithms/segmentation/semantic_segmentation.rst", "guide/explanation/algorithms/visual_prompting/fine_tuning.rst", "guide/explanation/algorithms/visual_prompting/index.rst", "guide/explanation/algorithms/visual_prompting/zero_shot.rst", "guide/explanation/product_design.rst", "guide/get_started/api_tutorial.rst", "guide/get_started/cli_commands.rst", "guide/get_started/installation.rst", "guide/get_started/introduction.rst", "guide/index.rst", "guide/reference/_autosummary/otx.rst", "guide/reference/_autosummary/otx.algo.rst", "guide/reference/_autosummary/otx.algo.action_classification.rst", "guide/reference/_autosummary/otx.algo.classification.rst", "guide/reference/_autosummary/otx.algo.classification.backbones.rst", "guide/reference/_autosummary/otx.algo.classification.heads.rst", "guide/reference/_autosummary/otx.algo.classification.losses.rst", "guide/reference/_autosummary/otx.algo.detection.rst", "guide/reference/_autosummary/otx.algo.detection.backbones.rst", "guide/reference/_autosummary/otx.algo.detection.backbones.pytorchcv_backbones.rst", "guide/reference/_autosummary/otx.algo.detection.heads.rst", "guide/reference/_autosummary/otx.algo.detection.losses.rst", "guide/reference/_autosummary/otx.algo.segmentation.rst", "guide/reference/_autosummary/otx.algo.segmentation.backbones.rst", "guide/reference/_autosummary/otx.algo.segmentation.heads.rst", "guide/reference/_autosummary/otx.algo.segmentation.losses.rst", "guide/reference/_autosummary/otx.algo.visual_prompting.rst", "guide/reference/_autosummary/otx.algo.visual_prompting.backbones.rst", "guide/reference/_autosummary/otx.algo.visual_prompting.decoders.rst", "guide/reference/_autosummary/otx.algo.visual_prompting.encoders.rst", "guide/reference/_autosummary/otx.cli.rst", "guide/reference/_autosummary/otx.cli.cli.rst", "guide/reference/_autosummary/otx.cli.install.rst", "guide/reference/_autosummary/otx.cli.utils.rst", "guide/reference/_autosummary/otx.cli.utils.help_formatter.rst", "guide/reference/_autosummary/otx.cli.utils.installation.rst", "guide/reference/_autosummary/otx.cli.utils.jsonargparse.rst", "guide/reference/_autosummary/otx.cli.utils.workspace.rst", "guide/reference/_autosummary/otx.core.rst", "guide/reference/_autosummary/otx.core.config.rst", "guide/reference/_autosummary/otx.core.config.data.rst", "guide/reference/_autosummary/otx.core.config.device.rst", "guide/reference/_autosummary/otx.core.config.explain.rst", "guide/reference/_autosummary/otx.core.config.hpo.rst", "guide/reference/_autosummary/otx.core.data.rst", "guide/reference/_autosummary/otx.core.exporter.rst", "guide/reference/_autosummary/otx.core.exporter.base.rst", "guide/reference/_autosummary/otx.core.exporter.exportable_code.rst", "guide/reference/_autosummary/otx.core.exporter.exportable_code.demo.rst", "guide/reference/_autosummary/otx.core.exporter.mmdeploy.rst", "guide/reference/_autosummary/otx.core.exporter.native.rst", "guide/reference/_autosummary/otx.core.exporter.visual_prompting.rst", "guide/reference/_autosummary/otx.core.metrics.rst", "guide/reference/_autosummary/otx.core.model.rst", "guide/reference/_autosummary/otx.core.model.action_classification.rst", "guide/reference/_autosummary/otx.core.model.action_detection.rst", "guide/reference/_autosummary/otx.core.model.anomaly.rst", "guide/reference/_autosummary/otx.core.model.base.rst", "guide/reference/_autosummary/otx.core.model.classification.rst", "guide/reference/_autosummary/otx.core.model.detection.rst", "guide/reference/_autosummary/otx.core.model.instance_segmentation.rst", "guide/reference/_autosummary/otx.core.model.rotated_detection.rst", "guide/reference/_autosummary/otx.core.model.segmentation.rst", "guide/reference/_autosummary/otx.core.model.utils.rst", "guide/reference/_autosummary/otx.core.model.utils.mmaction.rst", "guide/reference/_autosummary/otx.core.model.utils.mmdet.rst", "guide/reference/_autosummary/otx.core.model.utils.mmpretrain.rst", "guide/reference/_autosummary/otx.core.model.utils.mmseg.rst", "guide/reference/_autosummary/otx.core.model.visual_prompting.rst", "guide/reference/_autosummary/otx.core.schedulers.rst", "guide/reference/_autosummary/otx.core.types.rst", "guide/reference/_autosummary/otx.core.utils.rst", "guide/reference/_autosummary/otx.core.utils.build.rst", "guide/reference/_autosummary/otx.core.utils.cache.rst", "guide/reference/_autosummary/otx.core.utils.config.rst", "guide/reference/_autosummary/otx.core.utils.imports.rst", "guide/reference/_autosummary/otx.core.utils.instantiators.rst", "guide/reference/_autosummary/otx.core.utils.mask_util.rst", "guide/reference/_autosummary/otx.core.utils.miscellaneous.rst", "guide/reference/_autosummary/otx.core.utils.pylogger.rst", "guide/reference/_autosummary/otx.core.utils.tile_merge.rst", "guide/reference/_autosummary/otx.core.utils.utils.rst", "guide/reference/_autosummary/otx.data.rst", "guide/reference/_autosummary/otx.engine.rst", "guide/reference/_autosummary/otx.hpo.rst", "guide/reference/_autosummary/otx.recipe.rst", "guide/reference/_autosummary/otx.tools.rst", "guide/reference/_autosummary/otx.tools.converter.rst", "guide/reference/_autosummary/otx.tools.translate_mmrecipe.rst", "guide/reference/_autosummary/otx.utils.rst", "guide/reference/index.rst", "guide/release_notes/index.rst", "guide/tutorials/advanced/configuration.rst", "guide/tutorials/advanced/index.rst", "guide/tutorials/base/explain.rst", "guide/tutorials/base/export.rst", "guide/tutorials/base/how_to_train/action_classification.rst", "guide/tutorials/base/how_to_train/action_detection.rst", "guide/tutorials/base/how_to_train/anomaly_detection.rst", "guide/tutorials/base/how_to_train/classification.rst", "guide/tutorials/base/how_to_train/detection.rst", "guide/tutorials/base/how_to_train/index.rst", "guide/tutorials/base/how_to_train/instance_segmentation.rst", "guide/tutorials/base/how_to_train/semantic_segmentation.rst", "guide/tutorials/base/how_to_train/visual_prompting.rst", "guide/tutorials/base/index.rst", "index.rst"], "titles": ["Adaptive Training", "Auto-configuration", "Class-Incremental Sampler", "Fast Data Loading", "Hyperparameters Optimization", "Additional Features", "Models Optimization", "Improve Small Object Detection with Image Tiling", "Explainable AI (XAI)", "Action Classification", "Action Detection", "Action Recognition", "Anomaly Detection", "Hierarchical Classification", "Classification", "Multi-class Classification", "Multi-label Classification", "Algorithms", "Object Detection", "Object Detection", "Segmentation", "Instance Segmentation", "Semantic Segmentation", "Visual Prompting (Fine-tuning)", "Visual Prompting", "Visual Prompting (Zero-shot learning)", "Product Design", " API Quick-Guide", " CLI Guide", " Installation", "Introduction", "Guide", "otx", "otx.algo", "otx.algo.action_classification", "otx.algo.classification", "otx.algo.classification.backbones", "otx.algo.classification.heads", "otx.algo.classification.losses", "otx.algo.detection", "otx.algo.detection.backbones", "otx.algo.detection.backbones.pytorchcv_backbones", "otx.algo.detection.heads", "otx.algo.detection.losses", "otx.algo.segmentation", "otx.algo.segmentation.backbones", "otx.algo.segmentation.heads", "otx.algo.segmentation.losses", "otx.algo.visual_prompting", "otx.algo.visual_prompting.backbones", "otx.algo.visual_prompting.decoders", "otx.algo.visual_prompting.encoders", "otx.cli", "otx.cli.cli", "otx.cli.install", "otx.cli.utils", "otx.cli.utils.help_formatter", "otx.cli.utils.installation", "otx.cli.utils.jsonargparse", "otx.cli.utils.workspace", "otx.core", "otx.core.config", "otx.core.config.data", "otx.core.config.device", "otx.core.config.explain", "otx.core.config.hpo", "otx.core.data", "otx.core.exporter", "otx.core.exporter.base", "otx.core.exporter.exportable_code", "otx.core.exporter.exportable_code.demo", "otx.core.exporter.mmdeploy", "otx.core.exporter.native", "otx.core.exporter.visual_prompting", "otx.core.metrics", "otx.core.model", "otx.core.model.action_classification", "otx.core.model.action_detection", "otx.core.model.anomaly", "otx.core.model.base", "otx.core.model.classification", "otx.core.model.detection", "otx.core.model.instance_segmentation", "otx.core.model.rotated_detection", "otx.core.model.segmentation", "otx.core.model.utils", "otx.core.model.utils.mmaction", "otx.core.model.utils.mmdet", "otx.core.model.utils.mmpretrain", "otx.core.model.utils.mmseg", "otx.core.model.visual_prompting", "otx.core.schedulers", "otx.core.types", "otx.core.utils", "otx.core.utils.build", "otx.core.utils.cache", "otx.core.utils.config", "otx.core.utils.imports", "otx.core.utils.instantiators", "otx.core.utils.mask_util", "otx.core.utils.miscellaneous", "otx.core.utils.pylogger", "otx.core.utils.tile_merge", "otx.core.utils.utils", "otx.data", "otx.engine", "otx.hpo", "otx.recipe", "otx.tools", "otx.tools.converter", "otx.tools.translate_mmrecipe", "otx.utils", "API reference", "Releases", "How to write OTX Configuration (recipe)", "Advanced Tutorials", "XAI Tutorial", "Deploy & Demo", "Action Classification model", "Action Detection model", "Anomaly Detection Tutorial", "Classification model", "Object Detection model", "Training to deployment tutorials", "Instance Segmentation model", "Semantic Segmentation model", "Visual Prompting model", "Base Tutorials", "Welcome to Intel OpenVINO Training Extensions\u2019s develop documentation!"], "terms": {"focus": [0, 38, 122, 126], "adjust": [0, 1, 7, 23, 26, 79], "number": [0, 1, 2, 4, 7, 9, 12, 17, 19, 21, 22, 28, 34, 37, 39, 42, 45, 48, 49, 50, 51, 62, 71, 79, 87, 88, 89, 91, 92, 94, 96, 102, 105, 111, 118, 119, 120, 121, 122, 124, 125, 126], "iter": [0, 1, 15, 19, 21, 22, 51, 53, 56, 58, 71, 91, 105, 106, 118, 119, 121, 122, 124, 125, 126], "interv": [0, 91, 105], "valid": [0, 1, 4, 7, 9, 12, 13, 15, 16, 19, 21, 22, 27, 28, 29, 30, 37, 47, 48, 58, 62, 79, 90, 105, 118, 119, 121, 122, 126], "achiev": [0, 1, 19, 21, 22, 26, 113, 118, 119, 121, 122, 124, 126], "fast": [0, 1, 5, 6, 8, 10, 19, 22, 118, 119, 120, 121, 122, 124, 125, 126], "In": [0, 4, 7, 9, 10, 13, 15, 16, 17, 19, 21, 22, 23, 25, 26, 27, 28, 30, 47, 48, 57, 72, 73, 92, 106, 117, 120], "small": [0, 5, 15, 16, 19, 48, 113], "data": [0, 1, 2, 5, 7, 8, 9, 12, 15, 17, 21, 22, 23, 26, 27, 28, 34, 37, 42, 48, 58, 61, 63, 64, 76, 78, 79, 81, 82, 89, 90, 94, 102, 105, 109, 113, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "regim": [0, 113], "we": [0, 1, 6, 7, 8, 9, 10, 12, 13, 15, 16, 17, 19, 21, 22, 23, 25, 26, 27, 28, 38, 39, 57, 66, 78, 95, 109, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "don": [0, 26, 78, 105], "t": [0, 21, 22, 25, 26, 37, 39, 71, 78, 92, 105, 126], "need": [0, 1, 8, 15, 16, 19, 22, 25, 26, 27, 28, 29, 51, 57, 62, 66, 78, 79, 81, 82, 92, 95, 107, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "model": [0, 3, 4, 5, 8, 17, 26, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 41, 44, 45, 46, 47, 48, 49, 50, 51, 53, 67, 68, 71, 72, 73, 92, 94, 95, 103, 105, 106, 107, 109, 113, 114, 116, 117, 120, 123, 127], "everi": [0, 13, 17, 30, 34, 37, 39, 79], "epoch": [0, 1, 4, 9, 12, 21, 22, 23, 27, 28, 79, 91, 105, 118, 119, 120, 121, 122, 124, 125, 126], "sinc": [0, 7, 12, 39, 78, 92, 94, 95, 121], "ar": [0, 1, 4, 7, 8, 9, 10, 12, 13, 15, 16, 19, 22, 23, 25, 26, 27, 28, 29, 30, 37, 47, 48, 51, 53, 79, 90, 95, 106, 113, 116, 118, 119, 120, 121, 122, 124, 125, 126], "few": 0, "singl": [0, 7, 8, 9, 10, 13, 15, 16, 19, 21, 22, 26, 30, 37, 42, 48, 50, 52, 58, 79, 90, 92, 102, 106, 116, 117], "To": [0, 1, 6, 7, 9, 10, 12, 13, 15, 16, 17, 19, 22, 23, 26, 27, 28, 29, 47, 48, 57, 105, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "handl": [0, 13, 21, 22, 23, 25, 26, 30, 105], "thi": [0, 1, 2, 4, 7, 8, 10, 12, 13, 15, 16, 17, 19, 21, 22, 23, 25, 26, 27, 28, 29, 30, 34, 39, 42, 47, 48, 52, 53, 56, 57, 62, 66, 71, 72, 73, 78, 79, 83, 86, 87, 88, 89, 91, 92, 95, 105, 107, 109, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "have": [0, 1, 4, 13, 19, 21, 22, 23, 26, 28, 29, 30, 39, 48, 66, 78, 90, 92, 98, 105, 118, 119, 120, 121, 122, 124, 125, 126], "implement": [0, 7, 8, 22, 26, 39, 40, 42, 46, 47, 48, 57, 72, 73, 106], "modul": [0, 1, 3, 7, 8, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 57, 59, 60, 61, 62, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 79, 85, 86, 87, 88, 89, 92, 93, 94, 97, 102, 105, 108, 113, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126, 128], "name": [0, 4, 9, 10, 12, 15, 16, 19, 21, 22, 23, 25, 26, 27, 28, 39, 45, 47, 53, 57, 62, 68, 71, 72, 73, 76, 78, 79, 80, 81, 82, 83, 84, 94, 95, 101, 105, 118, 119, 120, 121, 122, 124, 125, 126], "adaptivetrainschedul": 0, "callback": [0, 27, 28, 39, 58, 78, 79, 98, 105, 114], "control": [0, 1, 4, 12, 27, 48], "do": [0, 4, 6, 25, 26, 27, 29, 51, 91, 116, 117, 121, 122, 124, 126], "faster": [0, 1, 4, 10, 12, 19, 21, 30, 113], "chang": [0, 12, 15, 16, 21, 26, 27, 28, 29, 78, 92, 105, 106, 113, 114], "evalu": [0, 4, 7, 26, 105, 124, 125], "updat": [0, 1, 17, 19, 21, 29, 34, 39, 48, 53, 57, 58, 71, 81, 82, 95, 113, 121, 122, 124, 125, 126], "learn": [0, 1, 2, 4, 8, 9, 10, 12, 15, 16, 17, 19, 21, 22, 23, 24, 26, 27, 30, 46, 47, 48, 79, 90, 91, 113, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127], "rate": [0, 1, 4, 9, 12, 15, 16, 19, 21, 22, 23, 79, 91, 118, 119, 120, 121, 122, 124, 125, 126], "check": [0, 1, 23, 29, 48, 53, 57, 58, 61, 95, 103, 105, 106, 117, 118, 120, 121, 122, 124, 126], "dataset": [0, 1, 2, 3, 7, 17, 26, 30, 39, 62, 71, 79, 98, 105, 113, 116, 117], "api": [0, 1, 2, 3, 4, 6, 7, 8, 26, 30, 57, 92, 105, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "from": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 15, 16, 19, 21, 22, 23, 25, 26, 27, 28, 29, 34, 37, 41, 45, 46, 47, 48, 50, 51, 53, 56, 57, 58, 62, 66, 68, 71, 76, 78, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 92, 94, 95, 98, 103, 105, 109, 113, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "otx": [0, 1, 2, 3, 4, 6, 8, 9, 10, 13, 15, 16, 19, 21, 22, 23, 25, 26, 27, 28, 29, 113, 115, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "algo": [0, 2, 12, 27, 28, 114], "adaptive_train_schedul": 0, "import": [0, 1, 2, 3, 4, 6, 7, 8, 26, 27, 56, 57, 118, 119, 120, 121, 122, 124, 125, 126], "engin": [0, 1, 4, 6, 7, 8, 26, 28, 53, 63, 78, 95, 98, 109, 114, 116, 118, 119, 120, 121, 122, 124, 125, 126], "cli": [0, 1, 2, 3, 4, 6, 7, 8, 26, 27, 29, 30, 62, 98, 105, 113, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "deep": [1, 12, 26, 27, 30], "framework": [1, 21, 22, 23, 25, 26, 30, 34, 71, 103], "mean": [1, 4, 8, 12, 16, 22, 38, 39, 45, 47, 62, 68, 71, 72, 73, 86, 87, 88, 89, 94, 103, 113, 116], "automat": [1, 4, 7, 23, 25, 30, 106, 113, 116, 121, 122, 124, 126], "find": [1, 4, 7, 9, 10, 13, 15, 16, 19, 21, 26, 27, 48, 71, 96, 113, 118, 119, 120, 121, 122, 124, 125, 126], "most": [1, 8, 12, 17, 19, 23, 25, 26, 28, 30, 118, 119, 121, 122, 124, 125, 126], "appropri": [1, 30, 48, 103], "set": [1, 2, 4, 7, 10, 12, 13, 16, 17, 19, 21, 22, 27, 29, 30, 34, 37, 38, 39, 45, 48, 49, 51, 53, 54, 56, 57, 58, 79, 90, 94, 95, 105, 113, 117, 121, 122, 124, 125, 126], "train": [1, 2, 3, 4, 5, 8, 9, 10, 13, 15, 16, 17, 19, 21, 22, 23, 25, 26, 30, 32, 39, 41, 42, 45, 47, 48, 56, 58, 60, 62, 66, 78, 79, 89, 105, 106, 109, 113, 114, 116, 117, 127], "paramet": [1, 6, 15, 16, 19, 22, 26, 27, 28, 30, 34, 36, 37, 38, 39, 42, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 61, 68, 71, 72, 73, 76, 78, 79, 81, 82, 86, 87, 88, 89, 90, 91, 92, 94, 95, 96, 98, 99, 101, 102, 103, 105, 106, 109, 111, 113, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "base": [1, 2, 4, 8, 15, 19, 26, 27, 28, 30, 34, 35, 36, 37, 38, 39, 42, 45, 46, 47, 48, 49, 50, 51, 53, 56, 58, 59, 62, 63, 64, 65, 66, 71, 72, 73, 75, 76, 77, 78, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 95, 98, 102, 104, 105, 106, 109, 113, 116, 120, 121, 122, 124, 125, 126], "specif": [1, 13, 16, 17, 26, 27, 28, 36, 48, 53, 116, 118, 119, 120, 121, 122, 124, 125, 126], "task": [1, 3, 4, 6, 7, 9, 10, 13, 15, 16, 17, 19, 21, 22, 23, 25, 26, 27, 28, 30, 34, 37, 39, 40, 42, 48, 49, 54, 57, 66, 78, 79, 83, 92, 105, 113, 114, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126], "hand": [1, 21, 26, 29], "can": [1, 3, 4, 7, 8, 9, 10, 12, 13, 15, 16, 19, 21, 22, 23, 25, 26, 27, 28, 29, 30, 47, 48, 62, 71, 76, 77, 78, 79, 80, 81, 82, 83, 84, 88, 90, 91, 94, 105, 106, 113, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "help": [1, 2, 4, 8, 26, 27, 29, 56, 118, 119, 120, 121, 122, 124, 125, 126], "save": [1, 4, 8, 25, 28, 30, 45, 53, 66, 68, 72, 73, 78, 79, 90, 106, 113, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "time": [1, 3, 4, 7, 8, 15, 17, 19, 21, 22, 23, 26, 28, 29, 66, 89, 91, 113, 118, 119, 120, 121, 122, 124, 125, 126], "eas": 1, "process": [1, 3, 4, 7, 12, 19, 21, 22, 23, 25, 26, 28, 30, 34, 37, 48, 62, 78, 79, 90, 102, 105, 111, 113, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "interact": [1, 79], "openvino": [1, 3, 4, 6, 8, 9, 12, 17, 21, 22, 23, 25, 26, 27, 28, 30, 32, 34, 48, 60, 68, 71, 72, 73, 76, 79, 80, 81, 82, 83, 84, 90, 105, 113, 117, 118, 119, 120, 121, 122, 124, 125, 126, 127], "extens": [1, 3, 4, 6, 7, 8, 9, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 32, 60, 66, 78, 79, 113, 118, 119, 120, 121, 122, 124, 125, 126, 127], "give": [1, 8, 25, 30], "better": [1, 4, 10, 15, 19, 26, 28, 39], "baselin": [1, 28], "given": [1, 4, 13, 15, 16, 23, 25, 26, 28, 30, 34, 48, 50, 51, 53, 55, 58, 68, 72, 73, 79, 90, 91, 96, 98, 99, 100, 105, 113], "At": [1, 12, 13, 19, 22, 26], "end": [1, 17, 22, 26, 79, 122, 124, 126], "develop": [1, 8, 23, 25, 26, 27, 30], "simpl": [1, 19, 22, 30, 47, 117], "function": [1, 9, 10, 12, 15, 16, 19, 21, 22, 23, 26, 27, 28, 29, 30, 34, 35, 37, 39, 41, 45, 47, 48, 49, 52, 53, 54, 55, 56, 57, 58, 61, 62, 71, 74, 76, 77, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 93, 94, 96, 97, 98, 99, 100, 101, 103, 105, 106, 111, 113, 116, 118, 119, 120, 121, 122, 124, 125, 126], "util": [1, 3, 4, 12, 17, 22, 26, 27, 28, 44, 62, 117, 120, 121, 122, 124, 125, 126], "our": [1, 6, 9, 13, 15, 16, 17, 19, 21, 22, 27, 28, 117, 121, 122, 124, 125, 126], "basic": [1, 8, 22, 25, 26, 28, 34, 114], "start": [1, 4, 22, 26, 28, 30, 56, 79, 113, 118, 119, 120, 121, 122, 124, 125, 126], "obtain": [1, 10, 13, 15, 16, 21, 22, 23, 25, 30, 48, 117], "good": [1, 4, 8, 12, 19, 79, 120], "best": [1, 4, 15, 22, 26, 28, 30, 48, 106], "trade": [1, 7, 12, 22, 28, 30], "off": [1, 4, 7, 12, 22, 28, 29, 30], "between": [1, 4, 7, 8, 12, 13, 21, 22, 26, 48, 58, 118, 121, 122, 126], "accuraci": [1, 7, 9, 15, 19, 21, 22, 28, 30, 39, 114, 118, 119, 121, 122, 126], "speed": [1, 3, 7, 8, 21, 22, 28, 30, 45, 113], "pass": [1, 19, 22, 28, 53, 56, 57, 62, 78, 79, 98, 117, 118, 120, 121, 122, 124, 125, 126], "onli": [1, 4, 7, 8, 10, 12, 21, 23, 25, 26, 28, 29, 37, 45, 48, 57, 58, 66, 72, 73, 78, 79, 90, 92, 105, 106, 111, 117], "right": [1, 13, 25, 48, 57, 88, 89, 122, 126], "format": [1, 4, 7, 26, 27, 28, 30, 48, 51, 56, 68, 71, 72, 73, 78, 79, 89, 92, 96, 99, 105, 113, 114, 117, 118, 119, 120, 121, 122, 124, 125, 126], "without": [1, 4, 7, 15, 16, 19, 21, 25, 26, 28, 37, 66, 68, 71, 117, 118, 120, 121, 122, 124, 125, 126], "specifi": [1, 7, 12, 27, 28, 47, 48, 53, 56, 57, 68, 72, 73, 78, 79, 105, 116, 117, 124, 126], "anyth": [1, 23, 25, 30, 48, 50, 51], "els": [1, 78, 121], "data_root": [1, 4, 8, 23, 25, 26, 27, 28, 58, 62, 105, 109, 116, 118, 119, 120, 121, 122, 124, 125, 126], "path_to_data_root": [1, 4, 23, 25, 26], "after": [1, 4, 7, 9, 12, 13, 19, 23, 26, 28, 29, 34, 71, 78, 79, 88, 89, 91, 113, 117, 118, 119, 121, 122, 124, 125, 126], "prepar": [1, 28, 53], "middl": [1, 22], "recip": [1, 9, 10, 13, 15, 16, 19, 21, 22, 23, 25, 26, 28, 30, 109, 110, 115, 116, 118, 119, 120, 121, 122, 124, 125, 126], "competit": [1, 15, 118, 119], "preserv": [1, 22], "infer": [1, 6, 7, 8, 12, 13, 19, 21, 22, 25, 26, 30, 37, 48, 71, 76, 79, 80, 81, 82, 83, 84, 90, 94, 113, 117, 118, 119, 122, 126], "support": [1, 7, 8, 9, 10, 12, 13, 15, 17, 19, 21, 22, 23, 25, 26, 27, 28, 29, 30, 46, 47, 48, 54, 57, 78, 79, 88, 105, 113, 118, 119, 121, 122, 124, 125, 126], "each": [1, 4, 6, 7, 8, 9, 10, 12, 13, 15, 16, 19, 21, 22, 23, 26, 28, 30, 37, 39, 42, 45, 47, 48, 49, 51, 53, 57, 66, 89, 92, 94, 98, 105, 113, 116, 118, 119, 120, 121, 122, 124, 125, 126], "classif": [1, 3, 10, 11, 17, 19, 21, 28, 30, 34, 39, 48, 76, 77, 86, 87, 88, 89, 94, 113, 114, 116, 123], "imagenet": [1, 15], "coco": [1, 10, 16, 19, 21, 23, 25, 26, 28, 113, 122, 124, 126], "multi": [1, 10, 12, 13, 14, 17, 22, 30, 37, 80, 92, 101, 113, 121], "label": [1, 2, 9, 10, 12, 13, 14, 17, 22, 23, 25, 26, 30, 35, 37, 42, 45, 46, 47, 48, 51, 78, 79, 80, 83, 92, 102, 113, 117, 118, 120, 121, 125], "custom": [1, 7, 10, 13, 19, 23, 25, 26, 27, 28, 33, 34, 36, 37, 38, 39, 40, 42, 43, 46, 47, 56, 57, 61, 66, 74, 91, 105, 113, 117, 121], "hierarch": [1, 14, 17, 30, 37, 80, 113, 121], "object": [1, 5, 8, 10, 17, 21, 22, 26, 27, 28, 30, 34, 43, 53, 56, 57, 58, 59, 61, 62, 63, 64, 65, 66, 68, 71, 78, 81, 91, 92, 94, 95, 96, 98, 99, 101, 105, 109, 113, 116, 118, 119, 120, 124, 125, 126], "detect": [1, 5, 11, 17, 21, 26, 27, 28, 30, 48, 71, 77, 82, 83, 84, 94, 102, 105, 113, 116, 118, 121, 123, 124, 125, 126], "pascal": [1, 16, 19, 21, 22, 23, 25, 122, 125, 126], "voc": [1, 16, 19, 21, 22, 23, 25, 26, 113, 122, 126], "yolo": [1, 26, 28, 122], "semant": [1, 17, 20, 23, 25, 30, 84, 92, 113, 123, 126], "segment": [1, 7, 9, 17, 23, 25, 30, 48, 50, 51, 82, 92, 102, 113, 116, 123, 126], "common": [1, 8, 15, 16, 17, 19, 22, 23, 25, 30, 126], "cityscap": [1, 21, 22, 26], "ade20k": [1, 21], "action": [1, 17, 30, 34, 56, 76, 77, 113, 123], "cvat": 1, "anomali": [1, 17, 30, 57, 104, 113, 123], "mvtec": [1, 12, 104, 120], "instanc": [1, 7, 12, 15, 17, 20, 23, 25, 30, 53, 82, 86, 87, 88, 89, 102, 105, 113, 116, 123, 125], "If": [1, 3, 4, 6, 7, 10, 12, 22, 25, 26, 27, 28, 29, 30, 34, 37, 47, 48, 49, 53, 56, 57, 78, 79, 90, 91, 92, 97, 100, 105, 106, 117, 119, 121, 122, 124, 125, 126], "occlud": 1, "other": [1, 4, 7, 10, 12, 15, 21, 22, 23, 25, 26, 27, 28, 29, 30, 37, 57, 58, 71, 79, 116, 117, 118, 126], "exampl": [1, 7, 8, 13, 16, 19, 22, 25, 26, 27, 28, 29, 48, 56, 57, 58, 61, 62, 95, 99, 105, 109, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "should": [1, 4, 9, 16, 22, 26, 28, 37, 48, 61, 92, 98, 105, 116, 118, 119], "directli": [1, 29, 48, 79], "emphas": 1, "type": [1, 4, 17, 21, 25, 26, 27, 28, 30, 34, 37, 42, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 61, 62, 63, 64, 66, 68, 71, 72, 73, 78, 79, 81, 82, 83, 86, 87, 88, 89, 90, 95, 97, 98, 99, 103, 105, 106, 109, 113, 114, 117, 120, 124, 126], "choos": [1, 4, 13, 26, 28, 30, 118, 119, 121, 122, 124, 125, 126], "you": [1, 4, 6, 7, 12, 16, 19, 22, 25, 26, 27, 28, 29, 30, 47, 58, 79, 105, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "might": [1, 78, 120], "intend": [1, 22, 27], "task_typ": [1, 104], "multi_class_cl": [1, 15, 28, 114, 121], "multi_label_cl": [1, 16, 28], "h_label_cl": [1, 13, 28], "instance_segment": [1, 21, 27, 124], "semantic_segment": [1, 125], "action_classif": [1, 9, 28, 118], "action_detect": [1, 10, 28, 119], "action_segment": 1, "anomaly_classif": [1, 28, 120], "anomaly_detect": [1, 28, 120], "anomaly_segment": [1, 28, 120], "visual_prompt": [1, 126], "featur": [1, 4, 7, 8, 10, 12, 15, 17, 19, 21, 22, 25, 26, 27, 28, 34, 37, 48, 88, 90, 113, 114, 121, 122, 126], "current": [1, 4, 7, 9, 10, 12, 19, 22, 23, 25, 27, 29, 48, 56, 62, 79, 90, 91, 106, 114, 120, 122, 124, 126], "hardwar": [1, 19, 28, 57, 118, 119, 120, 121, 122, 124, 125, 126], "environ": [1, 4, 29, 106, 116, 117], "There": [1, 25, 28, 30, 124, 126], "two": [1, 7, 8, 10, 15, 21, 25, 29, 36, 39, 48, 57, 79, 94, 120, 126], "method": [1, 4, 6, 8, 21, 22, 23, 25, 30, 38, 42, 47, 48, 51, 53, 56, 58, 64, 68, 69, 78, 83], "avail": [1, 4, 9, 10, 12, 13, 15, 16, 17, 23, 25, 26, 28, 30, 48, 53, 57, 106, 119, 120, 121, 122, 124, 125, 126], "prevent": [1, 8, 12, 15, 16, 19, 21, 22, 23, 47, 48, 113, 117], "gpu": [1, 3, 4, 7, 27, 28, 30, 101, 106, 113], "out": [1, 7], "memori": [1, 7, 28, 30, 45, 113, 126], "safe": [1, 8, 61], "mode": [1, 4, 26, 29, 36, 41, 45, 47, 48, 65, 79, 89, 105, 113, 114, 117], "The": [1, 4, 7, 8, 9, 10, 12, 13, 15, 16, 17, 19, 21, 22, 23, 26, 27, 28, 29, 30, 34, 37, 38, 47, 48, 50, 51, 53, 55, 56, 57, 58, 59, 61, 66, 68, 72, 73, 78, 79, 83, 88, 89, 90, 92, 95, 97, 98, 101, 105, 109, 111, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "first": [1, 4, 6, 13, 17, 22, 28, 29, 34, 42, 56, 105, 111, 119, 121, 122, 124, 125, 126], "i": [1, 2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 15, 16, 17, 19, 21, 22, 23, 25, 26, 27, 28, 29, 30, 34, 39, 42, 46, 47, 48, 51, 52, 53, 54, 55, 56, 57, 58, 62, 66, 68, 71, 72, 73, 78, 79, 81, 82, 83, 88, 89, 91, 92, 94, 95, 97, 99, 100, 105, 106, 107, 109, 111, 113, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "compat": [1, 29, 34, 76, 77, 78, 80, 81, 82, 83, 84, 90, 113], "devic": [1, 26, 27, 28, 48, 62, 86, 87, 88, 89, 105, 114, 117, 118, 120, 121, 122, 124, 125, 126], "larger": [1, 7, 12, 30], "consum": [1, 4, 7, 15, 26, 76, 77, 80, 81, 82, 83, 84, 90], "more": [1, 4, 6, 7, 8, 9, 12, 13, 15, 16, 19, 21, 22, 23, 28, 29, 30, 48, 50, 56, 57, 90, 106, 116, 118, 119, 120, 121, 122, 124, 125, 126], "therefor": [1, 23, 26, 57, 66], "system": [1, 8, 26, 29, 57, 106, 117, 120], "verifi": 1, "possibl": [1, 4, 26, 28, 30, 48, 57, 106, 117], "": [1, 4, 7, 8, 12, 13, 15, 16, 19, 21, 22, 26, 27, 28, 39, 42, 51, 53, 56, 62, 68, 71, 73, 78, 79, 88, 91, 94, 98, 105, 106, 111, 113, 116, 118, 119, 120, 121, 122, 124, 125, 126], "feasibl": [1, 23], "decreas": [1, 4, 106, 113, 118, 119, 120, 121, 122, 124, 125, 126], "reduc": [1, 3, 4, 7, 9, 12, 15, 21, 22, 28, 38, 47], "usag": [1, 8, 27, 28, 56, 62, 88, 105, 113], "howev": [1, 7, 15, 21, 26, 27, 42, 57, 78, 79, 105, 116], "too": 1, "low": [1, 19, 30, 48, 51, 116], "slow": [1, 45], "down": [1, 45], "address": [1, 7], "maximum": [1, 4, 22, 71, 102, 105], "amount": [1, 4, 15, 22], "could": [1, 57, 92, 119, 121, 122, 124, 125, 126], "run": [1, 4, 6, 26, 27, 28, 45, 53, 79, 90, 105, 106, 117, 118, 119, 120, 121, 122, 124, 125, 126], "resourc": [1, 4, 7, 19, 21, 23, 30, 106, 113], "also": [1, 4, 7, 9, 12, 17, 19, 21, 26, 27, 28, 30, 42, 92, 105, 117, 118, 119, 120, 121, 122, 124, 125, 126], "accordingli": 1, "us": [1, 2, 4, 6, 7, 8, 9, 10, 12, 13, 15, 16, 17, 19, 21, 22, 23, 25, 26, 27, 28, 30, 34, 37, 38, 39, 42, 45, 47, 48, 49, 50, 51, 53, 57, 58, 59, 62, 68, 71, 72, 73, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 94, 95, 98, 103, 105, 106, 108, 109, 113, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126, 127], "add": [1, 15, 16, 19, 21, 22, 23, 26, 28, 49, 53, 54, 56, 57, 58, 111, 113], "follow": [1, 4, 7, 8, 9, 10, 12, 13, 15, 16, 19, 21, 22, 23, 25, 26, 27, 28, 29, 30, 98, 105, 109, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "execut": [1, 4, 7, 8, 9, 10, 13, 15, 16, 28, 29, 53, 71, 105, 111, 117, 118, 119, 121, 122, 124, 125, 126], "full": [1, 7, 22, 23, 29, 57, 102, 106, 124, 125], "second": [1, 12, 28, 56, 121, 122, 125], "aim": [1, 8, 16, 26], "larg": [1, 3, 7, 12, 15, 16, 19, 28, 36, 113, 122, 126], "overal": [1, 4, 7, 9, 16, 113], "increas": [1, 4, 7, 8, 9, 23, 28, 91, 106, 126], "effect": [1, 2, 7, 45], "requir": [1, 4, 6, 7, 10, 19, 21, 22, 23, 26, 28, 29, 39, 54, 57, 58, 78, 79, 117, 118, 120, 121, 122, 124, 125, 126], "sweep": 1, "whole": [1, 17, 23], "thu": [1, 28], "up": [1, 29, 113, 118, 119, 121, 122, 124, 125, 126], "doe": [1, 12, 26, 42, 47, 57, 78], "search": [1, 4, 128], "effici": [1, 4, 7, 12, 15, 19, 21, 28, 30, 113, 118, 120, 121, 122, 124, 125, 126], "mai": [1, 15, 16, 17, 21, 26, 29, 47, 121, 122, 124, 126], "significantli": [1, 7], "provid": [1, 3, 4, 6, 7, 8, 15, 17, 26, 27, 28, 29, 30, 39, 48, 53, 56, 58, 62, 79, 95, 98, 105, 107, 108, 114, 116, 117, 119, 121, 122, 124, 125, 126], "substanti": 1, "acceler": [1, 4, 7, 26, 30, 63], "compar": [1, 4, 12, 15, 30, 39, 94, 95], "similar": [1, 12, 48], "previou": [1, 30, 39, 47, 51, 79, 116, 117, 118, 119, 121, 122, 124, 125, 126], "accord": [1, 23, 25, 29, 39, 48, 79, 105, 121, 122, 124, 126], "when": [1, 4, 7, 8, 12, 15, 21, 25, 26, 29, 30, 42, 47, 48, 50, 51, 53, 54, 57, 62, 71, 79, 81, 82, 107, 111, 113, 126], "fix": [1, 9, 17, 27, 29, 89, 113, 118, 119, 120, 121, 122, 124, 125, 126], "gener": [1, 8, 12, 16, 19, 23, 25, 26, 28, 30, 39, 42, 48, 66, 79, 88, 92, 102, 113, 116, 120, 124, 125], "than": [1, 4, 16, 17, 19, 29, 57, 79, 91, 106, 124, 125], "smaller": [1, 7, 12], "earli": [1, 12, 15, 16, 19, 21, 22, 23, 124, 125], "stop": [1, 4, 12, 15, 16, 19, 21, 22, 23, 30, 106, 117, 124, 125], "enabl": [1, 3, 4, 12, 26, 28, 37, 89, 105, 113, 124, 126], "lower": [1, 4], "finish": [1, 4], "subprocess": 1, "load": [1, 5, 28, 39, 48, 62, 71, 79, 81, 82, 90, 95, 105, 113, 126], "dure": [1, 2, 7, 9, 12, 21, 34, 42, 79, 91, 105, 116, 117], "while": [1, 7, 8, 12, 17, 21, 22, 26, 45, 48, 68, 71, 118, 119, 120, 121, 122, 124, 125, 126], "high": [1, 3, 7, 28, 45, 48, 122, 126], "signific": 1, "cpu": [1, 19, 28, 48, 57, 106, 113, 118, 120, 121, 122, 124, 125, 126], "simplifi": [1, 26, 113], "manual": [1, 57, 124, 125, 126], "determin": [1, 4, 7, 12, 51, 61], "optim": [1, 5, 9, 10, 12, 13, 15, 16, 19, 21, 22, 23, 26, 30, 35, 39, 48, 53, 76, 77, 78, 79, 80, 81, 82, 83, 84, 90, 91, 105, 106, 113, 114, 119], "valu": [1, 4, 7, 8, 12, 21, 27, 28, 34, 47, 48, 49, 53, 56, 58, 68, 71, 89, 92, 96, 103, 105, 106, 113, 114, 118, 119, 121, 122, 124, 125, 126], "statu": [1, 54, 106], "core": [1, 3, 4, 7, 27, 118, 119, 120, 121, 122, 124, 125, 126], "config": [1, 2, 3, 4, 7, 23, 25, 27, 28, 34, 37, 39, 42, 45, 48, 53, 58, 66, 71, 76, 77, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 94, 95, 103, 105, 107, 109, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "datamoduleconfig": [1, 3, 7, 62, 66, 118, 119, 120, 121, 122, 124, 125, 126], "otxdatamodul": [1, 3, 7, 8, 27, 28, 39, 66, 79, 90, 104, 105, 116, 118, 119, 120, 121, 122, 124, 125, 126], "data_config": [1, 3, 7, 118, 119, 120, 121, 122, 124, 125, 126], "auto_num_work": [1, 62], "true": [1, 4, 7, 8, 12, 34, 39, 41, 42, 47, 48, 49, 53, 56, 57, 59, 61, 62, 65, 68, 71, 72, 73, 76, 79, 80, 81, 82, 83, 84, 86, 87, 90, 91, 95, 103, 105, 106, 113, 114, 116, 121, 122], "datamodul": [1, 3, 7, 8, 26, 27, 28, 53, 78, 79, 104, 105, 116, 118, 119, 120, 121, 122, 124, 125, 126], "creat": [2, 7, 8, 13, 15, 21, 26, 27, 29, 36, 53, 62, 66, 76, 77, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 105, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "an": [2, 4, 7, 12, 13, 15, 16, 17, 19, 21, 22, 23, 25, 26, 27, 28, 30, 48, 50, 53, 56, 57, 58, 79, 105, 109, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126], "batch": [2, 3, 4, 7, 15, 23, 26, 28, 30, 42, 45, 48, 50, 62, 78, 79, 81, 82, 89, 90, 102, 113, 118, 119, 120, 121, 122, 124, 125, 126], "For": [2, 7, 8, 9, 10, 12, 13, 15, 16, 19, 21, 22, 23, 25, 27, 28, 29, 48, 57, 81, 82, 86, 87, 88, 89, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "default": [2, 4, 7, 8, 12, 26, 27, 28, 34, 37, 38, 42, 45, 47, 48, 53, 57, 58, 59, 68, 71, 72, 73, 89, 94, 101, 102, 105, 106, 109, 113, 114, 116, 118, 119, 121, 122, 126], "squar": [2, 7, 12, 48], "root": [2, 7, 22, 26, 28, 58, 97, 105, 109, 121, 122, 124, 126], "old": 2, "new": [2, 17, 23, 25, 26, 30, 41, 47, 71, 78, 113, 117], "ratio": [2, 4, 7, 49, 68, 71], "class_incremental_sampl": 2, "classincrementalsampl": 2, "otxdataset": [2, 66], "class_incr_sampl": 2, "batch_siz": [2, 23, 28, 62, 105, 118, 119, 120, 121, 122, 124, 125, 126], "32": [2, 9, 10, 19, 22, 23, 27, 104, 105], "old_class": 2, "car": [2, 15, 21, 22, 79], "truck": 2, "new_class": 2, "bu": 2, "train_subset": [2, 23, 28, 62, 105, 114, 118, 119, 120, 121, 122, 124, 125, 126], "class_path": [2, 28, 58, 61, 62, 98, 114], "init_arg": [2, 28, 58, 61, 62, 98, 114], "It": [2, 4, 7, 8, 12, 15, 16, 21, 22, 26, 27, 28, 29, 30, 39, 42, 46, 48, 51, 53, 57, 62, 66, 71, 76, 77, 79, 80, 81, 82, 83, 84, 89, 90, 92, 98, 105, 106, 111, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "ensur": [2, 4, 7, 19, 26, 27, 120], "sampl": [2, 4, 9, 12, 13, 15, 23, 26, 34, 37, 42, 47, 89, 98, 118, 119], "distribut": [2, 12, 15, 30, 113], "supervis": [2, 9, 12, 15, 16, 17, 19, 21, 22, 30, 113, 125], "balanced_sampl": 2, "balancedsampl": 2, "sever": [3, 7, 10, 12, 23, 26, 27], "wai": [3, 8, 10, 26, 28, 114], "boost": 3, "one": [3, 4, 7, 12, 13, 15, 16, 21, 23, 25, 26, 28, 30, 48, 53, 78, 92, 102, 120, 121, 126], "which": [3, 4, 8, 9, 10, 12, 13, 15, 16, 19, 22, 28, 30, 37, 48, 62, 68, 78, 79, 81, 82, 86, 87, 88, 89, 105, 106, 111, 116, 117, 118, 119, 121, 122, 124, 125, 126], "decod": [3, 23, 28, 46, 48, 51, 126], "imag": [3, 5, 8, 12, 13, 15, 16, 17, 19, 21, 22, 23, 25, 27, 28, 29, 30, 34, 36, 42, 45, 47, 48, 49, 50, 51, 62, 68, 71, 79, 89, 102, 113, 116, 117, 120, 121, 122, 124, 125, 126], "main": [3, 8, 16, 23, 25, 27, 28, 30, 52, 53, 79, 91, 111, 118, 119, 121, 122, 124, 125, 126], "size": [3, 4, 8, 9, 10, 12, 15, 19, 21, 22, 23, 25, 28, 30, 34, 36, 42, 48, 49, 51, 62, 68, 71, 78, 89, 99, 102, 105, 113, 118, 119, 120, 121, 122, 124, 125, 126], "contain": [3, 12, 28, 37, 39, 48, 53, 56, 58, 71, 78, 79, 94, 98, 105, 109, 116, 117, 118, 120, 121, 122, 124, 126, 127], "resolut": [3, 7, 15, 16, 21, 22, 28, 45, 51, 116], "account": [3, 28, 30], "non": [3, 13, 28, 37, 47, 56, 79, 92, 102], "neglig": [3, 28], "overhead": [3, 28], "pre": [3, 10, 12, 23, 25, 28, 29, 34, 48], "One": [3, 79], "maxim": [3, 4, 28], "those": [3, 28], "case": [3, 4, 10, 15, 19, 21, 22, 27, 28, 46, 48, 57, 71, 92, 117, 121, 122, 124, 126], "mem_cache_s": [3, 28, 62], "8gb": [3, 28], "hpo": [4, 26, 27, 30, 105], "even": [4, 19, 30, 48, 78], "state": [4, 8, 34, 35, 36, 39, 47, 48, 49, 50, 51, 78, 79, 86, 87, 88, 89], "art": 4, "shelf": [4, 30], "librari": [4, 12, 23, 25, 57, 62, 71], "make": [4, 8, 12, 21, 26, 28, 30, 71, 78, 106, 113, 119, 121], "easier": 4, "easi": [4, 27, 48, 62, 119, 121], "interfac": [4, 7, 79, 113], "With": [4, 26, 28], "simpli": 4, "ad": [4, 12, 17, 19, 47, 56, 58], "constraint": [4, 113], "auto": [4, 5, 15, 26, 28, 30, 39, 62, 105, 113, 114, 118, 119, 120, 121, 122, 124, 125, 126], "intern": [4, 8, 16, 22, 25, 28, 34, 35, 36, 47, 48, 49, 50, 51, 86, 87, 88, 89], "guarante": 4, "within": [4, 7, 12, 19, 21, 28, 59], "both": [4, 7, 12, 21, 23, 26, 27, 28, 34, 35, 36, 47, 48, 49, 50, 51, 86, 87, 88, 89, 120, 126], "sequenti": 4, "parallel": [4, 106], "scalabl": 4, "differ": [4, 8, 12, 13, 15, 16, 17, 21, 22, 27, 39, 47, 51, 62, 79, 94, 114, 122, 124, 126], "multipl": [4, 7, 12, 26, 27, 30, 37, 50, 58, 78, 89, 113], "all": [4, 7, 12, 16, 17, 22, 26, 27, 28, 29, 30, 52, 58, 64, 78, 92, 116, 118, 119, 120, 121, 122, 124, 125, 126], "kei": [4, 26, 49, 53, 56, 58, 98, 99], "includ": [4, 7, 9, 12, 16, 26, 29, 30, 37, 42, 47, 56, 89, 92, 107, 118, 119, 120, 121, 124, 125, 126], "usabl": 4, "By": [4, 7, 12, 26, 28, 29], "offer": [4, 12, 21, 23, 25, 26, 27, 30], "straightforward": 4, "intuit": [4, 26, 124, 125], "user": [4, 7, 8, 12, 19, 26, 28, 30, 105], "take": [4, 7, 8, 19, 62, 118, 120, 121, 122, 124, 125, 126], "advantag": [4, 26], "just": [4, 12, 22, 27, 28, 48, 113, 116, 121, 122, 126], "argument": [4, 27, 28, 37, 47, 53, 56, 57, 58, 95, 98, 105, 113], "below": [4, 7, 8, 9, 10, 13, 15, 16, 19, 21, 22, 23, 25, 27, 28, 29, 92, 106, 114, 117, 118, 119, 120, 121, 122, 124, 125, 126], "run_hpo": [4, 27, 105], "abund": [4, 12], "asha": [4, 106], "choic": [4, 15, 21, 22, 30], "asynchron": [4, 79, 106], "success": 4, "halv": 4, "sha": [4, 106], "design": [4, 6, 8, 21], "comput": [4, 7, 8, 10, 12, 15, 17, 19, 21, 22, 23, 25, 30, 34, 42, 48, 79, 103, 120], "machin": [4, 8, 26, 28], "involv": [4, 7, 8, 12, 17, 21], "trial": [4, 28, 106], "them": [4, 13, 16, 19, 26, 29, 45, 53, 78, 79], "metric": [4, 16, 19, 21, 22, 27, 35, 39, 48, 76, 77, 79, 80, 81, 82, 83, 84, 90, 105, 113, 118, 119, 120, 121, 122, 124, 125, 126], "mani": [4, 106], "short": [4, 58], "perform": [4, 6, 7, 9, 12, 13, 15, 19, 23, 28, 34, 79, 88, 89, 90, 105, 113, 118, 120, 121, 122, 124, 125, 126], "advanc": [4, 21, 26, 30], "next": [4, 56, 106], "round": 4, "subsequ": [4, 12, 21], "spent": [4, 26], "repeat": 4, "until": 4, "remain": [4, 79, 105, 116, 121], "becaus": [4, 23, 57, 71, 105, 121, 122, 124, 126], "allow": [4, 7, 8, 21, 26, 28, 30, 48, 53, 58, 105, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "independ": [4, 26, 48], "thei": [4, 19, 22, 26, 47, 92], "wait": [4, 29], "complet": [4, 28, 105], "befor": [4, 19, 26, 29, 37, 39, 48, 71, 79, 90, 95, 102, 105], "techniqu": [4, 9, 12, 15, 19, 22, 23, 27], "call": [4, 19, 25, 26, 29, 34, 78, 79, 111, 114, 120, 124, 125], "hyperband": [4, 106], "much": [4, 26, 28, 30, 120, 124, 125], "alloc": 4, "hpo_config": [4, 105], "hpoconfig": [4, 65, 105], "dataclass": [4, 26, 62], "inlcud": 4, "expect": [4, 7, 19, 29, 36, 109, 118, 119, 121, 122, 124, 125, 126], "confgigur": 4, "parameters": 4, "here": [4, 7, 19, 26, 107, 114, 116, 118, 119, 120, 121, 122, 124, 125, 126], "search_spac": [4, 65], "lr": [4, 19, 23, 27, 49, 79, 91, 114], "uniform": 4, "min": [4, 65], "0": [4, 7, 10, 12, 15, 19, 21, 23, 25, 26, 31, 34, 36, 37, 38, 39, 42, 46, 47, 48, 49, 51, 56, 57, 62, 65, 68, 71, 72, 73, 78, 79, 87, 88, 89, 90, 91, 92, 95, 99, 102, 104, 114, 117, 118, 119, 120, 121, 122, 124, 125, 126], "001": [4, 120], "max": [4, 27, 28, 65, 89, 113, 114], "1": [4, 7, 9, 12, 15, 16, 19, 22, 23, 26, 31, 34, 36, 37, 38, 42, 47, 48, 49, 51, 56, 57, 62, 63, 65, 68, 71, 72, 73, 79, 87, 88, 90, 92, 94, 95, 99, 103, 106, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "expected_time_ratio": [4, 65], "6": [4, 12, 19, 22, 23, 26, 29, 57, 92, 99, 113, 116, 117, 118], "As": [4, 7, 12, 26, 117], "abov": [4, 12, 13, 16, 19, 21, 26, 29, 92, 114, 118, 119, 120, 121, 122, 124, 125, 126], "ones": [4, 27, 58, 71, 79], "variou": [4, 8, 12, 25, 26, 28, 30, 105], "almost": [4, 42, 111], "except": [4, 19, 94, 111], "space": [4, 8], "But": [4, 126], "dictionrai": 4, "so": [4, 8, 15, 19, 23, 25, 27, 29, 30, 39, 62, 66, 79, 105, 122, 126], "explan": [4, 8, 30, 113, 116, 118, 119, 120, 121, 122, 124, 125, 126], "list": [4, 27, 28, 37, 41, 42, 45, 46, 47, 48, 49, 53, 56, 57, 58, 61, 62, 65, 68, 71, 72, 73, 78, 79, 81, 87, 89, 90, 91, 92, 96, 98, 99, 102, 103, 104, 105, 106, 113, 114, 117, 118, 119, 121, 122, 124, 125, 126], "dict": [4, 34, 37, 39, 41, 42, 45, 46, 48, 50, 53, 56, 57, 58, 62, 65, 68, 71, 72, 73, 76, 78, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 92, 94, 95, 96, 98, 99, 102, 103, 104, 105, 106, 109, 118, 119, 121, 122, 124, 125, 126], "str": [4, 28, 34, 35, 36, 37, 38, 39, 42, 45, 46, 47, 48, 49, 51, 53, 54, 55, 56, 57, 58, 59, 61, 62, 65, 66, 68, 71, 72, 73, 76, 78, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 94, 95, 97, 98, 101, 103, 104, 105, 106, 109], "ani": [4, 15, 16, 19, 21, 25, 26, 34, 37, 39, 47, 48, 53, 56, 58, 61, 62, 65, 72, 73, 76, 78, 79, 80, 81, 82, 83, 84, 90, 92, 95, 96, 103, 104, 105, 106, 109, 113], "dictionari": [4, 26, 37, 39, 42, 45, 48, 53, 56, 58, 62, 78, 79, 92, 94, 96, 98, 99, 103, 105, 109], "ha": [4, 12, 15, 23, 26, 28, 42, 48, 51, 57, 66, 79, 118, 119, 120, 121, 122, 124, 125, 126], "param_typ": 4, "rang": [4, 19, 37, 48, 92], "must": [4, 26, 47, 48], "float": [4, 7, 34, 37, 38, 42, 45, 47, 48, 49, 62, 65, 68, 71, 72, 73, 86, 87, 89, 90, 102, 104, 105, 106, 118, 121, 122, 126], "uniformli": 4, "upper": 4, "bound": [4, 7, 12, 19, 21, 23, 25, 30, 83, 120], "quniform": 4, "quantiz": [4, 23, 25, 79, 90, 105, 120], "loguniform": 4, "scale": [4, 12, 16, 19, 23, 37, 42, 61, 62, 71, 106, 114], "logarithm": 4, "qloguniform": 4, "categor": 4, "int": [4, 28, 34, 35, 36, 37, 38, 39, 42, 45, 46, 47, 48, 49, 50, 51, 54, 56, 57, 61, 62, 63, 65, 68, 71, 72, 73, 76, 77, 78, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 94, 96, 99, 102, 103, 104, 105, 106, 111], "step": [4, 7, 9, 12, 19, 25, 29, 56, 79, 83, 90, 91, 105, 116, 117, 118, 119, 121, 122, 124, 125, 126], "unit": [4, 29], "log_bas": 4, "10": [4, 7, 9, 12, 23, 27, 28, 29, 57, 58, 105, 113, 114, 118, 120, 122, 124, 125, 126], "union": [4, 48], "tupl": [4, 34, 36, 37, 42, 48, 49, 50, 51, 53, 57, 58, 61, 62, 68, 71, 72, 73, 78, 79, 86, 87, 88, 89, 90, 92, 96, 102, 104, 109], "vaul": 4, "candid": [4, 25], "save_path": [4, 65], "none": [4, 12, 16, 28, 34, 35, 36, 37, 38, 39, 41, 42, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 62, 65, 66, 68, 71, 72, 73, 76, 78, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 91, 94, 95, 98, 102, 103, 104, 105, 106, 109, 111], "path": [4, 6, 8, 12, 22, 25, 26, 48, 53, 55, 58, 59, 68, 71, 72, 73, 76, 78, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 97, 98, 105, 109, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "result": [4, 7, 8, 12, 15, 16, 21, 25, 26, 28, 29, 37, 48, 68, 79, 105, 106, 117, 118, 119, 120, 121, 122, 124, 125, 126], "whether": [4, 12, 16, 26, 29, 37, 39, 45, 48, 50, 53, 57, 58, 59, 61, 68, 71, 72, 73, 89, 105, 106], "minim": [4, 21, 26, 29, 117], "respect": 4, "num_work": [4, 62, 65, 103, 113, 126], "4": [4, 10, 12, 15, 19, 21, 22, 26, 27, 28, 31, 42, 49, 65, 92, 94, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "maximum_resourc": [4, 65], "reach": 4, "minimum_resourc": [4, 65, 106], "minimum": [4, 106, 117], "least": [4, 120], "improv": [4, 5, 12, 19, 21, 22, 23, 30, 113], "prior_hyper_paramet": [4, 65], "try": [4, 23, 25, 26, 29], "acceptable_additional_time_ratio": [4, 65], "addit": [4, 7, 12, 15, 19, 21, 22, 23, 26, 27, 28, 29, 30, 47, 53, 56, 71, 98, 105, 116, 118, 119, 120, 121, 124, 125, 126], "accept": [4, 37, 48, 62, 95], "reduction_factor": [4, 65, 106], "3": [4, 7, 9, 12, 13, 19, 22, 26, 31, 45, 48, 49, 50, 57, 58, 65, 68, 71, 90, 92, 99, 105, 106, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "promot": [4, 106], "rung": [4, 106], "top": [4, 9, 15, 48, 68, 71, 73, 106], "asynchronous_bracket": [4, 65, 106], "bool": [4, 34, 35, 37, 39, 41, 42, 45, 46, 48, 49, 50, 53, 54, 57, 58, 59, 61, 62, 64, 65, 68, 71, 72, 73, 76, 77, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 91, 95, 103, 104, 105, 106], "oper": [4, 7, 13, 34, 47, 52, 79, 99, 105, 106, 113], "asynchronous_sha": [4, 65, 106], "bracket": [4, 106], "parallelli": [4, 106], "want": [4, 6, 26, 27, 28, 29, 47, 58, 105, 114, 118, 119, 121, 122, 124, 125, 126], "know": [4, 6, 28, 117], "pleas": [4, 6, 7, 10, 13, 15, 16, 19, 21, 22, 26, 28, 29, 76, 77, 80, 81, 84, 86, 87, 88, 89, 106, 117, 118, 120, 121, 122, 124, 125, 126], "refer": [4, 6, 7, 8, 9, 10, 13, 15, 16, 19, 21, 22, 25, 26, 27, 28, 29, 30, 42, 48, 50, 51, 90, 106, 117, 118, 119, 120, 121, 122, 124, 125, 126], "hyperparamet": [5, 15, 19, 21, 22, 30, 66, 106, 113], "configur": [5, 6, 12, 26, 28, 30, 34, 37, 45, 48, 50, 53, 58, 62, 63, 64, 65, 71, 76, 77, 78, 79, 80, 81, 84, 86, 87, 88, 89, 92, 98, 105, 106, 109, 113, 115, 118, 119, 120, 121, 122, 124, 125, 126], "adapt": [5, 7, 12, 15, 16, 19, 21, 22, 23, 25, 113], "explain": [5, 27, 28, 79, 81, 82, 88, 105, 113, 116, 117, 121, 122, 127], "ai": [5, 26, 28, 116], "xai": [5, 28, 79, 81, 82, 88, 105, 113, 121, 122, 127], "tile": [5, 27, 30, 79, 81, 82, 102, 113], "class": [5, 8, 13, 14, 16, 17, 19, 21, 22, 26, 30, 34, 35, 36, 37, 38, 39, 42, 45, 46, 47, 48, 49, 50, 51, 53, 56, 58, 59, 62, 63, 64, 65, 66, 68, 71, 72, 73, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 94, 95, 96, 98, 102, 103, 104, 105, 106, 109, 113, 116, 121, 125], "increment": [5, 15, 17, 30, 46, 47, 113], "sampler": [5, 15, 62, 98], "balanc": [5, 7, 15, 21, 22, 38, 48], "algorithm": [6, 7, 9, 10, 12, 13, 15, 16, 19, 21, 22, 23, 28, 30, 33, 106, 113, 116, 118], "ptq": [6, 23, 25, 27, 28, 76, 79, 105, 113, 118, 120, 121, 122, 124, 125, 126], "appli": [6, 7, 12, 23, 28, 29, 51, 58, 105, 116, 117, 118, 120, 121, 122, 124, 125, 126], "retrain": [6, 17], "fine": [6, 12, 17, 24, 25, 26], "tune": [6, 7, 12, 17, 24, 25, 26, 106, 118, 119, 120, 121, 122, 124, 125, 126], "detail": [6, 7, 21, 26, 28, 45, 50, 56, 57, 106, 119, 120, 121, 122, 124, 125, 126], "about": [6, 8, 16, 19, 21, 26, 28, 30, 56, 79, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "how": [6, 8, 9, 13, 15, 16, 19, 21, 22, 26, 27, 28, 30, 105, 106, 109, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127], "work": [6, 7, 8, 15, 16, 19, 21, 28, 48, 53, 58, 59, 79, 105, 109, 117, 120, 121], "familiar": 6, "document": [6, 12, 28, 29, 113, 114, 120], "convert": [6, 9, 16, 26, 48, 53, 61, 68, 71, 83, 96, 99, 116], "intermedi": [6, 8, 28, 68, 71, 72, 73, 79, 105, 118, 120, 121, 122, 124, 125, 126], "represent": [6, 8, 12, 16, 28, 45, 61, 68, 71, 72, 73, 79, 105, 118, 120, 121, 122, 124, 125, 126], "ir": [6, 7, 27, 28, 68, 71, 73, 76, 79, 80, 81, 82, 83, 84, 90, 105, 113, 116, 118, 120, 121, 122, 124, 125, 126], "accur": [6, 22, 23, 30], "defaultquant": 6, "further": [6, 16, 51, 118, 121, 122, 124, 125, 126], "inform": [6, 9, 12, 13, 15, 16, 19, 21, 22, 23, 25, 27, 28, 30, 39, 42, 48, 56, 71, 78, 79, 81, 82, 89, 90, 92, 94, 102, 109, 117, 118, 119, 120, 121, 122, 124, 125, 126], "dedic": [6, 13, 15, 16, 19, 21, 22, 28], "tutori": [6, 8, 9, 13, 15, 16, 19, 21, 22, 27, 28, 30, 119, 122, 124, 125, 126], "your": [6, 12, 22, 28, 29, 30, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "checkpoint": [6, 7, 8, 25, 27, 28, 45, 48, 53, 78, 79, 81, 82, 103, 105, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "introduc": [7, 26, 113], "concept": 7, "enhanc": [7, 26, 113], "particularli": [7, 17, 21], "dens": [7, 48, 51], "pack": 7, "divid": 7, "origin": [7, 9, 12, 48, 102, 116, 121], "patch": [7, 12, 34, 49, 57, 58, 71, 86, 87, 88, 89], "divis": [7, 48], "appear": [7, 116], "relat": [7, 13, 15, 19, 21, 22, 26, 29, 52, 57, 58, 66, 94, 121, 122], "challeng": [7, 125], "becom": [7, 17, 47], "nearli": 7, "invis": 7, "deeper": [7, 119, 121, 124, 126], "layer": [7, 12, 34, 37, 39, 45, 49, 79, 86, 87, 88, 89, 94], "map": [7, 8, 10, 12, 16, 19, 21, 28, 37, 49, 79, 105, 113, 116, 119, 122, 124, 126], "due": [7, 8, 19, 21, 22, 29, 37, 48, 92, 122, 126], "downsampl": 7, "prove": [7, 19], "especi": [7, 25, 118, 120, 121, 122, 124, 125, 126], "benefici": 7, "where": [7, 8, 9, 13, 16, 17, 19, 21, 22, 26, 27, 28, 29, 51, 53, 58, 68, 72, 73, 103, 116, 117, 120], "20": [7, 12, 15, 19, 22, 23, 29, 118, 119, 120, 121, 122, 124, 125], "pixel": [7, 12, 22, 45, 48, 51, 125], "4k": 7, "consid": [7, 26, 28, 29, 37, 92], "associ": [7, 17, 27, 105], "test": [7, 12, 15, 19, 25, 27, 28, 42, 66, 71, 76, 78, 79, 80, 81, 82, 83, 84, 90, 105, 109, 113, 117, 118, 119, 120, 121, 122, 124, 125, 126], "impact": [7, 19], "strike": [7, 21], "incorpor": [7, 21, 26], "These": [7, 8, 12, 15, 25, 26, 28, 48], "proper": [7, 29, 30, 62], "compromis": [7, 21], "leverag": [7, 21], "empow": [7, 26], "local": [7, 10, 12, 19, 29, 79, 116, 120], "crowd": 7, "ultim": 7, "lead": 7, "dota": 7, "crop": [7, 9, 10, 19, 22, 68, 71, 72, 73], "9": [7, 10, 12, 19, 21, 22, 114, 121], "annot": [7, 9, 13, 16, 19, 27, 28, 37, 47, 113, 118, 119, 121, 122, 124, 125, 126], "box": [7, 8, 12, 19, 21, 23, 25, 26, 30, 42, 48, 50, 51, 83, 120], "mask": [7, 8, 12, 21, 22, 23, 25, 37, 42, 47, 48, 50, 51, 83, 99, 102, 113, 120, 124], "level": [7, 12, 13, 21, 22, 28, 42, 54, 56, 58, 79, 88, 120], "predict": [7, 8, 12, 13, 15, 16, 21, 22, 25, 28, 37, 47, 48, 50, 51, 78, 79, 81, 82, 83, 90, 102, 105, 113, 116, 117], "separ": [7, 13, 16, 21, 26, 58, 113], "stitch": 7, "back": 7, "togeth": [7, 19, 113, 116, 117], "form": [7, 26, 27, 51, 58, 62, 89, 109, 118], "merg": [7, 81, 82, 102, 113], "through": [7, 8, 19, 26, 27, 28, 29, 30, 47, 113, 116], "imagetilingdataset": 7, "ot": 7, "context": [7, 71], "650": 7, "17": 7, "2": [7, 9, 19, 22, 23, 25, 26, 31, 42, 48, 56, 57, 62, 92, 99, 105, 106, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "elaps": [7, 118, 120, 121, 122, 124, 125, 126], "38": [7, 22, 23, 25], "eta": 7, "7": [7, 10, 19, 22, 26, 48, 57], "326097726821899": 7, "sec": 7, "tile_config": [7, 62], "enable_til": [7, 62, 104], "tileconfig": [7, 62], "averag": [7, 8, 15, 16, 21, 34, 42, 47], "100x100": 7, "around": [7, 12, 19, 26], "577x577": 7, "desir": [7, 22], "enough": [7, 28, 113], "tiling_paramet": 7, "object_tile_ratio": [7, 62], "5": [7, 12, 15, 19, 22, 26, 27, 31, 34, 37, 48, 57, 62, 92, 114, 116, 117, 121, 122, 124, 125, 126], "enable_adaptive_til": [7, 62], "05": [7, 22, 38, 126], "largest": [7, 19], "calcul": [7, 8, 12, 19, 37, 48], "border": 7, "split": [7, 15, 19, 30, 118, 126], "cover": 7, "adjac": 7, "tile_overlap": 7, "section": [7, 12, 17, 23, 25, 28, 30, 56, 116, 118, 119, 120, 121, 122, 124, 125, 126], "randomli": [7, 9, 12], "percentag": 7, "note": [7, 12, 30, 45, 83, 86, 87, 88, 89, 92, 118, 120, 121, 122, 124, 125, 126], "sampling_ratio": [7, 62], "disabl": [7, 27, 91, 113, 124, 125], "fals": [7, 12, 22, 28, 34, 35, 37, 39, 42, 45, 46, 48, 49, 54, 57, 58, 62, 64, 68, 71, 72, 73, 76, 77, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 95, 103, 104, 105, 106, 116, 121, 122, 124, 125, 126], "tile_s": [7, 62, 104], "512": 7, "512x512": [7, 22], "enable_adaptive_param": 7, "edg": [7, 26], "length": [7, 48], "integ": [7, 61, 118, 121, 122, 126], "100": [7, 12, 19, 22, 95, 118, 119, 120, 121, 122, 124, 125, 126], "4096": 7, "command": [7, 8, 9, 10, 13, 15, 16, 19, 21, 28, 29, 30, 54, 56, 101, 105, 113, 114, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "torch": [7, 27, 28, 29, 34, 37, 38, 39, 42, 45, 47, 49, 50, 51, 57, 61, 62, 68, 71, 72, 73, 89, 99, 113, 114], "longer": [7, 21, 58], "encount": 7, "error": [7, 12, 57, 66, 126], "mitig": 7, "issu": [7, 12, 26, 29, 117], "line": [7, 8, 28, 29, 56, 101, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "field": [8, 26, 30], "research": 8, "transpar": 8, "interpret": 8, "human": [8, 28], "goal": [8, 12, 13, 16], "understand": 8, "why": [8, 57, 66, 78], "decis": [8, 28], "insight": [8, 26], "inner": 8, "u": [8, 26, 29, 117], "analyz": [8, 30], "mistak": 8, "irrelev": 8, "build": [8, 19, 21, 22, 29, 30, 34, 39, 57, 71, 79, 105, 107, 113], "trust": 8, "sure": 8, "its": [8, 12, 13, 19, 21, 22, 26, 45, 47, 57, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "adopt": [8, 21], "domain": [8, 23, 25, 26], "salienc": [8, 28, 105, 113, 116], "visual": [8, 12, 17, 28, 30, 48, 49, 50, 51, 62, 73, 90, 92, 113, 116, 117, 118, 119, 121, 122, 123, 124, 125], "suitabl": [8, 21, 30], "comprehens": [8, 26], "highlight": [8, 26], "part": 8, "point": [8, 19, 23, 25, 26, 27, 48, 50, 51, 52, 105, 118, 121, 122, 126], "view": 8, "look": [8, 26, 27, 117, 120, 122, 126], "like": [8, 22, 23, 25, 26, 27, 28, 29, 47, 88, 105, 114, 117, 120, 121, 122, 126], "heatmap": [8, 12, 28, 116], "warm": [8, 118, 119, 121, 122, 124, 125, 126], "color": [8, 19, 22, 26, 28, 116], "area": [8, 28, 116], "repres": [8, 26, 48, 59, 61, 79, 92, 98], "focu": [8, 28, 116], "taken": 8, "d": [8, 12, 58, 117], "rise": 8, "paper": [8, 10, 12, 16, 106], "certain": [8, 19], "wa": [8, 23, 28, 29, 92], "network": [8, 12, 19, 21, 23, 48, 92], "activ": [8, 29, 37, 41, 49, 50, 51, 79, 91, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "naiv": 8, "approach": [8, 12, 17, 19, 26, 30, 106], "output": [8, 9, 12, 19, 22, 25, 26, 27, 28, 34, 48, 49, 56, 68, 71, 72, 73, 78, 79, 113, 116, 117, 118, 119, 121, 122, 124, 125, 126], "extractor": [8, 15, 19, 22], "backbon": [8, 10, 12, 15, 19, 21, 22, 23, 28, 34, 37, 38, 48, 51, 88, 113], "channel": [8, 12, 34, 37, 45, 46, 49, 50, 51, 68, 71], "dimens": [8, 26, 34, 48, 49, 50, 51, 90, 94], "highli": [8, 19, 118, 119, 121, 122, 124, 125, 126], "reli": [8, 19, 118, 119, 121, 122, 124, 125, 126], "ignor": [8, 42, 46, 47, 61, 79, 113], "neck": [8, 19, 34, 88], "head": [8, 10, 13, 15, 19, 22, 34, 49, 88, 92], "rel": [8, 49, 122, 126], "recipro": [8, 116], "cam": [8, 116], "weigh": 8, "per": [8, 16, 39, 48, 71, 113], "gradient": [8, 22, 47], "free": [8, 12], "reciproc": 8, "spatial": [8, 10, 34, 36, 51, 113], "extract": [8, 10, 12, 21, 25, 37, 119], "exploit": 8, "correl": 8, "target": [8, 19, 21, 22, 25, 38, 42, 47, 48, 78, 79, 90, 116, 118, 119, 121, 122, 124, 125, 126], "option": [8, 19, 21, 28, 29, 37, 42, 47, 48, 53, 54, 56, 57, 58, 59, 68, 71, 72, 73, 89, 102, 105, 106, 113, 117, 118, 119, 120, 121, 122, 124, 125, 126], "cnn": [8, 12, 21, 113, 116], "vit": [8, 49, 116], "modif": [8, 19, 118, 119, 120, 121, 124, 125, 126], "transform": [8, 12, 21, 26, 28, 48, 49, 50, 51, 61, 62, 66, 76, 79, 114, 116, 118, 121, 122, 124, 125, 126], "same": [8, 9, 12, 13, 16, 19, 21, 22, 23, 25, 28, 42, 48, 57, 89, 91, 111, 114, 116, 120, 121, 124, 126], "vision": [8, 17, 19, 21, 22, 23, 25, 26, 30, 49], "show": [8, 12, 19, 23, 27, 28, 105, 109, 118, 119, 120, 121, 122, 124, 126], "comparison": [8, 119, 121, 122, 124, 125, 126], "describ": [8, 30, 56], "access": [8, 29, 113], "necess": 8, "modifi": [8, 19, 28, 39, 46, 58, 79, 94, 98], "dump": [8, 27, 28, 105, 113, 116], "ye": 8, "shot": [8, 17, 24, 30, 48, 90], "No": 8, "re": [8, 15, 27, 29, 92, 113, 117], "h": [8, 28, 42, 48, 49, 51, 56, 80, 99], "w": [8, 39, 42, 48, 49, 51, 99, 113], "hxw": 8, "last": [8, 10, 13, 28, 37, 45, 111, 118], "encod": [8, 48, 50, 99, 126], "block": [8, 12, 34, 49, 71], "medium": [8, 19, 122], "stage": [8, 13, 21, 25, 37, 39, 45, 66, 78, 79, 116, 117], "detector": [8, 10, 42, 113, 116], "detclassprobabilitymap": [8, 116], "raw": [8, 12, 118], "probabl": [8, 15, 19, 34, 38], "region": [8, 10, 12, 21, 45, 48], "interest": [8, 10, 21], "limit": [8, 22, 62], "loss": [8, 9, 10, 12, 15, 16, 19, 21, 22, 23, 33, 34, 37, 39, 42, 48, 113], "drift": 8, "toward": 8, "center": [8, 12, 42], "propag": 8, "clear": [8, 78], "input": [8, 9, 12, 16, 19, 26, 27, 28, 34, 36, 37, 39, 45, 46, 47, 48, 49, 50, 51, 68, 71, 73, 78, 79, 81, 82, 88, 89, 90, 100, 105, 113, 116, 117, 125], "standalon": [8, 25, 88], "maskrcnnexplainalgo": [8, 116], "combin": [8, 10, 12, 23, 25, 30, 47, 116], "aggreg": [8, 19], "pth": [8, 116, 118, 119, 120, 121, 122, 124, 125, 126], "xml": [8, 27, 28, 116, 117, 118, 120, 121, 122, 124, 125, 126], "weight": [8, 9, 10, 12, 15, 16, 19, 21, 22, 28, 29, 36, 37, 38, 39, 41, 42, 45, 47, 48, 49, 68, 71, 73, 79, 86, 87, 88, 89, 118, 120, 121, 122, 124, 125, 126], "whereth": [8, 116], "dataset_path": [8, 28, 105], "folder": [8, 15, 22, 27, 28, 29, 68, 113, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "problem": [9, 10, 13, 15, 16, 17, 23, 25, 26, 29, 71, 78], "identifi": [9, 12, 21, 22, 30, 121], "being": [9, 12, 86, 87, 88, 89], "video": [9, 113, 117, 118], "sequenc": [9, 61, 86, 87, 88, 89], "frame": [9, 119], "indic": [9, 12, 21, 48, 51, 116], "compon": [9, 10, 15, 16, 19, 21, 22, 23, 25, 28, 37, 42, 56, 58, 98, 113], "augment": [9, 10, 12, 19, 21, 22, 26, 37, 89], "standard": [9, 15, 19, 22, 23, 28, 34, 68, 71, 72, 73], "random": [9, 10, 12, 19, 21, 22, 30, 53, 105], "resiz": [9, 23, 25, 68, 71, 113, 116], "horizont": [9, 114], "flip": [9, 10, 21, 22], "adam": [9, 12, 22, 23], "decai": [9, 10, 12, 19, 21, 22, 49], "adamw": 9, "schedul": [9, 15, 16, 19, 21, 22, 27, 28, 30, 35, 39, 48, 53, 76, 77, 79, 80, 81, 82, 83, 84, 90, 106, 113, 114], "factor": [9, 42, 47, 48, 71, 114], "linear": [9, 21, 22, 37, 79, 91], "warmup": [9, 21, 22, 79, 91], "gradual": 9, "begin": [9, 79, 119, 122, 126], "cross": [9, 10, 15, 21, 22, 39], "entropi": [9, 10, 15, 21, 22, 39], "popular": [9, 10, 12, 22, 26], "kinet": [9, 10, 118], "file": [9, 16, 22, 27, 28, 29, 53, 58, 61, 68, 78, 79, 85, 86, 87, 88, 89, 96, 103, 105, 107, 109, 110, 111, 113, 114, 117, 118, 119, 120, 121, 122, 124, 125, 126], "structur": [9, 12, 13, 15, 16, 26, 113, 117, 118, 119, 121, 122, 124, 126], "x3d": [9, 10, 118, 119], "movinet": [9, 34, 113, 118], "id": [9, 10, 15, 19, 22, 23, 25, 106, 117], "complex": [9, 10, 12, 15, 19, 21, 22, 23, 25], "gflop": [9, 10, 12, 15, 19, 21, 22, 23, 25], "mb": [9, 10, 12, 15, 19, 21, 22, 23, 25], "custom_action_classification_x3d": 9, "49": [9, 19, 22], "79": [9, 22, 23], "custom_action_classificaiton_movinet": 9, "71": [9, 16], "see": [9, 10, 13, 15, 16, 26, 28, 29, 48, 50, 76, 77, 80, 81, 84, 86, 87, 88, 89, 114, 117, 118, 119, 120], "tabl": [9, 10, 15, 16, 19, 21, 22, 23], "some": [9, 10, 15, 16, 19, 21, 22, 28, 29, 45, 66, 78, 79, 105, 118, 120, 121, 122, 124, 125, 126], "academ": [9, 10, 15, 16, 19, 21, 22, 30], "present": [9, 10, 15, 16, 19, 21, 22, 28, 48, 120], "nvidia": [9, 10, 15, 16, 19, 21, 22, 118, 119, 120, 121, 122, 124, 125, 126], "geforc": [9, 10, 15, 16, 19, 21, 22, 118, 119, 120, 121, 122, 124, 125, 126], "rtx": [9, 118, 119, 120, 121, 122, 124, 125, 126], "3090": [9, 118, 119, 120, 121, 122, 124, 125, 126], "hmdb51": [9, 118], "ucf101": [9, 10], "67": [9, 16, 19, 22], "19": 9, "87": [9, 16, 22], "89": 9, "62": [9, 22], "74": [9, 15, 16], "81": [9, 15, 22], "sptio": 10, "tempor": [10, 119], "actor": 10, "solv": [10, 13, 15, 16, 17, 22, 26], "3d": [10, 34, 89], "2d": 10, "simplest": 10, "futur": [10, 12, 30, 118], "rcnn": [10, 113, 124], "architectur": [10, 12, 19, 21, 22, 26, 30, 50, 78, 118, 120, 121, 122, 124, 125, 126], "come": [10, 21, 25, 30, 51, 79, 103, 105], "propos": [10, 21], "e": [10, 29, 33, 42, 62, 92, 117], "g": [10, 33, 42, 62], "atss": [10, 19, 27, 28, 113, 116, 122], "finetun": [10, 79, 103], "roi": 10, "extend": [10, 21, 30, 48, 56, 113, 118, 119, 120, 121, 122, 124, 125, 126], "keyfram": 10, "replic": 10, "along": [10, 28], "axi": [10, 23, 25], "fed": 10, "transfer": [10, 12, 19, 30, 64], "pipelin": [10, 15, 16, 19, 21, 22, 23, 26, 27, 30, 66, 71, 76, 77, 80, 81, 82, 83, 84, 90, 113], "sgd": [10, 12, 19, 21, 27, 114], "1e": [10, 19, 21, 27, 48], "momentum": [10, 12, 19, 21, 27, 114], "binari": [10, 13, 16, 48, 99], "categori": [10, 12, 13, 15, 16, 21, 37, 92, 113, 116, 120], "ava": [10, 119], "readi": [10, 15, 19, 21, 22, 27, 28, 29, 30, 105, 118, 121, 122, 124, 125, 126], "custom_action_detection_x3d_fast_rcnn": 10, "x3d_fast_rcnn": [10, 119], "13": [10, 15, 19, 21, 22, 57], "04": [10, 22, 29, 118, 119, 120, 121, 122, 124, 125, 126], "8": [10, 19, 21, 26, 38, 57, 79, 104, 105, 120, 121, 122, 124, 125, 126], "400": [10, 62, 104], "rtx3090": [10, 15, 16, 19, 21, 22], "jhmdb": [10, 119], "24": [10, 15, 16, 19, 56, 120, 122, 124, 125], "92": [10, 16, 19, 22, 23], "14": [10, 16, 22, 29, 57, 113, 120, 121, 122, 124, 125], "80": [10, 15, 16, 21, 22], "real": [12, 17, 21, 117], "world": [12, 26], "applic": [12, 21, 59, 117, 120], "industri": [12, 120], "medic": [12, 120], "secur": [12, 29], "extrem": 12, "unbalanc": 12, "normal": [12, 37, 39, 48, 49, 62, 71, 89, 94], "lack": 12, "abnorm": 12, "A": [12, 21, 26, 28, 29, 37, 39, 42, 48, 51, 53, 56, 58, 68, 71, 78, 79, 94, 95, 98, 99, 100, 101, 105, 106, 109], "definit": [12, 26, 68, 71, 72, 73, 76, 77, 79, 80, 81, 82, 83, 84, 90, 92], "constantli": 12, "evolv": 12, "difficult": [12, 23], "onc": [12, 27, 29], "perman": 12, "altern": [12, 27], "phase": [12, 23, 25, 28, 105, 113], "deviat": [12, 34], "would": [12, 29, 68, 105], "known": [12, 21, 26], "examin": [12, 23, 25], "solut": [12, 15, 17, 21, 23, 25, 78, 122, 124, 126], "post": [12, 23, 25, 34, 78, 102, 105, 117, 118, 121, 122, 126], "anomal": [12, 120], "v": [12, 28, 29, 48, 56, 118, 119, 120, 121, 122], "entir": [12, 17, 26, 28], "score": [12, 22, 23, 26, 34, 37, 42, 48, 83, 102, 106, 120, 126], "likelihood": 12, "threshold": [12, 37, 48, 81, 82, 90, 102, 113, 121, 122, 126], "either": [12, 23, 29, 79, 120], "backend": [12, 30, 71, 114], "classifi": [12, 13, 15, 34, 37], "locat": [12, 19, 21, 28, 53, 118, 119, 120, 121, 122, 124, 125, 126], "b": [12, 22, 48, 49], "c": [12, 28, 48, 49, 106, 117], "moment": 12, "ground_truth": [12, 120], "sub_category_1": 12, "000_mask": [12, 120], "png": [12, 15, 120], "sub_category_n": 12, "000": [12, 120], "contamin": [12, 120], "releas": [12, 29, 30, 126], "benchmark": [12, 22], "amazon": 12, "visa": 12, "meanwhil": [12, 15, 21], "own": [12, 19, 26, 30, 116, 117], "mention": [12, 120], "behaviour": 12, "168": 12, "21": [12, 57, 118], "initi": [12, 21, 34, 35, 36, 37, 42, 45, 47, 48, 49, 50, 51, 53, 71, 86, 87, 88, 89, 90, 98, 101, 105, 113], "distanc": 12, "mechan": [12, 21], "elimin": 12, "redund": 12, "select": [12, 19, 30, 48, 92, 105, 106, 113], "subset": [12, 28, 62, 105, 119], "dimension": 12, "variat": 12, "gaussian": 12, "fit": [12, 19, 62, 68, 71, 79], "embed": [12, 48, 49, 50, 51, 68, 113], "correspond": [12, 13, 17, 28, 47, 48, 57, 62], "multivari": 12, "mahalanobi": 12, "posit": [12, 16, 25, 37, 38, 42, 48, 49, 50, 51, 56], "matric": 12, "constitut": 12, "higher": [12, 21], "neural": 12, "resnet18": 12, "wide": [12, 21], "resnet50": [12, 21], "layer1": 12, "layer2": 12, "layer3": 12, "n": [12, 15, 21, 42, 47, 48, 51], "retain": 12, "reduct": [12, 38, 47], "550": 12, "student": 12, "imit": 12, "behavior": [12, 105, 116], "teacher": [12, 113], "predic": 12, "notion": 12, "simpler": 12, "pyramid": [12, 19], "match": [12, 39, 79], "unsupervis": 12, "compos": [12, 26, 62], "receiv": [12, 28, 118, 119, 121, 122, 124, 125, 126], "mixtur": 12, "therebi": 12, "sum": [12, 21, 42, 47], "l2": 12, "mse": 12, "cannot": [12, 88], "0001": [12, 114], "adit": 12, "patienc": [12, 21, 22, 58, 114, 118, 119, 120, 121, 122, 124, 125, 126], "invit": 12, "read": [12, 66, 120], "anomalib": [12, 57, 78, 120], "discrimin": 12, "surfac": 12, "draem": 12, "consist": [12, 15, 22, 30, 42, 117, 118, 119, 120, 121, 122, 124, 125, 126], "subnetwork": 12, "simul": 12, "produc": [12, 26, 62, 79], "perlin": 12, "nois": 12, "unrel": [12, 124, 126], "sourc": [12, 25, 26, 29, 30, 34, 35, 36, 37, 38, 39, 41, 42, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 65, 66, 68, 71, 72, 73, 76, 77, 78, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 109, 111, 117], "autoencod": 12, "submodel": 12, "concaten": [12, 48, 113], "sspcab": 12, "lambda": [12, 80], "self": [12, 21, 39, 41, 58, 61, 78, 79, 94, 113, 117, 127], "beta": 12, "opac": 12, "ssim": 12, "focal": [12, 23, 48], "ground": [12, 21, 48, 120], "truth": [12, 21, 48, 120], "overfit": [12, 15, 16, 19, 21, 22, 23], "besid": [13, 22, 27, 42], "relationship": 13, "tree": [13, 22, 79], "assign": [13, 22, 113, 125], "group": [13, 92], "exclus": [13, 92], "construct": [13, 45, 121], "individu": [13, 21], "fashion": [13, 15], "strategi": 13, "assum": [13, 57], "return": [13, 25, 34, 37, 39, 42, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 61, 68, 71, 72, 73, 78, 79, 81, 82, 83, 86, 87, 88, 89, 90, 92, 94, 95, 96, 97, 98, 99, 101, 103, 105, 106, 109, 116, 117], "branch": [13, 21, 58], "persian": 13, "cat": 13, "pet": 13, "travers": 13, "leav": 13, "let": [13, 17, 26, 45, 120, 121, 122, 124, 125, 126], "sai": 13, "forward": [13, 26, 34, 35, 36, 37, 38, 41, 45, 47, 48, 49, 50, 51, 78, 79, 81, 82, 88, 89, 90], "pictur": 13, "On": [13, 21, 26, 29, 30, 121, 122, 124, 125, 126], "argmax": 13, "Then": [13, 19, 28, 29, 121], "siams": 13, "sphynx": 13, "leaf": 13, "easili": [13, 26, 28, 30, 118, 119, 121], "reconstruct": [13, 92], "final": [13, 37, 68, 73, 114, 118, 120, 121, 122, 124, 125, 126], "datumaro": [13, 21, 22, 23, 25, 26, 27, 30, 62, 92, 99, 113, 126], "found": [13, 19, 21, 28, 30, 53, 57, 97, 118, 119, 120, 121, 122, 124, 125, 126], "corpu": [15, 16], "reducelronplateau": [15, 16, 19, 21, 22, 91], "tend": [15, 16], "well": [15, 16, 19, 26, 56, 79], "varieti": [15, 16, 17, 122, 124, 126], "scenario": [15, 22, 30, 117], "influenc": 15, "ib": 15, "imbal": 15, "avoid": [15, 22, 105, 126], "major": [15, 26], "influenti": 15, "over": [15, 17, 47, 48, 53], "commonli": [15, 21, 88], "val": [15, 19, 28, 62, 66, 114, 118, 119, 121, 122, 124, 125, 126], "custom_image_classification_mobilenet": 15, "v3": [15, 16], "1x": [15, 16, 51], "mobilenet": [15, 16], "44": [15, 19, 22], "29": 15, "custom_image_classification_efficinetnet": 15, "b0": [15, 16, 36], "efficientnet": [15, 16, 21, 36], "09": 15, "custom_image_classification_efficientnet": 15, "v2": [15, 16, 29, 31, 35, 45, 57, 61, 62, 109], "76": [15, 22, 23, 25], "23": [15, 22], "flop": 15, "superior": [15, 21, 22], "cost": 15, "prioriti": [15, 23], "nevertheless": [15, 26], "stabl": [15, 29], "were": [15, 16, 19, 21, 25], "224x224": [15, 16], "cifar10": 15, "cifar100": 15, "flower": [15, 121], "93": [15, 19, 23], "36": [15, 22], "83": [15, 16], "01": [15, 22, 27, 118, 126], "96": [15, 19], "45": [15, 19, 22, 62, 102], "94": [15, 16, 19, 22], "86": [15, 16, 21, 23], "84": [15, 23], "73": [15, 16, 22], "85": [15, 22, 23], "70": [15, 22], "90": [15, 21, 23], "97": [15, 22, 23], "68": [15, 19, 21, 22], "multiclass": [16, 92], "belong": [16, 62], "sub": [16, 28, 54], "asymmetr": [16, 38], "angular": [16, 38], "margin": [16, 38], "formul": 16, "l_j": 16, "co": 16, "theta_j": 16, "y": [16, 48, 51], "frac": 16, "k": [16, 38], "p_": 16, "gamma": [16, 48], "log": [16, 28, 113, 118, 119, 120, 121, 122, 124, 125, 126], "m": [16, 29, 99, 113, 117], "neg": [16, 25, 37, 38, 42, 48], "coeffici": [16, 120], "ablat": 16, "studi": [16, 26], "experi": [16, 21, 23, 26], "addition": [16, 19, 21, 118, 119, 120, 121, 122, 124, 125, 126], "2007": [16, 21], "2014": 16, "aerial": 16, "maritim": 16, "69": [16, 19, 22], "61": [16, 22, 23], "56": [16, 19, 22], "07": [16, 22, 48], "75": [16, 19], "91": [16, 19, 22], "77": 16, "28": [16, 19, 48, 126], "52": [16, 19, 21, 22], "what": [17, 26, 120, 124, 125], "exactli": [17, 22], "insid": [17, 21, 22, 23, 25, 27, 29], "life": [17, 28, 117], "rather": 17, "keep": [17, 68, 71, 102, 118, 119, 121, 122], "previous": [17, 90], "knowledg": 17, "situat": [17, 19], "recognit": [17, 30, 113], "prompt": [17, 30, 48, 49, 50, 51, 62, 73, 90, 92, 113, 117, 123], "zero": [17, 22, 23, 24, 30, 45, 48, 49, 90, 91], "coordin": [19, 48, 51], "defin": [19, 26, 34, 48, 62, 78, 79, 88, 105], "pair": [19, 28, 56, 116], "boud": 19, "corner": [19, 48], "inherit": [19, 34, 37, 45, 48], "goe": [19, 26], "fpn": 19, "rotat": [19, 22, 30, 83], "bright": 19, "distort": [19, 22], "multiscal": 19, "agnost": 19, "logic": [19, 113], "drop": 19, "iteration_pati": 19, "iou": [19, 23, 48, 102, 113, 126], "abil": 19, "focalloss": 19, "anchor": [19, 39, 42, 81], "cluster": 19, "ssd": [19, 39, 42, 81], "predefin": 19, "collect": [19, 66, 100, 108, 118, 120, 121, 122, 124, 125, 126], "statist": [19, 103, 113, 118, 120, 121, 122, 124, 125, 126], "go": 19, "pretrain": [19, 29, 36, 41, 88, 113], "mobilenetv2": [19, 27, 28, 39], "imagenet21k": 19, "link": [19, 28, 113, 118, 119, 120, 121, 122, 124, 125, 126], "instances_train": [19, 27, 28, 122, 124, 126], "json": [19, 22, 27, 28, 92, 109, 117, 122, 124, 126], "instances_v": [19, 27, 28, 122, 124, 126], "instances_test": [19, 122, 124, 126], "custom_object_detection_yolox": 19, "yolox": [19, 113], "tini": [19, 21], "object_detection_yolox_": 19, "yolox_": [19, 27, 28], "33": 19, "51": [19, 22, 118], "46": [19, 21], "object_detection_yolox_l": 19, "yolox_l": [19, 27, 28], "194": 19, "57": [19, 48], "207": 19, "object_detection_yolox_x": 19, "yolox_x": [19, 27, 28], "352": 19, "42": [19, 118], "378": 19, "custom_object_detection_gen3_ssd": 19, "custom_object_detection_gen3_atss": 19, "object_detection_resnext101_atss": 19, "resnext101": [19, 113], "434": 19, "344": 19, "light": [19, 114, 118, 119], "perfect": 19, "fastest": 19, "power": 19, "outperform": [19, 21], "mosaic": 19, "long": [19, 22, 48, 117], "pick": [19, 28, 105], "still": [19, 29], "among": 19, "retinanet": [19, 48], "therfor": 19, "integr": [19, 21, 27, 30, 113, 117], "variant": [19, 27, 28, 39, 45, 113], "divers": [19, 30], "shown": [19, 26, 27, 28], "report": [19, 106, 120], "offici": [19, 29, 113], "ap50": 19, "bdd100k": 19, "70000": 19, "10000": [19, 27], "brackish": 19, "plantdoc": 19, "1500": [19, 62], "bccd": 19, "chess": 19, "piec": 19, "300": 19, "31": [19, 22], "48": [19, 21, 22], "88": [19, 118], "99": [19, 22], "40": [19, 22, 23, 118], "63": [19, 22], "59": [19, 22], "37": 19, "54": [19, 25], "98": [19, 22], "l": [19, 29, 113], "55": [19, 22, 23, 126], "x": [19, 22, 34, 36, 41, 45, 48, 49, 51, 78, 79, 88, 113], "50": [19, 21, 126], "version": [21, 36, 57, 113], "doesn": [21, 22, 25, 37, 71, 92, 126], "presenc": 21, "background": [21, 22, 39, 48, 51, 94], "get": [21, 25, 26, 27, 28, 30, 37, 42, 48, 56, 57, 58, 66, 73, 78, 79, 81, 95, 103, 105, 106, 117, 121, 122, 124, 125, 126], "shape": [21, 37, 42, 47, 48, 49, 50, 51, 68, 71, 89, 92, 99], "drive": 21, "robot": 21, "edit": [21, 29, 113], "softwar": [21, 26], "r": [21, 39, 113, 118, 119, 120, 121, 122, 124, 125, 126], "rtmdet": 21, "upon": 21, "offset": [21, 48], "distinguish": [21, 27, 122, 126], "itself": 21, "concurr": 21, "exist": [21, 28, 58, 105], "regress": [21, 42, 94], "rtmnet": 21, "lightweight": [21, 22], "priorit": [21, 79], "inst": [21, 102], "capabl": [21, 26], "encompass": [21, 26], "200": 21, "monitor": [21, 22, 91, 114], "seen": [21, 22], "l1": 21, "absolut": [21, 49, 55], "exponenti": 21, "move": [21, 121], "ema": 21, "manag": [21, 22, 23, 25, 27, 59, 71, 118, 119, 120, 121, 124, 125, 126], "maskrcnn": [21, 82, 83, 116], "efficientnetb2b": 21, "27": [21, 22, 114], "533": 21, "177": 21, "swint": 21, "566": 21, "191": 21, "Ins": 21, "22": 21, "swin": 21, "yield": 21, "contrast": [21, 106, 113], "convent": 21, "resnet": 21, "emploi": 21, "b2": 21, "favor": 21, "essenti": [21, 26, 28], "recent": [21, 28, 118, 119, 121, 122, 124, 125, 126], "tailor": 21, "counterpart": 21, "potenti": 21, "necessit": 21, "term": 21, "paramount": 21, "transit": 21, "recommend": [21, 27, 28, 126], "convers": [21, 26, 71, 72, 73, 89], "crucial": 21, "1024x1024": 21, "boundari": 22, "typic": [22, 26, 28, 51], "depend": [22, 26, 28, 29, 48, 54, 106, 117, 118, 121, 122, 124, 125, 126], "fcn": 22, "mmsegment": [22, 46], "lite": [22, 45, 113], "hrnet": [22, 45], "mix": [22, 27, 79, 88, 105], "photometr": 22, "clip": [22, 38], "quadrat": 22, "norm": [22, 41, 45], "equal": [22, 42, 91], "organ": 22, "veri": 22, "alwai": [22, 57], "renam": [22, 27, 113, 122, 124, 126], "meta": [22, 34, 42, 48, 78, 79, 92, 117], "author": [22, 26], "use_otx_adapt": 22, "custom_semantic_segmentation_lit": 22, "mod2_ocr": 22, "mod2": 22, "18": [22, 125, 126], "82": [22, 23], "mod3_ocr": 22, "mod3": 22, "custom_semantic_segmentation_segnext_t": 22, "segnext": [22, 46, 113], "custom_semantic_segmentation_segnext_": 22, "15": 22, "35": [22, 23, 126], "custom_semantic_segmentation_segnext_b": 22, "08": [22, 121], "member": [22, 26, 92], "famili": [22, 113], "heavi": 22, "wherea": 22, "perfom": 22, "dice": [22, 23, 48, 120, 125, 126], "dis5k": 22, "2012": [22, 125], "kitti": 22, "95": 22, "58": [22, 48, 120, 121, 122, 124, 125], "26": 22, "06": [22, 120, 122, 124, 125], "16": [22, 23, 26, 48, 49, 121], "12": [22, 48, 49, 57], "65": [22, 48, 90], "39": 22, "41": 22, "60": 22, "25": [22, 48, 122], "text": [23, 25], "troubleshoot": [23, 25], "purpos": [23, 25, 27, 124, 125], "unlabel": [23, 25], "particular": [23, 25, 28, 118, 119, 121, 122, 126], "sam": [23, 25, 48, 51], "famou": [23, 25], "web": [23, 117], "huge": 23, "lot": 23, "longest": [23, 25], "pad": [23, 25, 34, 48, 51, 68, 71, 89], "rest": [23, 25, 26], "awar": [23, 25, 26], "qat": [23, 25], "four": [23, 25], "experiment": [23, 25], "visual_prompting_sam_tiny_vit": 23, "sam_tiny_vit": [23, 126], "47": [23, 25], "visual_prompting_sam_vit_b": 23, "sam_vit_b": [23, 126], "454": [23, 25], "363": [23, 25], "did": [23, 27], "three": [23, 26], "public": [23, 26, 27, 122], "wgisd": [23, 27, 116, 117, 120, 122, 124, 126], "trashcan": 23, "f1": [23, 126], "110": 23, "500": [23, 61, 65, 102], "78": 23, "model_config_path": [23, 25], "batch_size_to_be_upd": 23, "learning_rate_to_be_upd": 23, "unlik": [25, 126], "usecas": 25, "polygon": [25, 83, 99], "soon": 25, "regardless": [25, 116], "made": 25, "order": [25, 126], "templat": [25, 26, 28, 30, 42, 109, 113, 118, 119, 126], "zero_shot_sam_tiny_vit": 25, "zero_shot_sam_vit_b": 25, "code": [25, 29, 30, 54, 57, 69, 70, 113, 117], "path_to_weights_from_learn": 25, "green": 25, "red": [25, 28, 116], "left": [25, 48], "solvabl": 26, "conveni": 26, "expand": [26, 48, 90], "seamlessli": 26, "navig": 26, "workflow": [26, 105], "friendli": [26, 101], "throughout": 26, "python": [26, 29, 30, 57, 58, 61, 62, 66, 88, 96, 101, 105, 108, 110, 113, 117], "intel": [26, 28, 29, 76, 80, 81, 82, 83, 84, 118, 119, 120, 121, 122, 124, 125, 126], "practic": [26, 28], "scratch": [26, 34], "realiz": 26, "establish": 26, "overview": [26, 30], "static": [26, 34, 39, 53, 79, 95, 109], "cycl": [26, 47], "advoc": 26, "argu": 26, "simultan": 26, "across": 26, "seem": 26, "interconnect": 26, "believ": 26, "nice": 26, "abstract": [26, 68, 102], "regard": 26, "figur": 26, "grei": 26, "otxtasktyp": [26, 27, 66, 92, 104, 105], "enum": [26, 92, 106], "otxdataent": 26, "otxbatchdataent": 26, "otxmodel": [26, 27, 39, 53, 76, 77, 79, 80, 81, 82, 84, 90, 94, 105], "pytorch": [26, 27, 28, 29, 30, 57, 58, 61, 68, 71, 72, 73, 79, 95, 98, 114, 117, 118, 119, 120, 121, 122, 124, 125, 126], "nn": [26, 34, 35, 36, 37, 39, 45, 47, 48, 49, 50, 51, 68, 71, 72, 73, 86, 87, 88, 89, 94], "Its": 26, "strict": 26, "otxbatchlossent": [26, 48, 79, 90], "otxbatchpredent": 26, "embodi": 26, "blue": 26, "detdataent": 26, "detbatchdataent": [26, 81], "bbox": [26, 42, 48, 94, 102], "otxdetectionmodel": [26, 81], "detbatchpredent": [26, 81, 102], "beyond": 26, "observ": 26, "strictli": 26, "event": 26, "reinvent": 26, "wheel": 26, "lightn": [26, 27, 28, 30, 39, 53, 58, 75, 78, 79, 95, 98], "primari": [26, 120], "numer": 26, "open": [26, 29, 57], "worldwid": 26, "often": 26, "tightli": 26, "coupl": 26, "hinder": 26, "reus": [26, 118, 119, 121, 122, 124, 125, 126], "valuabl": 26, "against": [26, 120], "special": 26, "create_model": [26, 86, 87, 88, 89], "customize_input": 26, "customize_output": 26, "facilit": 26, "entiti": [26, 27, 30, 39, 48, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 90, 102], "extern": 26, "mmdetect": [26, 41], "rtmdettini": 26, "mmdetcompatiblemodel": [26, 39, 81], "regist": [26, 35, 53, 61, 71, 79, 111], "child": [26, 58], "datasampl": [26, 37], "compli": 26, "resolv": [26, 55, 61, 66], "explicitli": 26, "plan": 26, "continu": [26, 30, 47, 106, 117], "worri": 26, "project": [26, 27, 29, 30, 107], "tediou": 26, "schema": [26, 42], "pars": [26, 56, 57], "lifecycl": 26, "ecosystem": 26, "directori": [26, 53, 58, 59, 68, 71, 72, 73, 78, 79, 105, 109, 120, 121], "illustr": 26, "simplic": 26, "enjoi": 26, "anoth": [26, 29, 62], "demonstr": [26, 27, 29, 120, 125], "necessari": [26, 30, 53, 78, 117, 121, 122, 124, 125, 126], "onlin": [26, 117], "torchvis": [26, 29, 30, 57, 61, 62, 104], "mmpretrain": [26, 62, 80, 92], "etc": [26, 28, 33, 42, 44, 48], "flexibl": 26, "freeli": 26, "creation": 26, "wonjulee": 26, "vinnamkim": 26, "entri": [26, 27, 52, 105, 118, 119, 121, 122, 124, 125, 126], "built": [26, 29, 30], "deploi": [26, 27, 30, 48, 71, 120, 127], "natur": 26, "diagram": 26, "trainer": [26, 27, 28, 39, 79, 95, 105], "role": 26, "done": [26, 71, 72, 73, 106, 124, 125, 126], "thing": 26, "deploy": [26, 68, 71, 73, 118, 119, 121, 122, 124, 125, 126, 127], "novic": 26, "struggl": 26, "stem": 26, "difficulti": 26, "fill": 26, "gap": [26, 88], "samet": 26, "akcai": 26, "harimkang": 26, "meijer": 26, "erik": 26, "peter": 26, "drayton": 26, "dynam": [26, 30, 79], "cold": 26, "war": 26, "program": [26, 56], "languag": 26, "oopsla": 26, "2004": 26, "http": [26, 27, 28, 29, 48, 57, 106, 114, 121, 122, 124, 126], "en": [26, 114], "wikipedia": 26, "org": [26, 48, 57, 106, 121], "wiki": 26, "reinventing_the_wheel": 26, "in_software_develop": 26, "mmlab": [26, 29, 57], "www": 26, "netapp": 26, "com": [26, 27, 28, 29, 122, 124, 126], "media": 26, "16928": 26, "wp": 26, "7299": 26, "pdf": 26, "openvinotoolkit": [26, 28, 29, 86, 87, 88, 89, 92], "html": [26, 106], "instal": [27, 28, 30, 113, 117, 118, 119, 120, 121, 122, 124, 125, 126], "clone": [27, 29, 122, 124, 126], "repositori": [27, 28, 29, 76, 79, 80, 81, 82, 83, 84, 117, 118, 121, 122, 124, 126], "cd": [27, 28, 29, 121, 122, 124, 126], "git": [27, 29, 122, 124, 126], "github": [27, 28, 29, 122, 124, 126], "thsant": [27, 122, 124, 126], "checkout": [27, 29, 122, 124, 126], "6910edc5ae3aae8c20062941b1641821f0c30127": [27, 122, 124, 126], "mv": [27, 121, 122, 124, 126], "coco_annot": [27, 122, 124, 126], "train_bbox_inst": [27, 122, 126], "test_bbox_inst": [27, 122, 126], "now": [27, 28, 105, 113, 118, 120, 121, 122, 124, 125, 126], "immedi": 27, "snippet": 27, "list_model": [27, 120, 121, 122, 124, 125, 126], "model_list": [27, 120, 121, 122, 124, 125, 126], "print": [27, 106, 120, 121, 122, 124, 125, 126], "yolox_tiny_til": [27, 28], "yolox_l_til": [27, 28], "yolox_x_til": [27, 28], "atss_r50_fpn": [27, 28], "ssd_mobilenetv2": [27, 28], "yolox_tini": [27, 28], "openvino_model": [27, 28, 118, 121, 124, 125, 126], "atss_mobilenetv2": [27, 28, 105, 116, 122], "yolox_s_til": [27, 28], "rtmdet_tini": [27, 28], "atss_mobilenetv2_til": [27, 28, 122], "atss_resnext101": [27, 28, 122], "ssd_mobilenetv2_til": [27, 28], "print_tabl": 27, "src": [27, 57, 79, 116, 118, 119, 120, 121, 122, 124, 125, 126], "yaml": [27, 28, 53, 61, 95, 105, 107, 110, 114, 116, 118, 119, 120, 121, 122, 124, 125, 126], "pattern": [27, 28, 121, 122, 124, 126], "referenc": 27, "via": [27, 28, 48, 72, 73, 113, 118, 121, 122, 124, 125, 126], "work_dir": [27, 28, 53, 58, 59, 105, 109, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "workspac": [27, 105, 109, 113, 116, 118, 119, 120, 121, 122, 124, 125, 126], "store": [27, 48, 68, 71, 73, 95, 120], "devicetyp": [27, 62, 63, 105], "constructor": [27, 34, 48, 53, 66, 79, 95, 98, 104], "from_config": [27, 105, 118, 119, 120, 121, 122, 124, 125, 126], "config_path": [27, 28, 58, 105, 109, 118, 119, 120, 121, 122, 124, 125, 126], "actual": [27, 29, 62], "num_class": [27, 28, 34, 35, 37, 39, 42, 47, 48, 76, 77, 79, 80, 81, 82, 83, 84, 88, 90, 92, 94, 96, 114], "lr_schedul": 27, "cosineannealinglr": 27, "weight_decai": [27, 114], "t_max": 27, "eta_min": 27, "enter": [27, 71], "max_epoch": [27, 28, 95, 105, 118, 119, 120, 121, 122, 124, 125, 126], "seed": [27, 53, 105], "determinist": [27, 28, 105], "1234": [27, 105], "precis": [27, 28, 30, 68, 71, 72, 73, 78, 79, 105, 117, 118, 121, 122, 126], "64": [27, 48, 62, 90], "bf16": 27, "fmeasur": [27, 81, 82], "fmeasu": 27, "logger": [27, 28, 54, 98, 101, 105, 114], "earlystop": [27, 58, 114], "tensorboard": [27, 28, 118, 119, 121, 122, 124, 125, 126], "tensorboardlogg": 27, "limit_val_batch": 27, "alreadi": [27, 28, 48], "place": 27, "ckpt": [27, 28, 39, 78, 79, 81, 82, 103, 116, 118, 119, 120, 121, 122, 124, 125, 126], "onnx": [27, 28, 57, 68, 71, 72, 73, 105, 113, 117, 121, 122, 126], "dataload": [27, 62, 66, 78, 89, 113, 118, 119, 120, 121, 122, 124, 125, 126], "proce": [27, 120], "export_format": [27, 68, 73, 78, 79, 105, 117, 121, 122, 126], "export_precis": [27, 105, 117], "fp32": [27, 68, 71, 72, 73, 78, 79, 105, 117], "saliency_map": [27, 105, 116, 121, 122], "feature_vector": [27, 105, 121, 122], "fp16": [27, 105, 113, 117], "procedur": [27, 34], "usual": [27, 38, 42, 89], "nncf": [27, 28, 79, 90, 105, 113, 118, 120, 121, 122, 124, 125, 126], "That": [27, 78, 118, 119, 120, 121, 122, 126], "written": 28, "jsonargpars": [28, 29, 114], "lightningcli": 28, "tool": [28, 29, 30, 71, 72, 73, 76, 77, 80, 81, 84], "messag": [28, 29, 56, 113], "exit": [28, 71, 117], "displai": [28, 56, 116], "subcommand": [28, 53, 56, 58, 118, 119, 121, 122, 124, 125, 126], "lightningmodul": [28, 79, 105], "underli": [28, 105], "ov": [28, 68, 72, 73, 94, 105], "packag": [28, 57, 71, 86, 87, 88, 89, 106, 107, 113, 117], "properli": [28, 29], "verbos": [28, 54, 56], "quick": [28, 30, 56, 118, 119, 120, 121, 122, 124, 125, 126], "markdown": [28, 56], "training_extens": [28, 29, 59, 86, 87, 88, 89, 92, 118, 119], "class_path_or_nam": [28, 105], "Of": [28, 105], "cours": [28, 105], "overrid": [28, 58, 66, 91, 95, 105, 114], "ckpt_path": [28, 105, 118, 120, 121, 122, 124, 125, 126], "optional_argu": 28, "vv": [28, 118, 119, 120, 121, 122], "flag": [28, 37, 48, 68], "tpu": 28, "ipu": 28, "hpu": 28, "mp": 28, "init_arg_nam": 28, "preview": 28, "asset": [28, 109, 125], "car_tree_bug": [28, 109], "callback_monitor": [28, 114, 121, 122, 124, 125, 126], "map_50": [28, 119, 121, 122, 124, 125, 126], "1000": [28, 91, 114], "data_format": [28, 62, 104], "coco_inst": 28, "val_subset": [28, 62], "test_subset": [28, 62, 105], "1gb": [28, 62], "mem_cache_img_max_s": [28, 61, 62], "null": 28, "image_color_channel": [28, 62], "rgb": [28, 62, 68, 71], "include_polygon": [28, 62], "detec": 28, "rotated_detect": 28, "de": 28, "filter": 28, "word": 28, "coco_data_root": 28, "jpg": [28, 117, 119], "demo": [28, 68, 113, 127], "cach": [28, 53, 113], "approxim": 28, "500x375": 28, "500x439": 28, "omit": 28, "tranier": 28, "exported_model": [28, 68, 71, 72, 73, 116, 118, 120, 121, 122, 124, 125, 126], "bin": [28, 29, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "latest": [28, 48, 53, 57, 90, 116, 117, 118, 119, 121, 122, 124, 125, 126], "OR": 28, "int8": [28, 118, 120, 121, 122, 124, 125, 126], "model_weght": 28, "understood": 28, "model_weight": 28, "extra": [28, 29, 45, 57, 94, 124, 126], "with_featur": 28, "gather": 28, "output_dir": [28, 68, 71, 72, 73, 78, 79, 90], "20240000_000000": 28, "deliver": 28, "20240000_000001": 28, "soft": [28, 48, 113, 118, 119, 121, 122, 124, 125, 126], "behav": [28, 45], "ubuntu": [29, 118, 119, 120, 121, 122, 124, 125, 126], "pypi": [29, 113], "pip": [29, 54, 117], "virtual": [29, 116, 117], "venv": [29, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "guid": [29, 30, 56, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126], "fulli": [29, 98, 118, 121, 122, 124, 125, 126], "older": [29, 41], "instruct": 29, "ipex": 29, "oneapi": 29, "driver": 29, "0a0": 29, "torchaudio": 29, "index": [29, 37, 47, 48, 49, 57, 78, 79, 90, 92, 128], "url": [29, 57], "whl": [29, 57], "mmcv": [29, 30, 57, 62, 71], "mmcv_with_op": 29, "exclud": 29, "export": [29, 34, 48, 64, 76, 78, 79, 105, 113, 116, 119, 127], "variabl": [29, 92], "setvar": 29, "sh": 29, "ld_preload": 29, "usr": 29, "lib": 29, "x86_64": 29, "linux": [29, 117], "gnu": 29, "libstdc": 29, "30": [29, 120, 121, 122, 124, 125], "ipex_fp32_math_mod": 29, "tf32": 29, "tox": [29, 113, 116, 117, 118, 119, 120, 122, 124, 125, 126], "replac": [29, 41, 58, 62, 78, 95, 96, 116], "310": 29, "devenv": 29, "py310": 29, "otx_vers": 29, "correctli": [29, 120], "grep": 29, "4f3b5f98f97c": 29, "minut": [29, 118, 119, 121, 122, 124, 126], "ago": 29, "5gb": 29, "8d14caccb29a": 29, "4gb": 29, "host": 29, "dev": [29, 117], "txt": [29, 117, 120], "setup": [29, 39, 66, 78, 79, 117], "pytest": 29, "autom": 29, "env": 29, "newli": [29, 48, 90], "upgrad": [29, 113], "face": 29, "11": [29, 57, 58, 118, 119, 120, 121, 122, 124, 125, 126], "internet": 29, "proxi": [29, 30], "server": 29, "usr_nam": 29, "password": 29, "proxyserver_nam": 29, "port": [29, 117], "pkg_name": 29, "side": [29, 48, 92], "jsonargparse_debug": 29, "quickli": [30, 117], "expertis": 30, "toolkit": [30, 118, 119, 120, 121, 122, 124, 125, 126], "consolid": 30, "serv": 30, "shop": 30, "experienc": 30, "zoo": 30, "omz": [30, 76, 79, 80, 81, 82, 83, 84], "furthermor": 30, "team": 30, "robust": 30, "half": 30, "hyper": [30, 71, 105], "budget": 30, "freedom": 30, "descript": [30, 48, 58], "1q24": 31, "v1": [31, 79, 109], "4q23": 31, "3q23": 31, "2q23": 31, "1q23": 31, "hook": [33, 44, 79, 81, 82], "movinethead": 34, "in_channel": [34, 37, 45, 46], "hidden_dim": 34, "loss_cl": [34, 42], "tf_like": 34, "conv_typ": 34, "average_clip": 34, "basehead": 34, "hidden": [34, 37, 49, 50, 51], "tensorflow": [34, 121], "style": [34, 62], "convolut": 34, "crossentropyloss": [34, 47], "spatial_typ": 34, "pool": 34, "avg": 34, "dropout_ratio": 34, "dropout": [34, 37, 45], "init_std": 34, "basemodul": [34, 37, 45], "tensor": [34, 35, 37, 38, 39, 41, 42, 45, 47, 48, 49, 50, 51, 79, 88, 89, 90, 99, 102], "kwarg": [34, 36, 37, 39, 42, 46, 47, 48, 51, 53, 56, 58, 71, 76, 78, 79, 80, 81, 82, 83, 84, 90, 95, 98, 105, 106, 109], "init_weight": [34, 36, 41, 45], "movinetrecogn": 34, "otxrecognizer3d": 34, "recogn": [34, 53], "load_state_dict_pre_hook": [34, 39, 79], "state_dict": [34, 39, 78, 79, 81, 82], "prefix": [34, 39, 47, 79, 94], "arg": [34, 39, 42, 46, 47, 48, 51, 53, 56, 61, 78, 79, 81, 82, 83, 90, 95], "redirect": 34, "state_dict_hook": 34, "otxmovinet": 34, "wrapper": [34, 48], "share": [34, 35, 36, 47, 48, 49, 50, 51, 86, 87, 88, 89], "scriptmodul": [34, 35, 36, 47, 48, 49, 50, 51, 86, 87, 88, 89], "fill_conv": 34, "conf": [34, 95], "input_channel": 34, "out_channel": 34, "kernel_s": 34, "stride": [34, 42, 94], "conv": [34, 45], "kernel": 34, "fill_se_config": 34, "expanded_channel": 34, "padding_avg": 34, "se": 34, "expans": 34, "otxovactioncl": 34, "model_adapt": [34, 48], "openvinoadapt": 34, "preload": [34, 48], "postprocess": [34, 48, 64, 113, 116], "ndarrai": [34, 48, 90, 99], "preprocess": [34, 48, 68, 71, 113], "configdict": [34, 71], "cls_head": 34, "train_cfg": 34, "test_cfg": [34, 89], "data_preprocessor": 34, "recognizer3d": 34, "dinov2": 35, "backbone_nam": 35, "freeze_backbon": [35, 45], "head_in_channel": 35, "dino": [35, 45, 113], "img": [35, 45], "dinov2registerclassifi": 35, "optimizercal": [35, 39, 48, 76, 77, 79, 80, 81, 82, 83, 84, 90], "_default_optimizer_cal": [35, 39, 48, 76, 77, 79, 80, 81, 82, 83, 84, 90], "lrschedulercal": [35, 39, 48, 76, 77, 79, 80, 81, 82, 83, 84, 90, 91], "lrschedulerlistcal": [35, 39, 48, 76, 77, 79, 80, 81, 82, 83, 84, 90], "_default_scheduler_cal": [35, 39, 48, 76, 77, 79, 80, 81, 82, 83, 84, 90], "metriccal": [35, 39, 48, 76, 77, 79, 80, 81, 82, 83, 84, 90, 105], "_multi_class_cls_metric_cal": [35, 76, 80], "torch_compil": [35, 39, 48, 76, 77, 79, 80, 81, 82, 83, 84, 90], "otxmulticlassclsmodel": [35, 80], "otxefficientnet": 36, "b8": 36, "in_siz": 36, "otxefficientnetv2": 36, "s_21k": 36, "timmmodelswrapp": 36, "efficientnetv2": 36, "otxmobilenetv3": 36, "width_mult": 36, "mobilenetv3": 36, "customhierarchicallinearclshead": 37, "num_multiclass_head": [37, 92], "num_multilabel_class": [37, 92], "head_idx_to_logits_rang": [37, 92], "num_single_label_class": [37, 92], "empty_multiclass_head_indic": [37, 92], "multiclass_loss_cfg": 37, "multilabel_loss_cfg": 37, "thr": 37, "logit": [37, 48, 92], "remov": [37, 48, 92, 113], "total": 37, "multiclass_loss": 37, "multilabel_loss": 37, "under": [37, 124, 125], "feat": 37, "get_valid_label_mask": 37, "img_meta": 37, "ignored_label": 37, "data_sampl": [37, 89], "item": [37, 47, 58], "num_sampl": 37, "keyword": [37, 47, 53, 56, 95, 98, 105], "pre_logit": 37, "pred_label": 37, "customhierarchicalnonlinearclshead": 37, "hid_channel": 37, "1280": 37, "activation_cfg": [37, 41], "hid_cahnnel": 37, "acivation_cfg": 37, "custommultilabellinearclshead": 37, "multilabellinearclshead": 37, "multilabel": [37, 80, 92, 113], "custommultilabelnonlinearclshead": 37, "act_cfg": 37, "multilabelclshead": 37, "linar": 37, "asymmetricangularlosswithignor": 38, "gamma_po": 38, "gamma_neg": 38, "loss_weight": 38, "scalar": 38, "init": [38, 41, 45, 98], "fuction": 38, "pred": 38, "valid_label_mask": [38, 42, 47], "avg_factor": [38, 42, 47], "reduction_overrid": [38, 47], "liter": [39, 48, 65, 68, 71, 72, 73, 91, 96, 105, 106], "_mean_ap_cal": [39, 77, 81], "detecion": 39, "get_classification_lay": [39, 94], "dictconfig": [39, 66, 71, 76, 77, 80, 81, 82, 83, 84, 86, 87, 88, 89, 94, 96, 103], "model_registri": [39, 94], "registri": [39, 71, 86, 87, 88, 89, 94], "param": [39, 92, 94, 124, 125, 126], "use_bg": 39, "softmax": 39, "num_anchor": [39, 42], "load_from_otx_v1_ckpt": [39, 79], "add_prefix": 39, "otx2": [39, 79, 91], "otxssd": 39, "otxlitmodul": [39, 79], "pytorchcv": 41, "copi": [41, 58, 98], "mmdet": [41, 81, 82, 83], "multioutput_forward": 41, "multioutput": 41, "replace_activ": 41, "funtion": 41, "replace_norm": 41, "cfg": [41, 58, 71, 96], "customatsshead": 42, "bg_loss_weight": 42, "use_qfl": 42, "qfl_cfg": 42, "classincrementalmixin": [42, 46], "atsshead": 42, "get_target": 42, "anchor_list": 42, "valid_flag_list": 42, "batch_gt_inst": 42, "instancelist": 42, "batch_img_meta": 42, "batch_gt_instances_ignor": 42, "optinstancelist": 42, "unmap_output": 42, "anchorhead": 42, "parent": [42, 58], "element": [42, 48], "crosssigmoidfocalloss": 42, "labels_weights_list": 42, "binar": [42, 48], "loss_by_feat": 42, "cls_score": [42, 47], "bbox_pr": 42, "energi": 42, "delta": 42, "instancedata": 42, "gt_instanc": 42, "attribut": [42, 48, 58, 91, 102, 113], "gt_instances_ignor": 42, "loss_by_feat_singl": 42, "label_weight": 42, "bbox_target": 42, "num_total_anchor": 42, "prior": 42, "pseudosampl": 42, "consider": 42, "customssdhead": 42, "ssdhead": 42, "workaround": 42, "bug": [42, 113], "mmdet3": 42, "ssdanchorgeneratorclust": 42, "width": [42, 56, 71, 78, 99], "height": [42, 71, 78, 99], "anchorgener": 42, "gen_base_anchor": 42, "gen_single_level_base_anchor": 42, "single_level_base_anchor": 42, "dinovisiontransform": 45, "out_index": 45, "init_cfg": 45, "litehrnet": 45, "conv_cfg": [45, 46], "norm_cfg": [45, 46], "norm_ev": 45, "with_cp": 45, "zero_init_residu": 45, "eval": [45, 113], "freez": [45, 48], "stat": 45, "var": 45, "resblock": 45, "ident": 45, "customfcnhead": 46, "enable_aggreg": 46, "aggregator_min_channel": 46, "aggregator_merge_norm": 46, "aggregator_use_concat": 46, "in_index": 46, "input_transform": 46, "fcnhead": 46, "customlighthamhead": 46, "ham_channel": 46, "ham_kwarg": 46, "lighthamhead": 46, "hamburg": 46, "kwagr": 46, "ham": 46, "crossentropylosswithignor": 47, "partial": [47, 98], "revisit": 47, "unseen": 47, "ignore_index": [47, 62, 92], "255": [47, 62, 87, 89, 92], "wise": [47, 48], "class_weight": 47, "contribut": 47, "avg_non_ignor": 47, "properti": [47, 66, 76, 78, 79, 86, 87, 88, 89, 91, 92, 95, 105], "loss_nam": 47, "backward": 47, "graph": 47, "loss_": 47, "otxsegmentanyth": 48, "tiny_vit": 48, "vit_b": 48, "_visual_prompting_metric_cal": [48, 90], "freeze_image_encod": 48, "freeze_prompt_encod": 48, "freeze_mask_decod": 48, "use_stability_scor": 48, "return_single_mask": 48, "return_extra_metr": 48, "stability_score_offset": 48, "otxvisualpromptingmodel": [48, 90], "otxzeroshotsegmentanyth": 48, "root_reference_info": [48, 90], "vpm_zsl_reference_info": [48, 90], "save_output": [48, 90], "pixel_mean": 48, "123": 48, "675": 48, "116": 48, "103": 48, "53": 48, "pixel_std": 48, "395": 48, "375": 48, "default_threshold_refer": [48, 90], "default_threshold_target": [48, 90], "otxzeroshotvisualpromptingmodel": [48, 90], "apply_box": 48, "boundingbox": 48, "ori_shap": 48, "target_length": 48, "1024": [48, 49, 90], "apply_coord": 48, "coord": 48, "apply_imag": 48, "np": [48, 99], "apply_point": 48, "apply_prompt": 48, "zeroshotvisualpromptingbatchdataent": [48, 90], "zeroshotvisualpromptingbatchpredent": [48, 90], "get_preprocess_shap": 48, "oldh": 48, "oldw": 48, "reference_feat": [48, 90], "used_indic": [48, 90], "is_cascad": [48, 90], "connect": 48, "initialize_reference_info": [48, 90], "reset_feat": [48, 90], "load_latest_reference_info": [48, 90], "info": [48, 54, 90, 117], "segmentanyth": [48, 126], "load_from": [48, 86, 87, 88, 89, 94], "mask_threshold": 48, "image_s": [48, 90], "image_embedding_s": [48, 51], "embed_dim": [48, 49, 51], "256": [48, 49, 50, 51], "mask_in_chan": [48, 51], "num_multimask_output": [48, 50], "transformer_cfg": [48, 50], "transformer_dim": [48, 50], "iou_head_depth": [48, 50], "iou_head_hidden_dim": [48, 50], "calculate_dice_loss": 48, "num_mask": 48, "calculate_i": 48, "epsilon": 48, "intersect": 48, "calculate_sigmoid_ce_focal_loss": 48, "alpha": 48, "arxiv": [48, 106], "ab": [48, 106], "1708": 48, "02002": 48, "noqa": 48, "d301": 48, "arbitrari": 48, "expon": 48, "p_t": 48, "hard": 48, "calculate_stability_scor": 48, "threshold_offset": 48, "stabil": 48, "bxhxw": 48, "stability_scor": 48, "forward_infer": 48, "image_embed": [48, 50], "point_coord": 48, "point_label": 48, "mask_input": 48, "has_mask_input": 48, "spars": [48, 51], "bottom": [48, 89], "1x1x256x256": 48, "suppli": 48, "1x1": 48, "layout": 48, "1x2": 48, "forward_train": 48, "gt_mask": 48, "tv_tensor": 48, "nx4": 48, "arrai": [48, 51, 76, 79], "xyxi": [48, 51], "emb": [48, 51, 68, 71, 72, 73], "bxnx2": [48, 51], "bxn": [48, 51], "foreground": [48, 51], "freeze_network": 48, "get_prepadded_s": 48, "input_image_s": [48, 51], "longest_sid": 48, "load_checkpoint": 48, "classmethod": [48, 66, 92, 105], "postprocess_mask": 48, "input_s": [48, 68, 71, 72, 73, 78], "orig_s": 48, "bx1xhxw": [48, 51], "bx2": 48, "select_mask": 48, "iou_pr": [48, 50], "num_point": 48, "bxmxhxw": 48, "bxm": 48, "bx1": 48, "visualpromptingdecod": 48, "inferenceadapt": 48, "segmentationmodel": 48, "inference_adapt": 48, "executor": 48, "confidence_threshold": 48, "rais": [48, 53, 54, 57, 90, 97, 100], "wrappererror": 48, "fail": 48, "py": [48, 57, 117], "numericalvalu": 48, "default_valu": 48, "confid": [48, 81, 82, 113, 121, 122, 126], "visualpromptingimageencod": 48, "imagemodel": 48, "zeroshotsegmentanyth": 48, "expand_reference_info": [48, 90], "new_largest_label": [48, 90], "labl": [48, 90], "num_bg_point": [48, 90], "defaultdict": [48, 90], "cascad": 48, "processed_prompt": 48, "tvtensor": 48, "_gather_prompts_with_label": 48, "pad_to_squar": 48, "set_default_config": 48, "tinyvit": 49, "img_siz": 49, "224": [49, 62, 114], "in_chan": 49, "depth": [49, 50], "num_head": 49, "window_s": 49, "mlp_ratio": 49, "drop_rat": 49, "drop_path_r": 49, "mbconv_expand_ratio": 49, "local_conv_s": 49, "layer_lr_decai": 49, "mobilesam": 49, "no_weight_decay_keyword": 49, "keyworkd": 49, "set_layer_lr_decai": 49, "patch_siz": 49, "768": 49, "out_chan": 49, "qkv_bia": 49, "norm_lay": 49, "layernorm": 49, "act_lay": 49, "gelu": [49, 50, 51], "use_abs_po": 49, "use_rel_po": 49, "rel_pos_zero_init": 49, "global_attn_index": 49, "attent": [49, 116], "mlp": [49, 50], "dim": 49, "learnabl": 49, "bia": [49, 118, 120, 121, 122, 124, 125, 126], "queri": 49, "window": [49, 117], "global": [49, 116, 120], "sammaskdecod": 50, "facebookresearch": [50, 51], "disambigu": 50, "upscal": 50, "qualiti": 50, "image_p": 50, "sparse_prompt_embed": 50, "dense_prompt_embed": 50, "multimask_output": 50, "predict_mask": 50, "samimageencod": 51, "sampromptencod": 51, "bx4": 51, "nx1x": 51, "dense_embed": 51, "nx": 51, "embed_h": 51, "embed_w": 51, "sparse_embed": 51, "get_dense_p": 51, "embedding_h": 51, "embedding_w": 51, "entrypoint": [52, 53], "otxcli": 53, "add_subcommand": 53, "parser": [53, 58], "engine_subcommand_pars": 53, "argumentpars": [53, 58], "engine_subcommand": 53, "whose": [53, 119], "skip": [53, 56, 58, 90, 118, 119, 121, 122, 124, 125, 126], "duplic": 53, "get_config_valu": 53, "namespac": [53, 58], "retriev": [53, 95], "get_subcommand_pars": 53, "init_pars": 53, "instantiate_class": [53, 98], "instantiate_engin": 53, "instanti": [53, 58, 62, 95, 109], "instantiate_model": 53, "model_config": 53, "prepare_subcommand_kwarg": 53, "valueerror": [53, 54, 57], "save_config": 53, "set_se": 53, "reproduc": [53, 118, 119, 121, 122, 124, 125, 126], "argpars": [53, 56], "seed_everyth": 53, "update_latest": 53, "add_install_pars": 54, "subcommands_act": 54, "_actionsubcommand": 54, "subpars": 54, "otx_instal": 54, "do_not_install_torch": 54, "absolute_path": 55, "formatt": 56, "customhelpformatt": 56, "prog": 56, "indent_incr": 56, "max_help_posit": 56, "consol": 56, "richhelpformatt": 56, "defaulthelpformatt": 56, "customiz": 56, "verbosity_level": 56, "render": [56, 117], "add_usag": 56, "add_argu": 56, "format_help": 56, "string": [56, 61, 92], "superclass": 56, "get_cli_usage_docstr": 56, "docstr": [56, 58], "__doc__": 56, "prev": 56, "n2": 56, "get_verbosity_subcommand": 56, "sy": 56, "argv": 56, "render_guid": 56, "content": 56, "add_hardware_suffix_to_torch": 57, "hardware_suffix": 57, "with_available_torch_build": 57, "suffix": 57, "compris": 57, "correct": [57, 88, 118, 120, 121, 122, 124, 125, 126], "cuda": [57, 118, 119, 120, 121, 122, 124, 125, 126], "pkg_resourc": 57, "req": 57, "spec": 57, "cu121": 57, "cu118": 57, "cu111": 57, "criterion": 57, "get_cuda_suffix": 57, "cuda_vers": 57, "mmx": [57, 94, 110], "download": [57, 118, 119, 120, 121, 124], "instead": [57, 78, 121, 122, 124, 126], "shoudl": 57, "regularli": 57, "reflect": 57, "cu112": 57, "get_cuda_vers": 57, "get_hardware_suffix": 57, "torch_vers": 57, "yet": 57, "get_mmcv_install_arg": 57, "torch_requir": 57, "mmcv_requir": 57, "notimplementederror": 57, "Not": 57, "maco": [57, 117], "runtimeerror": 57, "o": 57, "get_module_vers": 57, "module_nam": 57, "get_requir": 57, "importlib": 57, "metadata": [57, 68, 71, 72, 73, 113], "importlib_metadata": 57, "attr": 57, "get_torch_install_arg": 57, "requri": 57, "mim_instal": 57, "mim": 57, "modulenotfounderror": [57, 97], "parse_requir": 57, "mmcl": [57, 113], "patch_mmaction2": 57, "mmaction2": 57, "reason": [57, 66], "__init__": 57, "miss": [57, 113], "update_cuda_version_with_available_torch_cuda_build": 57, "highest": 57, "warn": [57, 105, 113], "add_list_type_argu": 58, "baseclass": 58, "nested_kei": 58, "add_subclass_argu": 58, "bypass": 58, "_signatur": 58, "signatureargu": 58, "subclass": 58, "nest": [58, 62], "apply_config": 58, "actionconfigfil": 58, "dest": 58, "destin": 58, "flatten_dict": 58, "parent_kei": 58, "sep": 58, "flatten": 58, "get_configur": 58, "get_defaults_with_overrid": 58, "skip_check": 58, "get_instantiated_class": 58, "pathlik": [58, 105, 109], "get_short_docstr": 58, "typevar": 58, "list_overrid": 58, "override_list": 58, "override_callback": 58, "patch_update_config": 58, "action_config_fil": 58, "only_unset": 58, "posixpath": 59, "home": [59, 106], "runner": 59, "doc": [59, 113, 117], "use_sub_dir": 59, "subdirectori": 59, "any_represent": 61, "dumper": 61, "saferepresent": 61, "scalarnod": 61, "node": [61, 71], "as_int_tupl": 61, "as_torch_dtyp": 61, "dtype": 61, "todtyp": [61, 62], "float32": [61, 62], "dtype_represent": 61, "ignore_alias": 61, "alias": 61, "otherwis": [61, 62, 91, 95, 105], "register_config": 61, "subsetconfig": [62, 66, 118, 119, 120, 121, 122, 124, 125, 126], "factori": [62, 66], "vpm_config": 62, "visualpromptingconfig": 62, "imagecolorchannel": 62, "stack_imag": 62, "unannotated_items_ratio": 62, "dto": [62, 64, 65], "samplerconfig": [62, 98], "randomsampl": 62, "todo": 62, "resembl": 62, "subset_nam": [62, 105], "transform_lib_typ": 62, "transformer_lib": 62, "transformlibtyp": [62, 104], "worker": 62, "train_subset_config": 62, "randomresizedcrop": [62, 114], "antialia": 62, "randomhorizontalflip": 62, "p": 62, "485": 62, "456": 62, "406": 62, "std": [62, 68, 71, 72, 73, 86, 87, 88, 89, 103], "229": 62, "225": 62, "overlap": [62, 104], "iou_threshold": [62, 102], "max_num_inst": [62, 102], "03": [62, 118], "tiler": 62, "use_bbox": 62, "use_point": 62, "deviceconfig": [63, 105], "explainconfig": [64, 105, 116], "target_explain_group": [64, 116], "targetexplaingroup": [64, 116], "num_trial": 65, "subset_ratio": 65, "min_subset_s": 65, "lightningdatamodul": 66, "predict_dataload": 66, "teardown": 66, "test_dataload": 66, "train_dataload": [66, 105], "val_dataload": 66, "hparams_initi": 66, "attributedict": 66, "save_hyperparamet": 66, "primit": 66, "loggabl": 66, "unresolv": 66, "otxdatasetfactori": 66, "dm_subset": 66, "datasetsubset": 66, "mem_cache_handl": 66, "memcachehandlerbas": 66, "cfg_subset": 66, "cfg_data_modul": 66, "transformlibfactori": 66, "otxmodelexport": [68, 71, 72], "resize_mod": [68, 71, 72, 73], "fit_to_window": [68, 71, 72, 73], "fit_to_window_letterbox": [68, 71, 72, 73], "pad_valu": [68, 71, 72, 73, 87, 88], "swap_rgb": [68, 71, 72, 73], "output_nam": [68, 71, 72, 73], "bgr": [68, 71], "base_model_nam": [68, 71, 72, 73], "otxexportformattyp": [68, 73, 78, 79, 105], "otxprecisiontyp": [68, 71, 72, 73, 78, 79, 105], "artifact": [68, 71, 73, 120], "otxexportprecisiontyp": [68, 73, 78, 79, 105], "to_exportable_cod": 68, "zip": [68, 117], "runabl": 68, "to_onnx": [68, 71, 72, 73], "embed_metadata": [68, 71, 72, 73], "to_openvino": [68, 71, 72, 73], "mmdeployexport": 71, "model_build": 71, "callabl": [71, 79, 81, 82, 88, 91, 100, 105, 106, 111], "model_cfg": 71, "deploy_cfg": 71, "mmconfig": [71, 96], "test_pipelin": 71, "max_num_detect": 71, "mm": [71, 88, 103], "mmengin": [71, 96], "ir_config": 71, "cvt_torch2onnx_partit": 71, "partition_cfg": 71, "partit": 71, "load_mmconfig_from_pkg": 71, "configuraiton": 71, "mmdeploy_init_model_help": 71, "_": [71, 92, 114], "helper": 71, "patch_input_shap": 71, "patch_ir_scale_factor": 71, "hyper_paramet": 71, "inplac": [71, 78, 96], "detectionconfig": 71, "use_temporary_default_scop": 71, "temporari": 71, "scope": 71, "defaultscop": 71, "revert": 71, "problemat": 71, "tri": [71, 105], "otxnativemodelexport": [72, 73], "via_onnx": [72, 73], "onnx_export_configur": [72, 73], "otxvisualpromptingmodelexport": 73, "nativ": 73, "get_onnx_dummy_input": 73, "exported_model_image_encod": [73, 126], "exported_model_decod": [73, 126], "dummi": 73, "mmactioncompatiblemodel": [76, 77], "otxactionclsmodel": 76, "compit": [76, 77], "mmaction": [76, 77, 118], "translat": [76, 77, 80, 81, 84, 110], "translate_mmrecip": [76, 77, 80, 81, 84], "actionclsbatchdataent": 76, "actionclsbatchpredent": 76, "t_otxtilebatchdataent": [76, 77, 79, 80, 84, 90], "ovactionclsmodel": 76, "model_nam": [76, 79, 80, 81, 82, 83, 84, 90, 105], "model_typ": [76, 79, 80, 81, 82, 83, 84, 90], "async_infer": [76, 79, 80, 81, 82, 83, 84, 90], "max_num_request": [76, 79, 80, 81, 82, 83, 84, 90], "use_throughput_mod": [76, 79, 80, 81, 82, 83, 84, 90], "model_api_configur": [76, 79, 80, 81, 82, 83, 84, 90], "ovmodel": [76, 79, 80, 81, 82, 84, 90], "transform_fn": [76, 79], "data_batch": [76, 79], "model_adapter_paramet": [76, 79], "otxactiondetmodel": 77, "actiondetbatchdataent": 77, "actiondetbatchpredent": 77, "otxanomali": 78, "configure_callback": 78, "configure_optim": [78, 79, 90], "trainable_model": 78, "base_nam": [78, 79], "anomalyclassificationdatabatch": 78, "anomalysegmentationdatabatch": 78, "anomalydetectiondatabatch": 78, "anomalyclassificationbatchpredict": 78, "anomalysegmentationbatchpredict": 78, "anomalydetectionbatchpredict": 78, "wrap": 78, "load_state_dict": [78, 79, 81, 82], "ordereddict": 78, "on_predict_batch_end": 78, "batch_idx": [78, 79, 90], "dataloader_idx": [78, 79], "datatyp": 78, "batchpredict": 78, "on_test_batch_end": 78, "loop": [78, 106, 117], "predict_step": [78, 79, 83], "label_info": [78, 79], "labelinfo": [78, 79, 92], "tasktyp": 78, "cleanest": 78, "_null_metric_cal": 79, "t_otxbatchdataent": [79, 88], "t_otxbatchpredent": [79, 88, 102], "explain_mod": 79, "configure_metr": 79, "optimizerlrschedul": 79, "period": [79, 91], "former": 79, "latter": 79, "forward_explain": [79, 81, 82, 88], "forward_til": [79, 81, 82], "get_explain_fn": [79, 81, 82, 88], "successfulli": 79, "resum": [79, 105], "load_state_pre_hook": 79, "smart": 79, "lr_scheduler_step": 79, "lrschedulertypeunion": 79, "map_class_nam": 79, "src_class": 79, "dst_class": 79, "dst": 79, "src2dst": 79, "src_idx": 79, "dst_idx": 79, "assert": 79, "len": 79, "ex": 79, "person": [79, 122, 126], "sky": 79, "ball": 79, "on_test_epoch_end": 79, "trigger": [79, 111], "on_test_epoch_start": 79, "on_test_start": [79, 90], "on_validation_epoch_end": [79, 90], "on_validation_epoch_start": [79, 90], "on_validation_start": 79, "data_modul": [79, 90], "ptq_config": [79, 90], "calibr": 79, "register_load_state_dict_pre_hook": 79, "model_class": 79, "ckpt_class": 79, "someth": 79, "ddp": 79, "test_step": [79, 90], "training_step": [79, 90], "validation_step": [79, 90], "metriccollect": 79, "redefin": [79, 88], "synchron": 79, "mmpretrainhlabelclsmodel": 80, "hlabel_info": 80, "hlabelinfo": [80, 92], "_mixed_hlabel_accuraci": 80, "otxhlabelclsmodel": 80, "mmpretrainmulticlassclsmodel": [80, 88], "mmpretrainmultilabelclsmodel": 80, "otxmultilabelclsmodel": 80, "hlabelclsbatchdataent": 80, "hlabelclsbatchpredent": 80, "multiclassclsbatchdataent": 80, "multiclassclsbatchpredent": 80, "_multi_label_cls_metric_cal": 80, "multilabelclsbatchdataent": 80, "multilabelclsbatchpredent": 80, "ovhlabelclassificationmodel": 80, "ovmulticlassclassificationmodel": 80, "ovmultilabelclassificationmodel": 80, "explainableotxdetmodel": 81, "attach": [81, 82], "get_num_anchor": 81, "tilebatchdetdataent": 81, "unpack": [81, 82], "ovdetectionmodel": 81, "explainableotxinstancesegmodel": 82, "_mask_rle_mean_ap_cal": [82, 83], "otxinstancesegmodel": [82, 83], "instancesegbatchdataent": 82, "instancesegbatchpredent": [82, 83, 102], "mmdetinstancesegcompatiblemodel": [82, 83], "tilebatchinstsegdataent": 82, "ovinstancesegmentationmodel": [82, 83], "mmdetrotateddetmodel": 83, "otxrotateddetmodel": 83, "compaibl": 83, "overridden": 83, "rbox": 83, "ovrotateddetectionmodel": 83, "mmsegcompatiblemodel": 84, "_segm_cal": 84, "otxsegmentationmodel": 84, "mmseg": 84, "segbatchdataent": 84, "segbatchpredent": 84, "ovsegmentationmodel": 84, "actiondatapreprocessor": 86, "to_rgb": [86, 88], "to_float32": 86, "blend": 86, "format_shap": 86, "nchw": 86, "monkei": [86, 87, 88, 89], "preprocessor": [86, 87, 88, 89], "histori": [86, 87, 88, 89], "2743": [86, 87, 88, 89], "detdatapreprocessor": 87, "pad_size_divisor": [87, 88], "pad_mask": 87, "mask_pad_valu": 87, "pad_seg": 87, "seg_pad_valu": 87, "bgr_to_rgb": [87, 89], "rgb_to_bgr": [87, 89], "boxtype2tensor": 87, "non_block": 87, "batch_aug": [87, 88, 89], "clsdatapreprocessor": 88, "to_onehot": 88, "explainablemixinmmpretrainmodel": 88, "mobilenetv3formulticlasscl": [88, 114], "head_forward_fn": 88, "has_gap": 88, "segdatapreprocessor": 89, "size_divisor": 89, "pad_val": 89, "seg_pad_v": 89, "bgr2rgb": 89, "basedatapreprocessor": 89, "stack_batch": 89, "samplelist": 89, "stack": 89, "gt_sem_seg": 89, "chw": 89, "segdatasampl": 89, "divisor": 89, "4d": 89, "gt_seg_map": 89, "visualpromptingbatchdataent": 90, "visualpromptingbatchpredent": 90, "typeerror": [90, 100], "unus": 90, "on_predict_start": 90, "on_train_epoch_end": 90, "on_train_epoch_start": 90, "on_train_start": 90, "ovvisualpromptingmodel": 90, "ovzeroshotvisualpromptingmodel": 90, "zero_shot_visual_prompt": 90, "downsiz": 90, "linearwarmupschedul": 91, "num_warmup_step": 91, "lambdalr": 91, "linearli": 91, "warmup_interv": 91, "count": [91, 99, 113], "n_step": 91, "less": [91, 124, 125], "linearwarmupschedulercal": 91, "main_scheduler_cal": 91, "mainli": 91, "__call__": 91, "lrschedul": 91, "reserv": 92, "label_nam": 92, "label_group": 92, "class_to_group_idx": 92, "all_group": 92, "label_to_idx": 92, "label_tree_edg": 92, "hierarchi": [92, 113], "kept": 92, "head_to_logits_rang": 92, "rigid": 92, "rectangl": 92, "triangl": 92, "circl": 92, "anim": 92, "lion": 92, "panda": 92, "handel": 92, "as_head_config_dict": 92, "hlabel": 92, "from_dm_label_group": 92, "dm_label_categori": 92, "labelcategori": 92, "hlabeldata": 92, "from_json": 92, "serial": 92, "as_dict": 92, "heart_k": 92, "heart_queen": 92, "spade_k": 92, "spade_jack": 92, "from_num_class": 92, "label_0": 92, "to_json": 92, "nulllabelinfo": 92, "seglabelinfo": 92, "build_mm_model": 94, "sometim": 94, "get_default_num_async_infer_request": 94, "request": 94, "modify_num_class": 94, "trainerargumentscach": 95, "omegaconf": 95, "val_check_interv": [95, 105], "get_trainer_constructor_arg": 95, "requires_upd": 95, "convert_conf_to_mmconfig_dict": 96, "inplace_num_class": 96, "listconfig": 96, "mmconfig_dict_to_dict": 96, "obj": 96, "to_list": 96, "dict_": 96, "recurs": 96, "to_tupl": 96, "get_otx_root_path": 97, "instantiate_callback": 98, "callbacks_cfg": 98, "instantiate_logg": 98, "logger_cfg": 98, "instantiate_sampl": 98, "sampler_config": 98, "partial_instantiate_class": 98, "qualifi": 98, "encode_rl": 99, "rle": 99, "rewrit": 99, "cocodataset": 99, "cocoapi": 99, "Or": 99, "polygon_to_bitmap": 99, "bitmap": 99, "polygon_to_rl": 99, "ensure_cal": 100, "func": 100, "_t": 100, "_v": 100, "get_pylogg": 101, "__name__": 101, "detectiontilemerg": 102, "img_info": 102, "imageinfo": 102, "tilemerg": 102, "batch_tile_pr": 102, "batch_tile_attr": 102, "detpredent": 102, "instancesegtilemerg": 102, "instancesegpredent": 102, "seg": [102, 113], "t_otxdataent": 102, "suppress": 102, "nms_postprocess": 102, "get_adaptive_num_work": 103, "num_dataload": 103, "measur": [103, 118, 119, 120, 121, 122, 126], "get_idx_list_per_class": 103, "dm_dataset": 103, "dmdataset": 103, "use_string_label": 103, "get_mean_std_from_data_process": 103, "data_process": 103, "is_ckpt_for_finetun": 103, "is_ckpt_from_otx_v1": 103, "otx1": 103, "anomalydatamodul": 104, "data_dir": 104, "train_batch_s": 104, "train_num_work": 104, "train_transform": 104, "train_transform_lib_typ": 104, "val_batch_s": 104, "val_num_work": 104, "val_transform": 104, "val_transform_lib_typ": 104, "test_batch_s": 104, "test_num_work": 104, "test_transform": 104, "test_transform_lib_typ": 104, "govern": 105, "pl": 105, "eval_dataload": 105, "explain_config": [105, 116], "export_config": 105, "exportconfig": 105, "from_model_nam": 105, "max_data_subset_s": 105, "path_to_ir_xml": 105, "return_predict": 105, "metric_cal": 105, "temporarilli": 105, "_precision_input": 105, "failur": 105, "trainer_param": 105, "hpobas": 106, "asyncron": 106, "novel": 106, "bandit": 106, "jmlr": 106, "2018": 106, "1603": 106, "06560": 106, "washington": 106, "edu": 106, "jamieson": 106, "massiv": 106, "mlsy": 106, "2020": 106, "1810": 106, "05934": 106, "decicd": 106, "auto_config": 106, "align": 106, "lesser": 106, "get_best_config": 106, "get_next_sampl": 106, "ashatri": 106, "get_progress": 106, "progress": 106, "is_don": 106, "print_result": 106, "report_scor": 106, "trial_id": 106, "hashabl": 106, "trialstatu": 106, "decid": 106, "save_result": 106, "intenum": 106, "run_hpo_loop": 106, "hpo_algo": 106, "train_func": 106, "resource_typ": 106, "num_parallel_tri": 106, "num_gpu_for_single_tri": 106, "available_gpu": 106, "cpuresourcemanag": 106, "gpuresourcemanag": 106, "runnabl": 108, "script": [108, 110], "configconvert": 109, "modeltempl": 109, "train_kwarg": 109, "append_main_proc_signal_handl": 111, "sig_num": 111, "sig_handl": 111, "append": 111, "handler": 111, "signal": 111, "append_signal_handl": 111, "sent": 111, "featurevectorhook": 113, "segmant": 113, "otxsampl": 113, "adaptiverepeatdatahook": 113, "semi": 113, "sl": 113, "track": 113, "refin": 113, "timeout": 113, "cl": 113, "det": 113, "iseg": 113, "sseg": 113, "modelapi": 113, "numpi": 113, "bump": 113, "minor": 113, "readm": [113, 117, 120], "encrypt": 113, "oom": 113, "deform": 113, "detr": 113, "channel_last": 113, "persistent_work": 113, "pin_memori": 113, "prototyp": 113, "reciev": 113, "2023": 113, "verion": 113, "centercrop": 113, "switch": 113, "direct": [113, 114], "storag": 113, "apach": 113, "arrow": 113, "greedi": 113, "noisi": 113, "labeltre": 113, "labelschema": 113, "speedup": 113, "classificaiton": 113, "refactor": 113, "mmdeploi": 113, "consumpt": 113, "cli_report": 113, "clean": 113, "detcon": 113, "supcon": 113, "visiontransform": 113, "parametr": [113, 116], "bring": 113, "mpa": 113, "proof": 113, "review": 113, "pot": 113, "stat_requests_numb": 113, "mobilenet_v3_larg": 114, "0058": 114, "warmupreducelronplateau": 114, "warmup_step": 114, "_base_": 114, "mmpretrain_bas": 114, "readthedoc": 114, "io": 114, "v4": 114, "loadimagefromfil": 114, "cv2": 114, "prob": 114, "randomflip": 114, "packinput": 114, "print_config": [114, 121, 122, 124, 125, 126], "ligthn": 114, "write": 115, "gave": 116, "epoch_": [116, 118, 119, 121, 122, 124, 125, 126], "20240312_051135": [116, 118, 119, 121, 122, 124, 125], "epoch_033": [116, 119, 122, 124, 125], "overlai": 116, "feature_map": 116, "20240312_052847": [116, 118, 120, 121, 122, 124, 125], "xml_weights_path": 116, "grayscal": 116, "colormap": 116, "chosen": 116, "outsid": 117, "ll": [117, 121, 125], "exportable_cod": 117, "dir": [117, 118, 119, 120, 121, 122, 124, 125, 126], "nad": 117, "archiv": 117, "licens": [117, 120], "md": 117, "demo_packag": 117, "pytorch_checkpoint": 117, "abl": 117, "footag": 117, "camera": 117, "unzip": [117, 121], "brand": 117, "minimalist": 117, "python3": 117, "demo_venv": 117, "wgisd_dataset_sampl": 117, "press": 117, "q": 117, "screen": 117, "enforc": 117, "button": 117, "kill": 117, "termin": 117, "ctrl": 117, "resulted_imag": 117, "sudo": 117, "apt": 117, "v4l": 117, "v4l2": 117, "ctl": 117, "usb": 117, "0000": 117, "00": [117, 118, 120, 121, 122, 124, 125, 126], "1a": 117, "video0": 117, "live": [118, 119, 121], "been": [118, 119, 120, 121, 122, 124, 125, 126], "tm": [118, 119, 120, 121, 122, 124, 125, 126], "i9": [118, 119, 120, 121, 122, 124, 125, 126], "10980xe": [118, 119, 121], "univers": [118, 119, 120, 121, 122, 124, 125, 126], "covert": 118, "silky_straight_hair_original_brush_hair_h_nm_np1_ba_goo_0": 118, "avi": 118, "csv": [118, 119, 121, 122, 124, 125, 126], "red_head_brush_hair_u_cm_np1_ba_goo_0": 118, "sarah_brushing_her_hair_brush_hair_h_cm_np1_ri_goo_0": 118, "And": 118, "youtube_id": 118, "time_start": 118, "time_end": 118, "is_cc": 118, "brush_hair": 118, "276": 118, "timestamp": [118, 119, 120, 121, 122, 124, 125, 126], "20240403_134256": [118, 119, 121, 122, 124, 125, 126], "characterist": [118, 119, 121, 122, 124, 125, 126], "took": [118, 119, 121, 122, 124, 125, 126], "evali": 118, "snapshot": [118, 119, 121, 122, 124, 125, 126], "6039215922355652": 118, "data_tim": [118, 119, 120, 121, 122, 124, 126], "13730056583881378": 118, "iter_tim": [118, 119, 120, 121, 122, 124, 126], "16275013983249664": 118, "version_0": [118, 119, 121, 122, 124, 125, 126], "runtim": [118, 121, 122, 126], "295829": 118, "5222222208976746": 118, "14048805832862854": 118, "5871070623397827": 118, "209": 118, "613333": 118, "20240312_055042": [118, 121, 122, 124, 125], "optimized_model": [118, 120, 121, 122, 124, 125], "5078431367874146": 118, "23449821770191193": 118, "4908757507801056": 118, "255130": 118, "spatio": 119, "jhmdb_10": 119, "ava_action_list_v2": 119, "pbtxt": 119, "ava_test": 119, "ava_train": 119, "ava_v": 119, "pkl": 119, "train_video001": 119, "train_video001_0001": 119, "test_video001": 119, "test_video001_0001": 119, "006367621477693319": 119, "02698644995689392": 119, "10247182101011276": 119, "3779516816139221": 119, "map_75": [119, 122, 124, 126], "03639398142695427": 119, "map_larg": [119, 122, 126], "11831618845462799": 119, "map_medium": [119, 122, 126], "02958027645945549": 119, "map_per_class": [119, 122, 126], "map_smal": [119, 122, 126], "mar_1": [119, 122, 126], "12753313779830933": 119, "mar_10": [119, 122, 126], "1305265873670578": 119, "mar_100": [119, 122, 126], "mar_100_per_class": [119, 122, 126], "mar_larg": [119, 122, 126], "14978596568107605": 119, "mar_medium": [119, 122, 126], "06217033043503761": 119, "mar_smal": [119, 122, 126], "11900": [120, 122, 124, 125, 126], "bottl": 120, "broken_larg": 120, "001_mask": 120, "002_mask": 120, "broken_smal": 120, "stfpm": 120, "padim": 120, "notic": 120, "image_auroc": 120, "image_f1scor": 120, "pixel_auroc": 120, "pixel_f1scor": 120, "6517705321311951": 120, "6630784869194031": 120, "20240313_042421": 120, "epoch_010": 120, "f": 120, "588245": [120, 122, 124, 125], "20240313_052847": 120, "yamll": 120, "02": [120, 121, 122, 124, 125], "958733": [120, 121, 122, 124, 125], "20240313_055042": 120, "260521": [120, 121, 122, 124, 125], "substitut": 121, "everyth": 121, "wget": 121, "example_imag": 121, "flower_photo": 121, "tgz": 121, "tar": 121, "xzvf": 121, "insert": [121, 126], "mkdir": [121, 122, 124, 126], "daisi": 121, "dandelion": 121, "rose": 121, "sunflow": 121, "tulip": 121, "cp": [121, 122, 124, 126], "exact": 121, "tv_efficientnet_b0": 121, "tv_resnet_50": 121, "efficientnet_v2_light": 121, "tv_efficientnet_b3": 121, "efficientnet_b0_light": 121, "tv_efficientnet_v2_l": 121, "tv_efficientnet_b1": 121, "tv_mobilenet_v3_smal": 121, "otx_mobilenet_v3_larg": 121, "otx_deit_tini": 121, "tv_efficientnet_b4": 121, "otx_efficientnet_v2": 121, "mobilenet_v3_large_light": 121, "otx_efficientnet_b0": 121, "otx_dino_v2": 121, "otx_dino_v2_linear_prob": 121, "counterintuit": [121, 122, 124, 126], "disable_infer_num_class": [121, 122, 124, 125, 126], "9929155111312866": 121, "0430680550634861": 121, "058606021106243134": 121, "epoch_014": 121, "446673": 121, "9931880235671997": 121, "018398193642497063": 121, "2764030694961548": 121, "989645779132843": 121, "00853706430643797": 121, "43554383516311646": 121, "reveal": [122, 124, 126], "page": [122, 124, 126, 128], "grapevin": [122, 124, 126], "grape": [122, 124, 126], "cdy": [122, 124, 126], "chardonnai": [122, 124, 126], "cfr": [122, 124, 126], "cabernet": [122, 124, 126], "franc": [122, 124, 126], "sauvignon": [122, 124, 126], "svb": [122, 124, 126], "blanc": [122, 124, 126], "syh": [122, 124, 126], "syrah": [122, 124, 126], "great": [122, 126], "reformat": [122, 126], "meet": [122, 124, 126], "_train": [122, 124, 126], "025369757786393166": 122, "8693901896476746": 122, "08180806040763855": 122, "5444773435592651": 122, "5761404037475586": 122, "561242401599884": 122, "2926788330078125": 122, "055956535041332245": 122, "45759353041648865": 122, "6809769868850708": 122, "6932432055473328": 122, "46584922075271606": 122, "toi": [124, 126], "train_polygons_inst": 124, "test_polygons_inst": 124, "maskrcnn_r50": [124, 125], "maskrcnn_r50_til": 124, "maskrcnn_swint": 124, "maskrcnn_efficientnetb2b": 124, "rtmdet_inst_tini": 124, "maskrcnn_efficientnetb2b_til": 124, "maskrcnn_swint_til": 124, "mostli": [124, 126], "workplac": [124, 125, 126], "0007903117220848799": 124, "062202490866184235": 124, "33679962158203125": 124, "5482384562492371": [124, 125], "37118086218833923": 124, "epoch_059": [124, 125], "hood": [124, 125], "voc2012": 125, "semnat": 125, "common_semantic_segmentation_dataset": 125, "segnext_t": 125, "segnext_b": 125, "dino_v2": 125, "litehrnet_18": 125, "segnext_": 125, "litehrnet_x": 125, "litehrnet_": 125, "1556396484375": 125, "0009265312692150474": 126, "9201090335845947": 126, "9201071262359619": 126, "8520355224609375": 126, "3015514016151428": 126, "5886790156364441": 126, "9061686396598816": 126, "6716098785400391": 126, "7401198148727417": 126, "5705212950706482": 126, "21598181128501892": 126, "03824029490351677": 126, "3468073010444641": 126, "614170253276825": 126, "766523003578186": 126, "599896252155304": 126, "2501521706581116": 126, "epoch_009": 126, "0009342798730358481": 126, "31654438376426697": 126, "396129": 126, "313879": 126, "0007283412269316614": 126, "9990837574005127": 126, "9169966578483582": 126, "8467163443565369": 126, "1121630668640137": 126, "47309553623199463": 126, "8371172547340393": 126, "5044668912887573": 126, "6876431107521057": 126, "5046071410179138": 126, "11672457307577133": 126, "02601064182817936": 126, "26142847537994385": 126, "6027402281761169": 126, "7594292163848877": 126, "5897444486618042": 126, "22268414497375488": 126, "0007516053738072515": 126, "09753680229187": 126, "matter": 126, "609954": 126, "fault": 126, "occur": 126, "thread": 126, "affect": 126, "optimized_model_decod": 126, "0007440951885655522": 126, "998199462890625": 126, "853766918182373": 126, "7448458075523376": 126, "8865625858306885": 126, "23295165598392487": 126, "5494663119316101": 126, "15102604031562805": 126, "45290130376815796": 126, "16153287887573242": 126, "012729672715067863": 126, "014449129812419415": 126, "15996699035167694": 126, "3901452422142029": 126, "5868775844573975": 126, "30925533175468445": 126, "027198636904358864": 126}, "objects": {"": [[32, 0, 0, "-", "otx"]], "otx": [[33, 0, 0, "-", "algo"], [52, 0, 0, "-", "cli"], [60, 0, 0, "-", "core"], [104, 0, 0, "-", "data"], [105, 0, 0, "-", "engine"], [106, 0, 0, "-", "hpo"], [107, 0, 0, "-", "recipe"], [108, 0, 0, "-", "tools"], [111, 0, 0, "-", "utils"]], "otx.algo": [[34, 0, 0, "-", "action_classification"], [35, 0, 0, "-", "classification"], [39, 0, 0, "-", "detection"], [44, 0, 0, "-", "segmentation"], [48, 0, 0, "-", "visual_prompting"]], "otx.algo.action_classification": [[34, 1, 1, "", "MoViNetHead"], [34, 1, 1, "", "MoViNetRecognizer"], [34, 1, 1, "", "OTXMoViNet"], [34, 1, 1, "", "OTXOVActionCls"], [34, 1, 1, "", "OTXRecognizer3D"]], "otx.algo.action_classification.MoViNetHead": [[34, 2, 1, "", "forward"], [34, 2, 1, "", "init_weights"]], "otx.algo.action_classification.MoViNetRecognizer": [[34, 2, 1, "", "load_state_dict_pre_hook"], [34, 2, 1, "", "state_dict_hook"]], "otx.algo.action_classification.OTXMoViNet": [[34, 2, 1, "", "fill_conv"], [34, 2, 1, "", "fill_se_config"]], "otx.algo.action_classification.OTXOVActionCls": [[34, 2, 1, "", "postprocess"], [34, 2, 1, "", "preprocess"]], "otx.algo.classification": [[35, 1, 1, "", "DINOv2"], [35, 1, 1, "", "DINOv2RegisterClassifier"], [36, 0, 0, "-", "backbones"], [37, 0, 0, "-", "heads"], [38, 0, 0, "-", "losses"]], "otx.algo.classification.DINOv2": [[35, 2, 1, "", "forward"]], "otx.algo.classification.backbones": [[36, 1, 1, "", "OTXEfficientNet"], [36, 1, 1, "", "OTXEfficientNetV2"], [36, 1, 1, "", "OTXMobileNetV3"]], "otx.algo.classification.backbones.OTXEfficientNet": [[36, 2, 1, "", "forward"], [36, 2, 1, "", "init_weights"]], "otx.algo.classification.backbones.OTXEfficientNetV2": [[36, 2, 1, "", "init_weights"]], "otx.algo.classification.backbones.OTXMobileNetV3": [[36, 2, 1, "", "forward"], [36, 2, 1, "", "init_weights"]], "otx.algo.classification.heads": [[37, 1, 1, "", "CustomHierarchicalLinearClsHead"], [37, 1, 1, "", "CustomHierarchicalNonLinearClsHead"], [37, 1, 1, "", "CustomMultiLabelLinearClsHead"], [37, 1, 1, "", "CustomMultiLabelNonLinearClsHead"]], "otx.algo.classification.heads.CustomHierarchicalLinearClsHead": [[37, 2, 1, "", "forward"], [37, 2, 1, "", "get_valid_label_mask"], [37, 2, 1, "", "loss"], [37, 2, 1, "", "pre_logits"], [37, 2, 1, "", "predict"]], "otx.algo.classification.heads.CustomHierarchicalNonLinearClsHead": [[37, 2, 1, "", "forward"], [37, 2, 1, "", "get_valid_label_mask"], [37, 2, 1, "", "loss"], [37, 2, 1, "", "pre_logits"], [37, 2, 1, "", "predict"]], "otx.algo.classification.heads.CustomMultiLabelLinearClsHead": [[37, 2, 1, "", "get_valid_label_mask"], [37, 2, 1, "", "loss"]], "otx.algo.classification.heads.CustomMultiLabelNonLinearClsHead": [[37, 2, 1, "", "forward"], [37, 2, 1, "", "get_valid_label_mask"], [37, 2, 1, "", "loss"]], "otx.algo.classification.losses": [[38, 1, 1, "", "AsymmetricAngularLossWithIgnore"]], "otx.algo.classification.losses.AsymmetricAngularLossWithIgnore": [[38, 2, 1, "", "forward"]], "otx.algo.detection": [[39, 1, 1, "", "SSD"], [40, 0, 0, "-", "backbones"], [42, 0, 0, "-", "heads"], [43, 0, 0, "-", "losses"]], "otx.algo.detection.SSD": [[39, 2, 1, "", "get_classification_layers"], [39, 2, 1, "", "load_from_otx_v1_ckpt"], [39, 2, 1, "", "load_state_dict_pre_hook"], [39, 2, 1, "", "setup"], [39, 2, 1, "", "state_dict"]], "otx.algo.detection.backbones": [[41, 0, 0, "-", "pytorchcv_backbones"]], "otx.algo.detection.backbones.pytorchcv_backbones": [[41, 3, 1, "", "init_weights"], [41, 3, 1, "", "multioutput_forward"], [41, 3, 1, "", "replace_activation"], [41, 3, 1, "", "replace_norm"], [41, 3, 1, "", "train"]], "otx.algo.detection.heads": [[42, 1, 1, "", "CustomATSSHead"], [42, 1, 1, "", "CustomSSDHead"], [42, 1, 1, "", "SSDAnchorGeneratorClustered"]], "otx.algo.detection.heads.CustomATSSHead": [[42, 2, 1, "", "get_targets"], [42, 2, 1, "", "loss_by_feat"], [42, 2, 1, "", "loss_by_feat_single"]], "otx.algo.detection.heads.SSDAnchorGeneratorClustered": [[42, 2, 1, "", "gen_base_anchors"], [42, 2, 1, "", "gen_single_level_base_anchors"]], "otx.algo.segmentation": [[45, 0, 0, "-", "backbones"], [46, 0, 0, "-", "heads"], [47, 0, 0, "-", "losses"]], "otx.algo.segmentation.backbones": [[45, 1, 1, "", "DinoVisionTransformer"], [45, 1, 1, "", "LiteHRNet"]], "otx.algo.segmentation.backbones.DinoVisionTransformer": [[45, 2, 1, "", "forward"], [45, 2, 1, "", "init_weights"]], "otx.algo.segmentation.backbones.LiteHRNet": [[45, 2, 1, "", "forward"]], "otx.algo.segmentation.heads": [[46, 1, 1, "", "CustomFCNHead"], [46, 1, 1, "", "CustomLightHamHead"]], "otx.algo.segmentation.losses": [[47, 1, 1, "", "CrossEntropyLossWithIgnore"]], "otx.algo.segmentation.losses.CrossEntropyLossWithIgnore": [[47, 2, 1, "", "forward"], [47, 4, 1, "", "loss_name"]], "otx.algo.visual_prompting": [[48, 1, 1, "", "OTXSegmentAnything"], [48, 1, 1, "", "OTXZeroShotSegmentAnything"], [48, 1, 1, "", "SegmentAnything"], [48, 1, 1, "", "VisualPromptingDecoder"], [48, 1, 1, "", "VisualPromptingImageEncoder"], [48, 1, 1, "", "ZeroShotSegmentAnything"], [49, 0, 0, "-", "backbones"], [50, 0, 0, "-", "decoders"], [51, 0, 0, "-", "encoders"]], "otx.algo.visual_prompting.OTXZeroShotSegmentAnything": [[48, 2, 1, "", "apply_boxes"], [48, 2, 1, "", "apply_coords"], [48, 2, 1, "", "apply_image"], [48, 2, 1, "", "apply_points"], [48, 2, 1, "", "apply_prompts"], [48, 2, 1, "", "forward"], [48, 2, 1, "", "get_preprocess_shape"], [48, 2, 1, "", "infer"], [48, 2, 1, "", "initialize_reference_info"], [48, 2, 1, "", "learn"], [48, 2, 1, "", "load_latest_reference_info"], [48, 2, 1, "", "preprocess"], [48, 2, 1, "", "transforms"]], "otx.algo.visual_prompting.SegmentAnything": [[48, 2, 1, "", "calculate_dice_loss"], [48, 2, 1, "", "calculate_iou"], [48, 2, 1, "", "calculate_sigmoid_ce_focal_loss"], [48, 2, 1, "", "calculate_stability_score"], [48, 2, 1, "", "forward"], [48, 2, 1, "", "forward_inference"], [48, 2, 1, "", "forward_train"], [48, 2, 1, "", "freeze_networks"], [48, 2, 1, "", "get_prepadded_size"], [48, 2, 1, "", "load_checkpoint"], [48, 2, 1, "", "postprocess_masks"], [48, 2, 1, "", "select_masks"]], "otx.algo.visual_prompting.VisualPromptingDecoder": [[48, 2, 1, "", "apply_coords"], [48, 2, 1, "", "parameters"], [48, 2, 1, "", "postprocess"], [48, 2, 1, "", "preprocess"]], "otx.algo.visual_prompting.VisualPromptingImageEncoder": [[48, 2, 1, "", "parameters"], [48, 2, 1, "", "preprocess"]], "otx.algo.visual_prompting.ZeroShotSegmentAnything": [[48, 2, 1, "", "expand_reference_info"], [48, 2, 1, "", "infer"], [48, 2, 1, "", "learn"], [48, 2, 1, "", "pad_to_square"], [48, 2, 1, "", "set_default_config"]], "otx.algo.visual_prompting.backbones": [[49, 1, 1, "", "TinyViT"], [49, 1, 1, "", "ViT"]], "otx.algo.visual_prompting.backbones.TinyViT": [[49, 2, 1, "", "forward"], [49, 2, 1, "", "no_weight_decay_keywords"], [49, 2, 1, "", "set_layer_lr_decay"]], "otx.algo.visual_prompting.backbones.ViT": [[49, 2, 1, "", "forward"]], "otx.algo.visual_prompting.decoders": [[50, 1, 1, "", "SAMMaskDecoder"]], "otx.algo.visual_prompting.decoders.SAMMaskDecoder": [[50, 2, 1, "", "forward"], [50, 2, 1, "", "predict_masks"]], "otx.algo.visual_prompting.encoders": [[51, 1, 1, "", "SAMImageEncoder"], [51, 1, 1, "", "SAMPromptEncoder"]], "otx.algo.visual_prompting.encoders.SAMPromptEncoder": [[51, 2, 1, "", "forward"], [51, 2, 1, "", "get_dense_pe"]], "otx.cli": [[53, 0, 0, "-", "cli"], [54, 0, 0, "-", "install"], [52, 3, 1, "", "main"], [55, 0, 0, "-", "utils"]], "otx.cli.cli": [[53, 1, 1, "", "OTXCLI"]], "otx.cli.cli.OTXCLI": [[53, 2, 1, "", "add_subcommands"], [53, 2, 1, "", "engine_subcommand_parser"], [53, 2, 1, "", "engine_subcommands"], [53, 2, 1, "", "get_config_value"], [53, 2, 1, "", "get_subcommand_parser"], [53, 2, 1, "", "init_parser"], [53, 2, 1, "", "instantiate_classes"], [53, 2, 1, "", "instantiate_engine"], [53, 2, 1, "", "instantiate_model"], [53, 2, 1, "", "prepare_subcommand_kwargs"], [53, 2, 1, "", "run"], [53, 2, 1, "", "save_config"], [53, 2, 1, "", "set_seed"], [53, 2, 1, "", "update_latest"]], "otx.cli.install": [[54, 3, 1, "", "add_install_parser"], [54, 3, 1, "", "otx_install"]], "otx.cli.utils": [[55, 3, 1, "", "absolute_path"], [56, 0, 0, "-", "help_formatter"], [57, 0, 0, "-", "installation"], [58, 0, 0, "-", "jsonargparse"], [59, 0, 0, "-", "workspace"]], "otx.cli.utils.help_formatter": [[56, 1, 1, "", "CustomHelpFormatter"], [56, 3, 1, "", "get_cli_usage_docstring"], [56, 3, 1, "", "get_verbosity_subcommand"], [56, 3, 1, "", "render_guide"]], "otx.cli.utils.help_formatter.CustomHelpFormatter": [[56, 2, 1, "id0", "add_argument"], [56, 2, 1, "id1", "add_usage"], [56, 2, 1, "id2", "format_help"], [56, 5, 1, "", "subcommand"], [56, 5, 1, "", "verbosity_level"]], "otx.cli.utils.installation": [[57, 3, 1, "", "add_hardware_suffix_to_torch"], [57, 3, 1, "", "get_cuda_suffix"], [57, 3, 1, "", "get_cuda_version"], [57, 3, 1, "", "get_hardware_suffix"], [57, 3, 1, "", "get_mmcv_install_args"], [57, 3, 1, "", "get_module_version"], [57, 3, 1, "", "get_requirements"], [57, 3, 1, "", "get_torch_install_args"], [57, 3, 1, "", "mim_installation"], [57, 3, 1, "", "parse_requirements"], [57, 3, 1, "", "patch_mmaction2"], [57, 3, 1, "", "update_cuda_version_with_available_torch_cuda_build"]], "otx.cli.utils.jsonargparse": [[58, 3, 1, "", "add_list_type_arguments"], [58, 3, 1, "", "apply_config"], [58, 3, 1, "", "flatten_dict"], [58, 3, 1, "", "get_configuration"], [58, 3, 1, "", "get_defaults_with_overrides"], [58, 3, 1, "", "get_instantiated_classes"], [58, 3, 1, "", "get_short_docstring"], [58, 3, 1, "", "list_override"], [58, 3, 1, "", "patch_update_configs"], [58, 3, 1, "", "update"]], "otx.cli.utils.workspace": [[59, 1, 1, "", "Workspace"]], "otx.core": [[61, 0, 0, "-", "config"], [66, 0, 0, "-", "data"], [67, 0, 0, "-", "exporter"], [74, 0, 0, "-", "metrics"], [75, 0, 0, "-", "model"], [91, 0, 0, "-", "schedulers"], [92, 0, 0, "-", "types"], [93, 0, 0, "-", "utils"]], "otx.core.config": [[61, 3, 1, "", "any_representer"], [61, 3, 1, "", "as_int_tuple"], [61, 3, 1, "", "as_torch_dtype"], [62, 0, 0, "-", "data"], [63, 0, 0, "-", "device"], [61, 3, 1, "", "dtype_representer"], [64, 0, 0, "-", "explain"], [65, 0, 0, "-", "hpo"], [61, 3, 1, "", "ignore_aliases"], [61, 3, 1, "", "register_configs"]], "otx.core.config.data": [[62, 1, 1, "", "DataModuleConfig"], [62, 1, 1, "", "SamplerConfig"], [62, 1, 1, "", "SubsetConfig"], [62, 1, 1, "", "TileConfig"], [62, 1, 1, "", "VisualPromptingConfig"]], "otx.core.config.data.SubsetConfig": [[62, 5, 1, "", "batch_size"], [62, 5, 1, "", "num_workers"], [62, 5, 1, "", "subset_name"], [62, 5, 1, "", "transform_lib_type"], [62, 5, 1, "", "transforms"]], "otx.core.config.device": [[63, 1, 1, "", "DeviceConfig"]], "otx.core.config.explain": [[64, 1, 1, "", "ExplainConfig"]], "otx.core.config.hpo": [[65, 1, 1, "", "HpoConfig"]], "otx.core.data": [[66, 1, 1, "", "OTXDataModule"], [66, 1, 1, "", "OTXDatasetFactory"], [66, 1, 1, "", "TransformLibFactory"]], "otx.core.data.OTXDataModule": [[66, 4, 1, "", "hparams_initial"], [66, 2, 1, "", "predict_dataloader"], [66, 2, 1, "", "setup"], [66, 2, 1, "", "teardown"], [66, 2, 1, "", "test_dataloader"], [66, 2, 1, "", "train_dataloader"], [66, 2, 1, "", "val_dataloader"]], "otx.core.data.OTXDatasetFactory": [[66, 2, 1, "", "create"]], "otx.core.data.TransformLibFactory": [[66, 2, 1, "", "generate"]], "otx.core.exporter": [[68, 0, 0, "-", "base"], [69, 0, 0, "-", "exportable_code"], [71, 0, 0, "-", "mmdeploy"], [72, 0, 0, "-", "native"], [73, 0, 0, "-", "visual_prompting"]], "otx.core.exporter.base": [[68, 1, 1, "", "OTXModelExporter"]], "otx.core.exporter.base.OTXModelExporter": [[68, 2, 1, "", "export"], [68, 2, 1, "", "to_exportable_code"], [68, 2, 1, "", "to_onnx"], [68, 2, 1, "", "to_openvino"]], "otx.core.exporter.exportable_code": [[70, 0, 0, "-", "demo"]], "otx.core.exporter.mmdeploy": [[71, 1, 1, "", "MMdeployExporter"], [71, 3, 1, "", "load_mmconfig_from_pkg"], [71, 3, 1, "", "mmdeploy_init_model_helper"], [71, 3, 1, "", "patch_input_shape"], [71, 3, 1, "", "patch_ir_scale_factor"], [71, 3, 1, "", "use_temporary_default_scope"]], "otx.core.exporter.mmdeploy.MMdeployExporter": [[71, 2, 1, "", "cvt_torch2onnx_partition"], [71, 2, 1, "", "to_onnx"], [71, 2, 1, "", "to_openvino"]], "otx.core.exporter.native": [[72, 1, 1, "", "OTXNativeModelExporter"]], "otx.core.exporter.native.OTXNativeModelExporter": [[72, 2, 1, "", "to_onnx"], [72, 2, 1, "", "to_openvino"]], "otx.core.exporter.visual_prompting": [[73, 1, 1, "", "OTXVisualPromptingModelExporter"]], "otx.core.exporter.visual_prompting.OTXVisualPromptingModelExporter": [[73, 2, 1, "", "export"], [73, 2, 1, "", "get_onnx_dummy_inputs"], [73, 2, 1, "", "to_onnx"], [73, 2, 1, "", "to_openvino"]], "otx.core.model": [[76, 0, 0, "-", "action_classification"], [77, 0, 0, "-", "action_detection"], [78, 0, 0, "-", "anomaly"], [79, 0, 0, "-", "base"], [80, 0, 0, "-", "classification"], [81, 0, 0, "-", "detection"], [82, 0, 0, "-", "instance_segmentation"], [83, 0, 0, "-", "rotated_detection"], [84, 0, 0, "-", "segmentation"], [85, 0, 0, "-", "utils"], [90, 0, 0, "-", "visual_prompting"]], "otx.core.model.action_classification": [[76, 1, 1, "", "MMActionCompatibleModel"], [76, 1, 1, "", "OTXActionClsModel"], [76, 1, 1, "", "OVActionClsModel"]], "otx.core.model.action_classification.OVActionClsModel": [[76, 4, 1, "", "model_adapter_parameters"], [76, 2, 1, "", "transform_fn"]], "otx.core.model.action_detection": [[77, 1, 1, "", "MMActionCompatibleModel"], [77, 1, 1, "", "OTXActionDetModel"]], "otx.core.model.anomaly": [[78, 1, 1, "", "OTXAnomaly"]], "otx.core.model.anomaly.OTXAnomaly": [[78, 2, 1, "", "configure_callbacks"], [78, 2, 1, "", "configure_optimizers"], [78, 2, 1, "", "export"], [78, 2, 1, "", "forward"], [78, 4, 1, "", "input_size"], [78, 4, 1, "", "label_info"], [78, 2, 1, "", "load_state_dict"], [78, 2, 1, "", "on_predict_batch_end"], [78, 2, 1, "", "on_test_batch_end"], [78, 2, 1, "", "predict_step"], [78, 2, 1, "", "setup"], [78, 2, 1, "", "state_dict"], [78, 4, 1, "", "task"], [78, 4, 1, "", "trainable_model"]], "otx.core.model.base": [[79, 1, 1, "", "OTXModel"], [79, 1, 1, "", "OVModel"]], "otx.core.model.base.OTXModel": [[79, 2, 1, "", "configure_metric"], [79, 2, 1, "", "configure_optimizers"], [79, 4, 1, "id0", "explain_mode"], [79, 2, 1, "", "export"], [79, 2, 1, "", "forward"], [79, 2, 1, "", "forward_explain"], [79, 2, 1, "", "forward_tiles"], [79, 2, 1, "", "get_explain_fn"], [79, 4, 1, "", "label_info"], [79, 2, 1, "", "load_from_otx_v1_ckpt"], [79, 2, 1, "", "load_state_dict"], [79, 2, 1, "", "load_state_dict_pre_hook"], [79, 2, 1, "", "lr_scheduler_step"], [79, 2, 1, "", "map_class_names"], [79, 4, 1, "", "metric"], [79, 4, 1, "", "num_classes"], [79, 2, 1, "", "on_test_epoch_end"], [79, 2, 1, "", "on_test_epoch_start"], [79, 2, 1, "", "on_test_start"], [79, 2, 1, "", "on_validation_epoch_end"], [79, 2, 1, "", "on_validation_epoch_start"], [79, 2, 1, "", "on_validation_start"], [79, 2, 1, "", "optimize"], [79, 2, 1, "", "predict_step"], [79, 2, 1, "", "register_load_state_dict_pre_hook"], [79, 2, 1, "", "setup"], [79, 2, 1, "", "state_dict"], [79, 2, 1, "", "test_step"], [79, 2, 1, "", "training_step"], [79, 2, 1, "", "validation_step"]], "otx.core.model.base.OVModel": [[79, 2, 1, "", "forward"], [79, 2, 1, "", "forward_explain"], [79, 4, 1, "", "model_adapter_parameters"], [79, 2, 1, "", "optimize"], [79, 2, 1, "", "transform_fn"]], "otx.core.model.classification": [[80, 1, 1, "", "MMPretrainHlabelClsModel"], [80, 1, 1, "", "MMPretrainMulticlassClsModel"], [80, 1, 1, "", "MMPretrainMultilabelClsModel"], [80, 1, 1, "", "OTXHlabelClsModel"], [80, 1, 1, "", "OTXMulticlassClsModel"], [80, 1, 1, "", "OTXMultilabelClsModel"], [80, 1, 1, "", "OVHlabelClassificationModel"], [80, 1, 1, "", "OVMulticlassClassificationModel"], [80, 1, 1, "", "OVMultilabelClassificationModel"]], "otx.core.model.detection": [[81, 1, 1, "", "ExplainableOTXDetModel"], [81, 1, 1, "", "MMDetCompatibleModel"], [81, 1, 1, "", "OTXDetectionModel"], [81, 1, 1, "", "OVDetectionModel"]], "otx.core.model.detection.ExplainableOTXDetModel": [[81, 2, 1, "", "forward_explain"], [81, 2, 1, "", "get_explain_fn"], [81, 2, 1, "", "get_num_anchors"]], "otx.core.model.detection.OTXDetectionModel": [[81, 2, 1, "", "forward_tiles"], [81, 2, 1, "", "load_state_dict"]], "otx.core.model.instance_segmentation": [[82, 1, 1, "", "ExplainableOTXInstanceSegModel"], [82, 1, 1, "", "MMDetInstanceSegCompatibleModel"], [82, 1, 1, "", "OTXInstanceSegModel"], [82, 1, 1, "", "OVInstanceSegmentationModel"]], "otx.core.model.instance_segmentation.ExplainableOTXInstanceSegModel": [[82, 2, 1, "", "forward_explain"], [82, 2, 1, "", "get_explain_fn"]], "otx.core.model.instance_segmentation.OTXInstanceSegModel": [[82, 2, 1, "", "forward_tiles"], [82, 2, 1, "", "load_state_dict"]], "otx.core.model.rotated_detection": [[83, 1, 1, "", "MMDetRotatedDetModel"], [83, 1, 1, "", "OTXRotatedDetModel"], [83, 1, 1, "", "OVRotatedDetectionModel"]], "otx.core.model.rotated_detection.OTXRotatedDetModel": [[83, 2, 1, "", "predict_step"]], "otx.core.model.segmentation": [[84, 1, 1, "", "MMSegCompatibleModel"], [84, 1, 1, "", "OTXSegmentationModel"], [84, 1, 1, "", "OVSegmentationModel"]], "otx.core.model.utils": [[86, 0, 0, "-", "mmaction"], [87, 0, 0, "-", "mmdet"], [88, 0, 0, "-", "mmpretrain"], [89, 0, 0, "-", "mmseg"]], "otx.core.model.utils.mmaction": [[86, 1, 1, "", "ActionDataPreprocessor"], [86, 3, 1, "", "create_model"]], "otx.core.model.utils.mmaction.ActionDataPreprocessor": [[86, 4, 1, "", "device"]], "otx.core.model.utils.mmdet": [[87, 1, 1, "", "DetDataPreprocessor"], [87, 3, 1, "", "create_model"]], "otx.core.model.utils.mmdet.DetDataPreprocessor": [[87, 4, 1, "", "device"]], "otx.core.model.utils.mmpretrain": [[88, 1, 1, "", "ClsDataPreprocessor"], [88, 1, 1, "", "ExplainableMixInMMPretrainModel"], [88, 3, 1, "", "create_model"]], "otx.core.model.utils.mmpretrain.ClsDataPreprocessor": [[88, 4, 1, "", "device"]], "otx.core.model.utils.mmpretrain.ExplainableMixInMMPretrainModel": [[88, 2, 1, "", "forward_explain"], [88, 2, 1, "", "get_explain_fn"], [88, 4, 1, "", "has_gap"], [88, 2, 1, "", "head_forward_fn"]], "otx.core.model.utils.mmseg": [[89, 1, 1, "", "SegDataPreProcessor"], [89, 3, 1, "", "create_model"], [89, 3, 1, "", "stack_batch"]], "otx.core.model.utils.mmseg.SegDataPreProcessor": [[89, 4, 1, "", "device"], [89, 2, 1, "", "forward"]], "otx.core.model.visual_prompting": [[90, 1, 1, "", "OTXVisualPromptingModel"], [90, 1, 1, "", "OTXZeroShotVisualPromptingModel"], [90, 1, 1, "", "OVVisualPromptingModel"], [90, 1, 1, "", "OVZeroShotVisualPromptingModel"]], "otx.core.model.visual_prompting.OTXVisualPromptingModel": [[90, 2, 1, "", "test_step"], [90, 2, 1, "", "validation_step"]], "otx.core.model.visual_prompting.OTXZeroShotVisualPromptingModel": [[90, 2, 1, "", "configure_optimizers"], [90, 2, 1, "", "on_predict_start"], [90, 2, 1, "", "on_test_start"], [90, 2, 1, "", "on_train_epoch_end"], [90, 2, 1, "", "on_train_epoch_start"], [90, 2, 1, "", "on_train_start"], [90, 2, 1, "", "on_validation_epoch_end"], [90, 2, 1, "", "on_validation_epoch_start"], [90, 2, 1, "", "test_step"], [90, 2, 1, "", "training_step"], [90, 2, 1, "", "validation_step"]], "otx.core.model.visual_prompting.OVVisualPromptingModel": [[90, 2, 1, "", "forward"], [90, 2, 1, "", "optimize"], [90, 2, 1, "", "test_step"], [90, 2, 1, "", "validation_step"]], "otx.core.model.visual_prompting.OVZeroShotVisualPromptingModel": [[90, 2, 1, "", "expand_reference_info"], [90, 2, 1, "", "forward"], [90, 2, 1, "", "infer"], [90, 2, 1, "", "initialize_reference_info"], [90, 2, 1, "", "learn"], [90, 2, 1, "", "load_latest_reference_info"], [90, 2, 1, "", "test_step"], [90, 2, 1, "", "validation_step"]], "otx.core.schedulers": [[91, 1, 1, "", "LinearWarmupScheduler"], [91, 1, 1, "", "LinearWarmupSchedulerCallable"]], "otx.core.schedulers.LinearWarmupScheduler": [[91, 4, 1, "", "activated"], [91, 2, 1, "", "step"]], "otx.core.schedulers.LinearWarmupSchedulerCallable": [[91, 2, 1, "", "__call__"]], "otx.core.types": [[92, 1, 1, "", "HLabelInfo"], [92, 1, 1, "", "LabelInfo"], [92, 1, 1, "", "NullLabelInfo"], [92, 1, 1, "", "OTXTaskType"], [92, 1, 1, "", "SegLabelInfo"]], "otx.core.types.HLabelInfo": [[92, 2, 1, "", "as_head_config_dict"], [92, 2, 1, "", "from_dm_label_groups"], [92, 2, 1, "", "from_json"]], "otx.core.types.LabelInfo": [[92, 2, 1, "", "as_dict"], [92, 2, 1, "", "from_dm_label_groups"], [92, 2, 1, "", "from_json"], [92, 2, 1, "", "from_num_classes"], [92, 4, 1, "", "num_classes"], [92, 2, 1, "", "to_json"]], "otx.core.types.NullLabelInfo": [[92, 2, 1, "", "from_json"]], "otx.core.utils": [[94, 0, 0, "-", "build"], [95, 0, 0, "-", "cache"], [96, 0, 0, "-", "config"], [97, 0, 0, "-", "imports"], [98, 0, 0, "-", "instantiators"], [99, 0, 0, "-", "mask_util"], [100, 0, 0, "-", "miscellaneous"], [101, 0, 0, "-", "pylogger"], [102, 0, 0, "-", "tile_merge"], [103, 0, 0, "-", "utils"]], "otx.core.utils.build": [[94, 3, 1, "", "build_mm_model"], [94, 3, 1, "", "get_classification_layers"], [94, 3, 1, "", "get_default_num_async_infer_requests"], [94, 3, 1, "", "modify_num_classes"]], "otx.core.utils.cache": [[95, 1, 1, "", "TrainerArgumentsCache"]], "otx.core.utils.cache.TrainerArgumentsCache": [[95, 4, 1, "", "args"], [95, 2, 1, "", "get_trainer_constructor_args"], [95, 2, 1, "", "requires_update"], [95, 2, 1, "", "update"]], "otx.core.utils.config": [[96, 3, 1, "", "convert_conf_to_mmconfig_dict"], [96, 3, 1, "", "inplace_num_classes"], [96, 3, 1, "", "mmconfig_dict_to_dict"], [96, 3, 1, "", "to_list"], [96, 3, 1, "", "to_tuple"]], "otx.core.utils.imports": [[97, 3, 1, "", "get_otx_root_path"]], "otx.core.utils.instantiators": [[98, 3, 1, "", "instantiate_callbacks"], [98, 3, 1, "", "instantiate_loggers"], [98, 3, 1, "", "instantiate_sampler"], [98, 3, 1, "", "partial_instantiate_class"]], "otx.core.utils.mask_util": [[99, 3, 1, "", "encode_rle"], [99, 3, 1, "", "polygon_to_bitmap"], [99, 3, 1, "", "polygon_to_rle"]], "otx.core.utils.miscellaneous": [[100, 3, 1, "", "ensure_callable"]], "otx.core.utils.pylogger": [[101, 3, 1, "", "get_pylogger"]], "otx.core.utils.tile_merge": [[102, 1, 1, "", "DetectionTileMerge"], [102, 1, 1, "", "InstanceSegTileMerge"], [102, 1, 1, "", "TileMerge"]], "otx.core.utils.tile_merge.DetectionTileMerge": [[102, 2, 1, "", "merge"]], "otx.core.utils.tile_merge.InstanceSegTileMerge": [[102, 2, 1, "", "merge"]], "otx.core.utils.tile_merge.TileMerge": [[102, 2, 1, "", "merge"], [102, 2, 1, "", "nms_postprocess"]], "otx.core.utils.utils": [[103, 3, 1, "", "get_adaptive_num_workers"], [103, 3, 1, "", "get_idx_list_per_classes"], [103, 3, 1, "", "get_mean_std_from_data_processing"], [103, 3, 1, "", "is_ckpt_for_finetuning"], [103, 3, 1, "", "is_ckpt_from_otx_v1"]], "otx.data": [[104, 1, 1, "", "AnomalyDataModule"]], "otx.engine": [[105, 1, 1, "", "Engine"]], "otx.engine.Engine": [[105, 4, 1, "", "datamodule"], [105, 4, 1, "", "device"], [105, 2, 1, "", "explain"], [105, 2, 1, "", "export"], [105, 2, 1, "", "from_config"], [105, 2, 1, "", "from_model_name"], [105, 4, 1, "", "model"], [105, 2, 1, "", "optimize"], [105, 2, 1, "", "predict"], [105, 2, 1, "", "test"], [105, 2, 1, "", "train"], [105, 4, 1, "", "trainer"], [105, 4, 1, "", "trainer_params"], [105, 4, 1, "", "work_dir"]], "otx.hpo": [[106, 1, 1, "", "HyperBand"], [106, 1, 1, "", "TrialStatus"], [106, 3, 1, "", "run_hpo_loop"]], "otx.hpo.HyperBand": [[106, 2, 1, "", "auto_config"], [106, 2, 1, "", "get_best_config"], [106, 2, 1, "", "get_next_sample"], [106, 2, 1, "", "get_progress"], [106, 2, 1, "", "is_done"], [106, 2, 1, "", "print_result"], [106, 2, 1, "", "report_score"], [106, 2, 1, "", "save_results"]], "otx.tools": [[109, 0, 0, "-", "converter"], [110, 0, 0, "-", "translate_mmrecipe"]], "otx.tools.converter": [[109, 1, 1, "", "ConfigConverter"]], "otx.tools.converter.ConfigConverter": [[109, 2, 1, "", "convert"], [109, 2, 1, "", "instantiate"]], "otx.utils": [[111, 3, 1, "", "append_main_proc_signal_handler"], [111, 3, 1, "", "append_signal_handler"]]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:function", "4": "py:property", "5": "py:attribute"}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "function", "Python function"], "4": ["py", "property", "Python property"], "5": ["py", "attribute", "Python attribute"]}, "titleterms": {"adapt": [0, 1], "train": [0, 6, 7, 12, 27, 28, 29, 118, 119, 120, 121, 122, 123, 124, 125, 126, 128], "auto": [1, 27], "configur": [1, 4, 7, 27, 114], "batch": 1, "size": [1, 7], "num_work": 1, "class": [2, 15, 27, 28, 29], "increment": 2, "sampler": 2, "balanc": 2, "fast": 3, "data": [3, 62, 66, 104], "load": 3, "cach": [3, 95], "In": 3, "memori": 3, "hyperparamet": 4, "optim": [4, 6, 7, 27, 28, 118, 120, 121, 122, 124, 125, 126], "algorithm": [4, 8, 17], "how": [4, 114], "hyper": 4, "paramet": [4, 7, 12], "addit": 5, "featur": [5, 30], "model": [6, 7, 9, 10, 12, 13, 15, 16, 19, 21, 22, 23, 25, 27, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 118, 119, 121, 122, 124, 125, 126], "post": 6, "quantiz": 6, "tool": [6, 108, 109, 110], "improv": 7, "small": 7, "object": [7, 18, 19, 122], "detect": [7, 8, 10, 12, 18, 19, 39, 40, 41, 42, 43, 81, 119, 120, 122], "imag": 7, "tile": 7, "strategi": 7, "enabl": 7, "via": 7, "otx": [7, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 114], "overlap": 7, "sampl": 7, "manual": 7, "run": [7, 29], "openvino": [7, 29, 128], "export": [7, 27, 28, 67, 68, 69, 70, 71, 72, 73, 117, 118, 120, 121, 122, 124, 125, 126], "explain": [8, 64], "ai": 8, "xai": [8, 27, 116], "classif": [8, 9, 12, 13, 14, 15, 16, 35, 36, 37, 38, 80, 118, 120, 121], "instanc": [8, 21, 124], "segment": [8, 12, 20, 21, 22, 44, 45, 46, 47, 84, 120, 124, 125], "action": [9, 10, 11, 118, 119], "dataset": [9, 10, 12, 13, 15, 16, 19, 21, 22, 23, 25, 27, 28, 118, 119, 120, 121, 122, 124, 125, 126], "format": [9, 10, 12, 13, 15, 16, 19, 21, 22, 23, 25], "recognit": 11, "anomali": [12, 78, 120], "task": 12, "type": [12, 92], "cluster": 12, "base": [12, 68, 79, 127], "padim": 12, "knowledg": 12, "distil": 12, "stfpm": 12, "reconstruct": 12, "dr\u00e6m": 12, "hierarch": 13, "multi": [15, 16], "label": 16, "content": [17, 30], "semant": [22, 125], "visual": [23, 24, 25, 126], "prompt": [23, 24, 25, 126], "fine": 23, "tune": 23, "zero": 25, "shot": 25, "learn": 25, "simpl": 25, "tutori": [25, 115, 116, 120, 123, 127], "product": 26, "design": 26, "our": 26, "mission": 26, "principl": 26, "core": [26, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103], "entrypoint": 26, "svg": [27, 28, 29], "version": [27, 28, 29], "1": [27, 28, 29, 113], "width": [27, 28, 29], "0em": [27, 28, 29], "height": [27, 28, 29], "sd": [27, 28, 29], "octicon": [27, 28, 29], "code": 27, "squar": 27, "viewbox": [27, 28, 29], "0": [27, 28, 29, 113], "16": [27, 28, 29], "aria": [27, 28, 29], "hidden": [27, 28, 29], "true": [27, 28, 29], "path": [27, 28, 29], "fill": [27, 28, 29], "rule": [27, 28, 29], "evenodd": [27, 28, 29], "d": [27, 28, 29], "m1": 27, "75": [27, 28, 29], "5a": [27, 28], "25": [27, 28, 29], "00": [27, 28, 29], "25v12": 27, "5c0": [27, 28], "138": [27, 28], "112": [27, 28], "25h12": [27, 28], "25v1": 27, "75a": [27, 28], "25h1": [27, 28], "75zm0": 27, "75c0": [27, 28], "784": [27, 28], "0h12": 27, "5c15": 27, "216": 27, "75v12": 27, "5a1": [27, 28], "0114": [27, 28], "16h1": 27, "75a1": [27, 28], "010": [27, 28], "14": [27, 28], "75zm9": 27, "22": [27, 28], "3": [27, 28, 29, 113], "72a": 27, "000": [27, 28], "06l10": 27, "69": 27, "8": [27, 28, 29], "9": 27, "47a": 27, "101": 27, "06": [27, 28], "06l2": [27, 28], "2a": 27, "06l": 27, "2": [27, 28, 29, 113], "0zm6": 27, "78": 27, "6": [27, 28], "53a": 27, "06l5": [27, 28], "31": 27, "8l1": 27, "47": 27, "47z": 27, "api": [27, 112], "quick": 27, "guid": [27, 28, 31], "prepar": [27, 118, 119, 120, 121, 122, 124, 125, 126], "start": 27, "check": 27, "avail": 27, "recip": [27, 107, 114], "engin": [27, 105], "evalu": [27, 28, 118, 119, 120, 121, 122, 126], "termin": 28, "m0": 28, "1h12": 28, "5c": 28, "966": 28, "75v10": 28, "15h1": 28, "13": 28, "25v2": 28, "75zm1": 28, "25a": 28, "25v10": 28, "75zm7": 28, "8a": 28, "01": [28, 29], "53l": 28, "11": 28, "44": 28, "72": 28, "28a": 28, "111": 28, "25c": 28, "141": 28, "331": 28, "53zm1": 28, "5": [28, 29, 113], "5h3a": 28, "5h": 28, "3z": 28, "cli": [28, 52, 53, 54, 55, 56, 57, 58, 59], "help": 28, "print_config": 28, "find": 28, "handl": 28, "explan": 28, "workspac": [28, 59], "packag": 29, "m8": 29, "878": 29, "392a1": 29, "756": 29, "0l": 29, "045a1": 29, "001": 29, "4": [29, 113], "951v6": 29, "098c0": 29, "624": 29, "332": 29, "872": 29, "514l5": 29, "0l5": 29, "045c": 29, "54": 29, "313": 29, "89": 29, "514v4": 29, "951c0": 29, "514l8": 29, "392zm7": 29, "875": 29, "69a": 29, "0l4": 29, "63": 29, "685l8": 29, "7": 29, "133": 29, "245": 29, "375l4": 29, "685zm2": 29, "677v5": 29, "372c0": 29, "09": 29, "047": 29, "171": 29, "125": 29, "216l4": 29, "625": 29, "683v8": 29, "432l2": 29, "677zm6": 29, "271l4": 29, "683a": 29, "216v5": 29, "677l8": 29, "432v5": 29, "516z": 29, "instal": [29, 54, 57], "prerequisit": 29, "extens": [29, 128], "user": 29, "cuda": 29, "cpu": 29, "xpu": 29, "devic": [29, 63], "develop": [29, 128], "us": 29, "docker": 29, "test": 29, "troubleshoot": 29, "introduct": 30, "kei": 30, "document": [30, 128], "releas": [31, 113], "note": 31, "algo": [33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51], "action_classif": [34, 76], "backbon": [36, 40, 41, 45, 49], "head": [37, 42, 46], "loss": [38, 43, 47], "pytorchcv_backbon": 41, "visual_prompt": [48, 49, 50, 51, 73, 90], "decod": 50, "encod": 51, "util": [55, 56, 57, 58, 59, 85, 86, 87, 88, 89, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 111], "help_formatt": 56, "jsonargpars": 58, "config": [61, 62, 63, 64, 65, 96], "hpo": [65, 106], "exportable_cod": [69, 70], "demo": [70, 117], "mmdeploi": 71, "nativ": 72, "metric": 74, "action_detect": 77, "instance_segment": 82, "rotated_detect": 83, "mmaction": 86, "mmdet": 87, "mmpretrain": 88, "mmseg": 89, "schedul": 91, "build": 94, "import": 97, "instanti": 98, "mask_util": 99, "miscellan": 100, "pylogg": 101, "tile_merg": 102, "convert": 109, "translate_mmrecip": 110, "refer": 112, "v2": 113, "1q24": 113, "v1": 113, "4q23": 113, "3q23": 113, "2q23": 113, "1q23": 113, "write": 114, "advanc": 115, "deploi": 117, "demonstr": 117, "setup": [118, 119, 120, 121, 122, 124, 125, 126], "virtual": [118, 119, 120, 121, 122, 124, 125, 126], "environ": [118, 119, 120, 121, 122, 124, 125, 126], "deploy": 123, "valid": [124, 125], "welcom": 128, "intel": 128, "": 128, "indic": 128, "tabl": 128}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1, "sphinx.ext.intersphinx": 1, "sphinx": 60}, "alltitles": {"Adaptive Training": [[0, "adaptive-training"]], "Auto-configuration": [[1, "auto-configuration"]], "Auto-adapt batch size": [[1, "auto-adapt-batch-size"]], "Auto-adapt num_workers": [[1, "auto-adapt-num-workers"]], "Class-Incremental Sampler": [[2, "class-incremental-sampler"]], "Balanced Sampler": [[2, "balanced-sampler"]], "Fast Data Loading": [[3, "fast-data-loading"]], "Caching": [[3, "caching"]], "In-Memory Caching": [[3, "in-memory-caching"]], "Hyperparameters Optimization": [[4, "hyperparameters-optimization"]], "Algorithm": [[4, "algorithm"]], "How to configure hyper-parameter optimization": [[4, "how-to-configure-hyper-parameter-optimization"]], "Additional Features": [[5, "additional-features"]], "Models Optimization": [[6, "models-optimization"]], "Post-Training Quantization Tool": [[6, "post-training-quantization-tool"]], "Improve Small Object Detection with Image Tiling": [[7, "improve-small-object-detection-with-image-tiling"]], "Tiling Strategies": [[7, "tiling-strategies"]], "Enable Tiling via OTX Training": [[7, "enable-tiling-via-otx-training"]], "Tile Size and Tile Overlap Optimization": [[7, "tile-size-and-tile-overlap-optimization"]], "Tiling Sampling Strategy": [[7, "tiling-sampling-strategy"]], "Manual Tiling Parameter Configuration": [[7, "manual-tiling-parameter-configuration"]], "Run Tiling on OpenVINO Exported Model": [[7, "run-tiling-on-openvino-exported-model"]], "Explainable AI (XAI)": [[8, "explainable-ai-xai"]], "XAI algorithms for classification": [[8, "xai-algorithms-for-classification"]], "XAI algorithms for detection": [[8, "xai-algorithms-for-detection"]], "XAI algorithms for instance segmentation": [[8, "xai-algorithms-for-instance-segmentation"]], "Action Classification": [[9, "action-classification"]], "Dataset Format": [[9, "dataset-format"], [10, "dataset-format"], [12, "dataset-format"], [13, "dataset-format"], [15, "dataset-format"], [16, "dataset-format"], [19, "dataset-format"], [21, "dataset-format"], [22, "dataset-format"], [23, "dataset-format"], [25, "dataset-format"]], "Models": [[9, "models"], [10, "models"], [12, "models"], [13, "models"], [15, "models"], [16, "models"], [19, "models"], [21, "models"], [22, "models"], [23, "models"], [25, "models"]], "Action Detection": [[10, "action-detection"]], "Action Recognition": [[11, "action-recognition"]], "Anomaly Detection": [[12, "anomaly-detection"], [12, "id1"]], "Task Types": [[12, "task-types"]], "Anomaly Classification": [[12, "anomaly-classification"]], "Anomaly Segmentation": [[12, "anomaly-segmentation"]], "Clustering-based Models": [[12, "clustering-based-models"]], "PADIM": [[12, "id7"]], "Parameters": [[12, "parameters"]], "Knowledge Distillation-based Models": [[12, "knowledge-distillation-based-models"]], "STFPM": [[12, "id8"]], "Training Parameters": [[12, "training-parameters"], [12, "id9"]], "Reconstruction-based Models": [[12, "reconstruction-based-models"]], "DR\u00c6M": [[12, "draem"]], "Hierarchical Classification": [[13, "hierarchical-classification"]], "Classification": [[14, "classification"]], "Multi-class Classification": [[15, "multi-class-classification"]], "Multi-label Classification": [[16, "multi-label-classification"]], "Algorithms": [[17, "algorithms"]], "Contents": [[17, "contents"]], "Object Detection": [[18, "object-detection"], [19, "object-detection"]], "Segmentation": [[20, "segmentation"]], "Instance Segmentation": [[21, "instance-segmentation"]], "Semantic Segmentation": [[22, "semantic-segmentation"]], "Visual Prompting (Fine-tuning)": [[23, "visual-prompting-fine-tuning"]], "Visual Prompting": [[24, "visual-prompting"]], "Visual Prompting (Zero-shot learning)": [[25, "visual-prompting-zero-shot-learning"]], "Simple tutorial": [[25, "simple-tutorial"]], "Product Design": [[26, "product-design"]], "Our Product Mission": [[26, "our-product-mission"]], "Product Design Principles": [[26, "product-design-principles"]], "Core": [[26, "core"]], "Entrypoint": [[26, "entrypoint"]], " API Quick-Guide": [[27, "svg-version-1-1-width-1-0em-height-1-0em-class-sd-octicon-sd-octicon-code-square-viewbox-0-0-16-16-aria-hidden-true-path-fill-rule-evenodd-d-m1-75-1-5a-25-25-0-00-25-25v12-5c0-138-112-25-25-25h12-5a-25-25-0-00-25-25v1-75a-25-25-0-00-25-25h1-75zm0-1-75c0-784-784-0-1-75-0h12-5c15-216-0-16-784-16-1-75v12-5a1-75-1-75-0-0114-25-16h1-75a1-75-1-75-0-010-14-25v1-75zm9-22-3-72a-75-75-0-000-1-06l10-69-8-9-22-9-47a-75-75-0-101-06-1-06l2-2a-75-75-0-000-1-06l-2-2a-75-75-0-00-1-06-0zm6-78-6-53a-75-75-0-00-1-06-1-06l-2-2a-75-75-0-000-1-06l2-2a-75-75-0-101-06-1-06l5-31-8l1-47-1-47z-path-svg-api-quick-guide"]], "Dataset preparation": [[27, "dataset-preparation"], [118, "dataset-preparation"], [119, "dataset-preparation"], [121, "dataset-preparation"], [122, "dataset-preparation"], [124, "dataset-preparation"], [125, "dataset-preparation"], [126, "dataset-preparation"]], "Quick Start with auto-configuration": [[27, "quick-start-with-auto-configuration"]], "Check Available Model Recipes": [[27, "check-available-model-recipes"]], "Engine": [[27, "engine"]], "Training": [[27, "training"], [28, "training"], [118, "training"], [119, "training"], [120, "training"], [121, "training"], [122, "training"], [124, "training"], [125, "training"], [126, "training"]], "Evaluation": [[27, "evaluation"], [28, "evaluation"], [118, "evaluation"], [119, "evaluation"], [120, "evaluation"], [121, "evaluation"], [122, "evaluation"], [126, "evaluation"]], "Exporting": [[27, "exporting"], [28, "exporting"]], "XAI": [[27, "xai"]], "Optimization": [[27, "optimization"], [28, "optimization"], [118, "optimization"], [120, "optimization"], [121, "optimization"], [122, "optimization"], [124, "optimization"], [125, "optimization"], [126, "optimization"]], " CLI Guide": [[28, "svg-version-1-1-width-1-0em-height-1-0em-class-sd-octicon-sd-octicon-terminal-viewbox-0-0-16-16-aria-hidden-true-path-fill-rule-evenodd-d-m0-2-75c0-1-784-784-1-1-75-1h12-5c-966-0-1-75-784-1-75-1-75v10-5a1-75-1-75-0-0114-25-15h1-75a1-75-1-75-0-010-13-25v2-75zm1-75-25a-25-25-0-00-25-25v10-5c0-138-112-25-25-25h12-5a-25-25-0-00-25-25v2-75a-25-25-0-00-25-25h1-75zm7-25-8a-75-75-0-01-22-53l-2-25-2-25a-75-75-0-11-1-06-1-06l5-44-8-3-72-6-28a-75-75-0-111-06-1-06l2-25-2-25c-141-14-22-331-22-53zm1-5-1-5a-75-75-0-000-1-5h3a-75-75-0-000-1-5h-3z-path-svg-cli-guide"]], "Help": [[28, "help"]], "print_config": [[28, "print-config"]], "Find": [[28, "find"]], "Dataset handling": [[28, "dataset-handling"]], "Explanation": [[28, "explanation"]], "Workspace": [[28, "workspace"]], " Installation": [[29, "svg-version-1-1-width-1-0em-height-1-0em-class-sd-octicon-sd-octicon-package-viewbox-0-0-16-16-aria-hidden-true-path-fill-rule-evenodd-d-m8-878-392a1-75-1-75-0-00-1-756-0l-5-25-3-045a1-75-1-75-0-001-4-951v6-098c0-624-332-1-2-872-1-514l5-25-3-045a1-75-1-75-0-001-756-0l5-25-3-045c-54-313-872-89-872-1-514v4-951c0-624-332-1-2-872-1-514l8-878-392zm7-875-1-69a-25-25-0-01-25-0l4-63-2-685l8-7-133-3-245-4-375l4-63-2-685zm2-5-5-677v5-372c0-09-047-171-125-216l4-625-2-683v8-432l2-5-5-677zm6-25-8-271l4-625-2-683a-25-25-0-00-125-216v5-677l8-75-8-432v5-516z-path-svg-installation"]], "Prerequisites": [[29, "prerequisites"]], "Install OpenVINO\u2122 Training Extensions for users (CUDA/CPU)": [[29, "install-openvino-training-extensions-for-users-cuda-cpu"]], "Install OpenVINO\u2122 Training Extensions for users (XPU devices)": [[29, "install-openvino-training-extensions-for-users-xpu-devices"]], "Install OpenVINO\u2122 Training Extensions for developers": [[29, "install-openvino-training-extensions-for-developers"]], "Install OpenVINO\u2122 Training Extensions by using Docker": [[29, "install-openvino-training-extensions-by-using-docker"]], "Run tests": [[29, "run-tests"]], "Troubleshooting": [[29, "troubleshooting"]], "Introduction": [[30, "introduction"]], "Key Features": [[30, "key-features"]], "Documentation content": [[30, "documentation-content"]], "Guide": [[31, "guide"]], "Release Notes": [[31, null]], "otx": [[32, "module-otx"]], "otx.algo": [[33, "module-otx.algo"]], "otx.algo.action_classification": [[34, "module-otx.algo.action_classification"]], "otx.algo.classification": [[35, "module-otx.algo.classification"]], "otx.algo.classification.backbones": [[36, "module-otx.algo.classification.backbones"]], "otx.algo.classification.heads": [[37, "module-otx.algo.classification.heads"]], "otx.algo.classification.losses": [[38, "module-otx.algo.classification.losses"]], "otx.algo.detection": [[39, "module-otx.algo.detection"]], "otx.algo.detection.backbones": [[40, "module-otx.algo.detection.backbones"]], "otx.algo.detection.backbones.pytorchcv_backbones": [[41, "module-otx.algo.detection.backbones.pytorchcv_backbones"]], "otx.algo.detection.heads": [[42, "module-otx.algo.detection.heads"]], "otx.algo.detection.losses": [[43, "module-otx.algo.detection.losses"]], "otx.algo.segmentation": [[44, "module-otx.algo.segmentation"]], "otx.algo.segmentation.backbones": [[45, "module-otx.algo.segmentation.backbones"]], "otx.algo.segmentation.heads": [[46, "module-otx.algo.segmentation.heads"]], "otx.algo.segmentation.losses": [[47, "module-otx.algo.segmentation.losses"]], "otx.algo.visual_prompting": [[48, "module-otx.algo.visual_prompting"]], "otx.algo.visual_prompting.backbones": [[49, "module-otx.algo.visual_prompting.backbones"]], "otx.algo.visual_prompting.decoders": [[50, "module-otx.algo.visual_prompting.decoders"]], "otx.algo.visual_prompting.encoders": [[51, "module-otx.algo.visual_prompting.encoders"]], "otx.cli": [[52, "module-otx.cli"]], "otx.cli.cli": [[53, "module-otx.cli.cli"]], "otx.cli.install": [[54, "module-otx.cli.install"]], "otx.cli.utils": [[55, "module-otx.cli.utils"]], "otx.cli.utils.help_formatter": [[56, "module-otx.cli.utils.help_formatter"]], "otx.cli.utils.installation": [[57, "module-otx.cli.utils.installation"]], "otx.cli.utils.jsonargparse": [[58, "module-otx.cli.utils.jsonargparse"]], "otx.cli.utils.workspace": [[59, "module-otx.cli.utils.workspace"]], "otx.core": [[60, "module-otx.core"]], "otx.core.config": [[61, "module-otx.core.config"]], "otx.core.config.data": [[62, "module-otx.core.config.data"]], ")": [[62, "id5"]], "otx.core.config.device": [[63, "module-otx.core.config.device"]], "otx.core.config.explain": [[64, "module-otx.core.config.explain"]], "otx.core.config.hpo": [[65, "module-otx.core.config.hpo"]], "otx.core.data": [[66, "module-otx.core.data"]], "otx.core.exporter": [[67, "module-otx.core.exporter"]], "otx.core.exporter.base": [[68, "module-otx.core.exporter.base"]], "otx.core.exporter.exportable_code": [[69, "module-otx.core.exporter.exportable_code"]], "otx.core.exporter.exportable_code.demo": [[70, "module-otx.core.exporter.exportable_code.demo"]], "otx.core.exporter.mmdeploy": [[71, "module-otx.core.exporter.mmdeploy"]], "otx.core.exporter.native": [[72, "module-otx.core.exporter.native"]], "otx.core.exporter.visual_prompting": [[73, "module-otx.core.exporter.visual_prompting"]], "otx.core.metrics": [[74, "module-otx.core.metrics"]], "otx.core.model": [[75, "module-otx.core.model"]], "otx.core.model.action_classification": [[76, "module-otx.core.model.action_classification"]], "otx.core.model.action_detection": [[77, "module-otx.core.model.action_detection"]], "otx.core.model.anomaly": [[78, "module-otx.core.model.anomaly"]], "otx.core.model.base": [[79, "module-otx.core.model.base"]], "otx.core.model.classification": [[80, "module-otx.core.model.classification"]], "otx.core.model.detection": [[81, "module-otx.core.model.detection"]], "otx.core.model.instance_segmentation": [[82, "module-otx.core.model.instance_segmentation"]], "otx.core.model.rotated_detection": [[83, "module-otx.core.model.rotated_detection"]], "otx.core.model.segmentation": [[84, "module-otx.core.model.segmentation"]], "otx.core.model.utils": [[85, "module-otx.core.model.utils"]], "otx.core.model.utils.mmaction": [[86, "module-otx.core.model.utils.mmaction"]], "otx.core.model.utils.mmdet": [[87, "module-otx.core.model.utils.mmdet"]], "otx.core.model.utils.mmpretrain": [[88, "module-otx.core.model.utils.mmpretrain"]], "otx.core.model.utils.mmseg": [[89, "module-otx.core.model.utils.mmseg"]], "otx.core.model.visual_prompting": [[90, "module-otx.core.model.visual_prompting"]], "otx.core.schedulers": [[91, "module-otx.core.schedulers"]], "otx.core.types": [[92, "module-otx.core.types"]], "otx.core.utils": [[93, "module-otx.core.utils"]], "otx.core.utils.build": [[94, "module-otx.core.utils.build"]], "otx.core.utils.cache": [[95, "module-otx.core.utils.cache"]], "otx.core.utils.config": [[96, "module-otx.core.utils.config"]], "otx.core.utils.imports": [[97, "module-otx.core.utils.imports"]], "otx.core.utils.instantiators": [[98, "module-otx.core.utils.instantiators"]], "otx.core.utils.mask_util": [[99, "module-otx.core.utils.mask_util"]], "otx.core.utils.miscellaneous": [[100, "module-otx.core.utils.miscellaneous"]], "otx.core.utils.pylogger": [[101, "module-otx.core.utils.pylogger"]], "otx.core.utils.tile_merge": [[102, "module-otx.core.utils.tile_merge"]], "otx.core.utils.utils": [[103, "module-otx.core.utils.utils"]], "otx.data": [[104, "module-otx.data"]], "otx.engine": [[105, "module-otx.engine"]], "otx.hpo": [[106, "module-otx.hpo"]], "otx.recipe": [[107, "module-otx.recipe"]], "otx.tools": [[108, "module-otx.tools"]], "otx.tools.converter": [[109, "module-otx.tools.converter"]], "otx.tools.translate_mmrecipe": [[110, "module-otx.tools.translate_mmrecipe"]], "otx.utils": [[111, "module-otx.utils"]], "API reference": [[112, "api-reference"]], "Releases": [[113, "releases"]], "v2.0.0 (1Q24)": [[113, "v2-0-0-1q24"]], "v1.5.0 (4Q23)": [[113, "v1-5-0-4q23"]], "v1.4.4 (4Q23)": [[113, "v1-4-4-4q23"]], "v1.4.3 (4Q23)": [[113, "v1-4-3-4q23"]], "v1.4.2 (4Q23)": [[113, "v1-4-2-4q23"]], "v1.4.1 (3Q23)": [[113, "v1-4-1-3q23"]], "v1.4.0 (3Q23)": [[113, "v1-4-0-3q23"]], "v1.3.1 (2Q23)": [[113, "v1-3-1-2q23"]], "v1.3.0 (2Q23)": [[113, "v1-3-0-2q23"]], "v1.2.4 (3Q23)": [[113, "v1-2-4-3q23"]], "v1.2.3 (2Q23)": [[113, "v1-2-3-2q23"]], "v1.2.1 (2Q23)": [[113, "v1-2-1-2q23"]], "v1.2.0 (2Q23)": [[113, "v1-2-0-2q23"]], "v1.1.2 (2Q23)": [[113, "v1-1-2-2q23"]], "v1.1.1 (1Q23)": [[113, "v1-1-1-1q23"]], "v1.1.0 (1Q23)": [[113, "v1-1-0-1q23"]], "v1.0.1 (1Q23)": [[113, "v1-0-1-1q23"]], "v1.0.0 (1Q23)": [[113, "v1-0-0-1q23"]], "How to write OTX Configuration (recipe)": [[114, "how-to-write-otx-configuration-recipe"]], "Configuration": [[114, "configuration"]], "Advanced Tutorials": [[115, "advanced-tutorials"]], "XAI Tutorial": [[116, "xai-tutorial"]], "Deploy & Demo": [[117, "deploy-demo"]], "Export": [[117, "export"], [118, "export"], [120, "export"], [121, "export"], [122, "export"], [124, "export"], [125, "export"], [126, "export"]], "Deploy": [[117, "deploy"]], "Demonstration": [[117, "demonstration"]], "Action Classification model": [[118, "action-classification-model"]], "Setup virtual environment": [[118, "setup-virtual-environment"], [119, "setup-virtual-environment"], [121, "setup-virtual-environment"], [122, "setup-virtual-environment"], [124, "setup-virtual-environment"], [125, "setup-virtual-environment"], [126, "setup-virtual-environment"]], "Action Detection model": [[119, "action-detection-model"]], "Anomaly Detection Tutorial": [[120, "anomaly-detection-tutorial"]], "Setup the Virtual environment": [[120, "setup-the-virtual-environment"]], "Dataset Preparation": [[120, "dataset-preparation"]], "Segmentation and Classification": [[120, "segmentation-and-classification"]], "Classification model": [[121, "classification-model"]], "Object Detection model": [[122, "object-detection-model"]], "Training to deployment tutorials": [[123, "training-to-deployment-tutorials"]], "Instance Segmentation model": [[124, "instance-segmentation-model"]], "Validation": [[124, "validation"], [125, "validation"]], "Semantic Segmentation model": [[125, "semantic-segmentation-model"]], "Visual Prompting model": [[126, "visual-prompting-model"]], "Base Tutorials": [[127, "base-tutorials"]], "Welcome to Intel OpenVINO Training Extensions\u2019s develop documentation!": [[128, "welcome-to-intel-openvino-training-extensions-s-develop-documentation"]], "Indices and tables": [[128, "indices-and-tables"]]}, "indexentries": {"module": [[32, "module-otx"], [33, "module-otx.algo"], [34, "module-otx.algo.action_classification"], [35, "module-otx.algo.classification"], [36, "module-otx.algo.classification.backbones"], [37, "module-otx.algo.classification.heads"], [38, "module-otx.algo.classification.losses"], [39, "module-otx.algo.detection"], [40, "module-otx.algo.detection.backbones"], [41, "module-otx.algo.detection.backbones.pytorchcv_backbones"], [42, "module-otx.algo.detection.heads"], [43, "module-otx.algo.detection.losses"], [44, "module-otx.algo.segmentation"], [45, "module-otx.algo.segmentation.backbones"], [46, "module-otx.algo.segmentation.heads"], [47, "module-otx.algo.segmentation.losses"], [48, "module-otx.algo.visual_prompting"], [49, "module-otx.algo.visual_prompting.backbones"], [50, "module-otx.algo.visual_prompting.decoders"], [51, "module-otx.algo.visual_prompting.encoders"], [52, "module-otx.cli"], [53, "module-otx.cli.cli"], [54, "module-otx.cli.install"], [55, "module-otx.cli.utils"], [56, "module-otx.cli.utils.help_formatter"], [57, "module-otx.cli.utils.installation"], [58, "module-otx.cli.utils.jsonargparse"], [59, "module-otx.cli.utils.workspace"], [60, "module-otx.core"], [61, "module-otx.core.config"], [62, "module-otx.core.config.data"], [63, "module-otx.core.config.device"], [64, "module-otx.core.config.explain"], [65, "module-otx.core.config.hpo"], [66, "module-otx.core.data"], [67, "module-otx.core.exporter"], [68, "module-otx.core.exporter.base"], [69, "module-otx.core.exporter.exportable_code"], [70, "module-otx.core.exporter.exportable_code.demo"], [71, "module-otx.core.exporter.mmdeploy"], [72, "module-otx.core.exporter.native"], [73, "module-otx.core.exporter.visual_prompting"], [74, "module-otx.core.metrics"], [75, "module-otx.core.model"], [76, "module-otx.core.model.action_classification"], [77, "module-otx.core.model.action_detection"], [78, "module-otx.core.model.anomaly"], [79, "module-otx.core.model.base"], [80, "module-otx.core.model.classification"], [81, "module-otx.core.model.detection"], [82, "module-otx.core.model.instance_segmentation"], [83, "module-otx.core.model.rotated_detection"], [84, "module-otx.core.model.segmentation"], [85, "module-otx.core.model.utils"], [86, "module-otx.core.model.utils.mmaction"], [87, "module-otx.core.model.utils.mmdet"], [88, "module-otx.core.model.utils.mmpretrain"], [89, "module-otx.core.model.utils.mmseg"], [90, "module-otx.core.model.visual_prompting"], [91, "module-otx.core.schedulers"], [92, "module-otx.core.types"], [93, "module-otx.core.utils"], [94, "module-otx.core.utils.build"], [95, "module-otx.core.utils.cache"], [96, "module-otx.core.utils.config"], [97, "module-otx.core.utils.imports"], [98, "module-otx.core.utils.instantiators"], [99, "module-otx.core.utils.mask_util"], [100, "module-otx.core.utils.miscellaneous"], [101, "module-otx.core.utils.pylogger"], [102, "module-otx.core.utils.tile_merge"], [103, "module-otx.core.utils.utils"], [104, "module-otx.data"], [105, "module-otx.engine"], [106, "module-otx.hpo"], [107, "module-otx.recipe"], [108, "module-otx.tools"], [109, "module-otx.tools.converter"], [110, "module-otx.tools.translate_mmrecipe"], [111, "module-otx.utils"]], "otx": [[32, "module-otx"]], "otx.algo": [[33, "module-otx.algo"]], "movinethead (class in otx.algo.action_classification)": [[34, "otx.algo.action_classification.MoViNetHead"]], "movinetrecognizer (class in otx.algo.action_classification)": [[34, "otx.algo.action_classification.MoViNetRecognizer"]], "otxmovinet (class in otx.algo.action_classification)": [[34, "otx.algo.action_classification.OTXMoViNet"]], "otxovactioncls (class in otx.algo.action_classification)": [[34, "otx.algo.action_classification.OTXOVActionCls"]], "otxrecognizer3d (class in otx.algo.action_classification)": [[34, "otx.algo.action_classification.OTXRecognizer3D"]], "fill_conv() (otx.algo.action_classification.otxmovinet static method)": [[34, "otx.algo.action_classification.OTXMoViNet.fill_conv"]], "fill_se_config() (otx.algo.action_classification.otxmovinet static method)": [[34, "otx.algo.action_classification.OTXMoViNet.fill_se_config"]], "forward() (otx.algo.action_classification.movinethead method)": [[34, "otx.algo.action_classification.MoViNetHead.forward"]], "init_weights() (otx.algo.action_classification.movinethead method)": [[34, "otx.algo.action_classification.MoViNetHead.init_weights"]], "load_state_dict_pre_hook() (otx.algo.action_classification.movinetrecognizer static method)": [[34, "otx.algo.action_classification.MoViNetRecognizer.load_state_dict_pre_hook"]], "otx.algo.action_classification": [[34, "module-otx.algo.action_classification"]], "postprocess() (otx.algo.action_classification.otxovactioncls method)": [[34, "otx.algo.action_classification.OTXOVActionCls.postprocess"]], "preprocess() (otx.algo.action_classification.otxovactioncls method)": [[34, "otx.algo.action_classification.OTXOVActionCls.preprocess"]], "state_dict_hook() (otx.algo.action_classification.movinetrecognizer static method)": [[34, "otx.algo.action_classification.MoViNetRecognizer.state_dict_hook"]], "dinov2 (class in otx.algo.classification)": [[35, "otx.algo.classification.DINOv2"]], "dinov2registerclassifier (class in otx.algo.classification)": [[35, "otx.algo.classification.DINOv2RegisterClassifier"]], "forward() (otx.algo.classification.dinov2 method)": [[35, "otx.algo.classification.DINOv2.forward"]], "otx.algo.classification": [[35, "module-otx.algo.classification"]], "otxefficientnet (class in otx.algo.classification.backbones)": [[36, "otx.algo.classification.backbones.OTXEfficientNet"]], "otxefficientnetv2 (class in otx.algo.classification.backbones)": [[36, "otx.algo.classification.backbones.OTXEfficientNetV2"]], "otxmobilenetv3 (class in otx.algo.classification.backbones)": [[36, "otx.algo.classification.backbones.OTXMobileNetV3"]], "forward() (otx.algo.classification.backbones.otxefficientnet method)": [[36, "otx.algo.classification.backbones.OTXEfficientNet.forward"]], "forward() (otx.algo.classification.backbones.otxmobilenetv3 method)": [[36, "otx.algo.classification.backbones.OTXMobileNetV3.forward"]], "init_weights() (otx.algo.classification.backbones.otxefficientnet method)": [[36, "otx.algo.classification.backbones.OTXEfficientNet.init_weights"]], "init_weights() (otx.algo.classification.backbones.otxefficientnetv2 method)": [[36, "otx.algo.classification.backbones.OTXEfficientNetV2.init_weights"]], "init_weights() (otx.algo.classification.backbones.otxmobilenetv3 method)": [[36, "otx.algo.classification.backbones.OTXMobileNetV3.init_weights"]], "otx.algo.classification.backbones": [[36, "module-otx.algo.classification.backbones"]], "customhierarchicallinearclshead (class in otx.algo.classification.heads)": [[37, "otx.algo.classification.heads.CustomHierarchicalLinearClsHead"]], "customhierarchicalnonlinearclshead (class in otx.algo.classification.heads)": [[37, "otx.algo.classification.heads.CustomHierarchicalNonLinearClsHead"]], "custommultilabellinearclshead (class in otx.algo.classification.heads)": [[37, "otx.algo.classification.heads.CustomMultiLabelLinearClsHead"]], "custommultilabelnonlinearclshead (class in otx.algo.classification.heads)": [[37, "otx.algo.classification.heads.CustomMultiLabelNonLinearClsHead"]], "forward() (otx.algo.classification.heads.customhierarchicallinearclshead method)": [[37, "otx.algo.classification.heads.CustomHierarchicalLinearClsHead.forward"]], "forward() (otx.algo.classification.heads.customhierarchicalnonlinearclshead method)": [[37, "otx.algo.classification.heads.CustomHierarchicalNonLinearClsHead.forward"]], "forward() (otx.algo.classification.heads.custommultilabelnonlinearclshead method)": [[37, "otx.algo.classification.heads.CustomMultiLabelNonLinearClsHead.forward"]], "get_valid_label_mask() (otx.algo.classification.heads.customhierarchicallinearclshead method)": [[37, "otx.algo.classification.heads.CustomHierarchicalLinearClsHead.get_valid_label_mask"]], "get_valid_label_mask() (otx.algo.classification.heads.customhierarchicalnonlinearclshead method)": [[37, "otx.algo.classification.heads.CustomHierarchicalNonLinearClsHead.get_valid_label_mask"]], "get_valid_label_mask() (otx.algo.classification.heads.custommultilabellinearclshead method)": [[37, "otx.algo.classification.heads.CustomMultiLabelLinearClsHead.get_valid_label_mask"]], "get_valid_label_mask() (otx.algo.classification.heads.custommultilabelnonlinearclshead method)": [[37, "otx.algo.classification.heads.CustomMultiLabelNonLinearClsHead.get_valid_label_mask"]], "loss() (otx.algo.classification.heads.customhierarchicallinearclshead method)": [[37, "otx.algo.classification.heads.CustomHierarchicalLinearClsHead.loss"]], "loss() (otx.algo.classification.heads.customhierarchicalnonlinearclshead method)": [[37, "otx.algo.classification.heads.CustomHierarchicalNonLinearClsHead.loss"]], "loss() (otx.algo.classification.heads.custommultilabellinearclshead method)": [[37, "otx.algo.classification.heads.CustomMultiLabelLinearClsHead.loss"]], "loss() (otx.algo.classification.heads.custommultilabelnonlinearclshead method)": [[37, "otx.algo.classification.heads.CustomMultiLabelNonLinearClsHead.loss"]], "otx.algo.classification.heads": [[37, "module-otx.algo.classification.heads"]], "pre_logits() (otx.algo.classification.heads.customhierarchicallinearclshead method)": [[37, "otx.algo.classification.heads.CustomHierarchicalLinearClsHead.pre_logits"]], "pre_logits() (otx.algo.classification.heads.customhierarchicalnonlinearclshead method)": [[37, "otx.algo.classification.heads.CustomHierarchicalNonLinearClsHead.pre_logits"]], "predict() (otx.algo.classification.heads.customhierarchicallinearclshead method)": [[37, "otx.algo.classification.heads.CustomHierarchicalLinearClsHead.predict"]], "predict() (otx.algo.classification.heads.customhierarchicalnonlinearclshead method)": [[37, "otx.algo.classification.heads.CustomHierarchicalNonLinearClsHead.predict"]], "asymmetricangularlosswithignore (class in otx.algo.classification.losses)": [[38, "otx.algo.classification.losses.AsymmetricAngularLossWithIgnore"]], "forward() (otx.algo.classification.losses.asymmetricangularlosswithignore method)": [[38, "otx.algo.classification.losses.AsymmetricAngularLossWithIgnore.forward"]], "otx.algo.classification.losses": [[38, "module-otx.algo.classification.losses"]], "ssd (class in otx.algo.detection)": [[39, "otx.algo.detection.SSD"]], "get_classification_layers() (otx.algo.detection.ssd static method)": [[39, "otx.algo.detection.SSD.get_classification_layers"]], "load_from_otx_v1_ckpt() (otx.algo.detection.ssd method)": [[39, "otx.algo.detection.SSD.load_from_otx_v1_ckpt"]], "load_state_dict_pre_hook() (otx.algo.detection.ssd method)": [[39, "otx.algo.detection.SSD.load_state_dict_pre_hook"]], "otx.algo.detection": [[39, "module-otx.algo.detection"]], "setup() (otx.algo.detection.ssd method)": [[39, "otx.algo.detection.SSD.setup"]], "state_dict() (otx.algo.detection.ssd method)": [[39, "otx.algo.detection.SSD.state_dict"]], "otx.algo.detection.backbones": [[40, "module-otx.algo.detection.backbones"]], "init_weights() (in module otx.algo.detection.backbones.pytorchcv_backbones)": [[41, "otx.algo.detection.backbones.pytorchcv_backbones.init_weights"]], "multioutput_forward() (in module otx.algo.detection.backbones.pytorchcv_backbones)": [[41, "otx.algo.detection.backbones.pytorchcv_backbones.multioutput_forward"]], "otx.algo.detection.backbones.pytorchcv_backbones": [[41, "module-otx.algo.detection.backbones.pytorchcv_backbones"]], "replace_activation() (in module otx.algo.detection.backbones.pytorchcv_backbones)": [[41, "otx.algo.detection.backbones.pytorchcv_backbones.replace_activation"]], "replace_norm() (in module otx.algo.detection.backbones.pytorchcv_backbones)": [[41, "otx.algo.detection.backbones.pytorchcv_backbones.replace_norm"]], "train() (in module otx.algo.detection.backbones.pytorchcv_backbones)": [[41, "otx.algo.detection.backbones.pytorchcv_backbones.train"]], "customatsshead (class in otx.algo.detection.heads)": [[42, "otx.algo.detection.heads.CustomATSSHead"]], "customssdhead (class in otx.algo.detection.heads)": [[42, "otx.algo.detection.heads.CustomSSDHead"]], "ssdanchorgeneratorclustered (class in otx.algo.detection.heads)": [[42, "otx.algo.detection.heads.SSDAnchorGeneratorClustered"]], "gen_base_anchors() (otx.algo.detection.heads.ssdanchorgeneratorclustered method)": [[42, "otx.algo.detection.heads.SSDAnchorGeneratorClustered.gen_base_anchors"]], "gen_single_level_base_anchors() (otx.algo.detection.heads.ssdanchorgeneratorclustered method)": [[42, "otx.algo.detection.heads.SSDAnchorGeneratorClustered.gen_single_level_base_anchors"]], "get_targets() (otx.algo.detection.heads.customatsshead method)": [[42, "otx.algo.detection.heads.CustomATSSHead.get_targets"]], "loss_by_feat() (otx.algo.detection.heads.customatsshead method)": [[42, "otx.algo.detection.heads.CustomATSSHead.loss_by_feat"]], "loss_by_feat_single() (otx.algo.detection.heads.customatsshead method)": [[42, "otx.algo.detection.heads.CustomATSSHead.loss_by_feat_single"]], "otx.algo.detection.heads": [[42, "module-otx.algo.detection.heads"]], "otx.algo.detection.losses": [[43, "module-otx.algo.detection.losses"]], "otx.algo.segmentation": [[44, "module-otx.algo.segmentation"]], "dinovisiontransformer (class in otx.algo.segmentation.backbones)": [[45, "otx.algo.segmentation.backbones.DinoVisionTransformer"]], "litehrnet (class in otx.algo.segmentation.backbones)": [[45, "otx.algo.segmentation.backbones.LiteHRNet"]], "forward() (otx.algo.segmentation.backbones.dinovisiontransformer method)": [[45, "otx.algo.segmentation.backbones.DinoVisionTransformer.forward"]], "forward() (otx.algo.segmentation.backbones.litehrnet method)": [[45, "otx.algo.segmentation.backbones.LiteHRNet.forward"]], "init_weights() (otx.algo.segmentation.backbones.dinovisiontransformer method)": [[45, "otx.algo.segmentation.backbones.DinoVisionTransformer.init_weights"]], "otx.algo.segmentation.backbones": [[45, "module-otx.algo.segmentation.backbones"]], "customfcnhead (class in otx.algo.segmentation.heads)": [[46, "otx.algo.segmentation.heads.CustomFCNHead"]], "customlighthamhead (class in otx.algo.segmentation.heads)": [[46, "otx.algo.segmentation.heads.CustomLightHamHead"]], "otx.algo.segmentation.heads": [[46, "module-otx.algo.segmentation.heads"]], "crossentropylosswithignore (class in otx.algo.segmentation.losses)": [[47, "otx.algo.segmentation.losses.CrossEntropyLossWithIgnore"]], "forward() (otx.algo.segmentation.losses.crossentropylosswithignore method)": [[47, "otx.algo.segmentation.losses.CrossEntropyLossWithIgnore.forward"]], "loss_name (otx.algo.segmentation.losses.crossentropylosswithignore property)": [[47, "otx.algo.segmentation.losses.CrossEntropyLossWithIgnore.loss_name"]], "otx.algo.segmentation.losses": [[47, "module-otx.algo.segmentation.losses"]], "otxsegmentanything (class in otx.algo.visual_prompting)": [[48, "otx.algo.visual_prompting.OTXSegmentAnything"]], "otxzeroshotsegmentanything (class in otx.algo.visual_prompting)": [[48, "otx.algo.visual_prompting.OTXZeroShotSegmentAnything"]], "segmentanything (class in otx.algo.visual_prompting)": [[48, "otx.algo.visual_prompting.SegmentAnything"]], "visualpromptingdecoder (class in otx.algo.visual_prompting)": [[48, "otx.algo.visual_prompting.VisualPromptingDecoder"]], "visualpromptingimageencoder (class in otx.algo.visual_prompting)": [[48, "otx.algo.visual_prompting.VisualPromptingImageEncoder"]], "zeroshotsegmentanything (class in otx.algo.visual_prompting)": [[48, "otx.algo.visual_prompting.ZeroShotSegmentAnything"]], "apply_boxes() (otx.algo.visual_prompting.otxzeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.OTXZeroShotSegmentAnything.apply_boxes"]], "apply_coords() (otx.algo.visual_prompting.otxzeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.OTXZeroShotSegmentAnything.apply_coords"]], "apply_coords() (otx.algo.visual_prompting.visualpromptingdecoder method)": [[48, "otx.algo.visual_prompting.VisualPromptingDecoder.apply_coords"]], "apply_image() (otx.algo.visual_prompting.otxzeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.OTXZeroShotSegmentAnything.apply_image"]], "apply_points() (otx.algo.visual_prompting.otxzeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.OTXZeroShotSegmentAnything.apply_points"]], "apply_prompts() (otx.algo.visual_prompting.otxzeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.OTXZeroShotSegmentAnything.apply_prompts"]], "calculate_dice_loss() (otx.algo.visual_prompting.segmentanything method)": [[48, "otx.algo.visual_prompting.SegmentAnything.calculate_dice_loss"]], "calculate_iou() (otx.algo.visual_prompting.segmentanything method)": [[48, "otx.algo.visual_prompting.SegmentAnything.calculate_iou"]], "calculate_sigmoid_ce_focal_loss() (otx.algo.visual_prompting.segmentanything method)": [[48, "otx.algo.visual_prompting.SegmentAnything.calculate_sigmoid_ce_focal_loss"]], "calculate_stability_score() (otx.algo.visual_prompting.segmentanything method)": [[48, "otx.algo.visual_prompting.SegmentAnything.calculate_stability_score"]], "expand_reference_info() (otx.algo.visual_prompting.zeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.ZeroShotSegmentAnything.expand_reference_info"]], "forward() (otx.algo.visual_prompting.otxzeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.OTXZeroShotSegmentAnything.forward"]], "forward() (otx.algo.visual_prompting.segmentanything method)": [[48, "otx.algo.visual_prompting.SegmentAnything.forward"]], "forward_inference() (otx.algo.visual_prompting.segmentanything method)": [[48, "otx.algo.visual_prompting.SegmentAnything.forward_inference"]], "forward_train() (otx.algo.visual_prompting.segmentanything method)": [[48, "otx.algo.visual_prompting.SegmentAnything.forward_train"]], "freeze_networks() (otx.algo.visual_prompting.segmentanything method)": [[48, "otx.algo.visual_prompting.SegmentAnything.freeze_networks"]], "get_prepadded_size() (otx.algo.visual_prompting.segmentanything method)": [[48, "otx.algo.visual_prompting.SegmentAnything.get_prepadded_size"]], "get_preprocess_shape() (otx.algo.visual_prompting.otxzeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.OTXZeroShotSegmentAnything.get_preprocess_shape"]], "infer() (otx.algo.visual_prompting.otxzeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.OTXZeroShotSegmentAnything.infer"]], "infer() (otx.algo.visual_prompting.zeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.ZeroShotSegmentAnything.infer"]], "initialize_reference_info() (otx.algo.visual_prompting.otxzeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.OTXZeroShotSegmentAnything.initialize_reference_info"]], "learn() (otx.algo.visual_prompting.otxzeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.OTXZeroShotSegmentAnything.learn"]], "learn() (otx.algo.visual_prompting.zeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.ZeroShotSegmentAnything.learn"]], "load_checkpoint() (otx.algo.visual_prompting.segmentanything method)": [[48, "otx.algo.visual_prompting.SegmentAnything.load_checkpoint"]], "load_latest_reference_info() (otx.algo.visual_prompting.otxzeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.OTXZeroShotSegmentAnything.load_latest_reference_info"]], "otx.algo.visual_prompting": [[48, "module-otx.algo.visual_prompting"]], "pad_to_square() (otx.algo.visual_prompting.zeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.ZeroShotSegmentAnything.pad_to_square"]], "parameters() (otx.algo.visual_prompting.visualpromptingdecoder class method)": [[48, "otx.algo.visual_prompting.VisualPromptingDecoder.parameters"]], "parameters() (otx.algo.visual_prompting.visualpromptingimageencoder class method)": [[48, "otx.algo.visual_prompting.VisualPromptingImageEncoder.parameters"]], "postprocess() (otx.algo.visual_prompting.visualpromptingdecoder method)": [[48, "otx.algo.visual_prompting.VisualPromptingDecoder.postprocess"]], "postprocess_masks() (otx.algo.visual_prompting.segmentanything class method)": [[48, "otx.algo.visual_prompting.SegmentAnything.postprocess_masks"]], "preprocess() (otx.algo.visual_prompting.otxzeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.OTXZeroShotSegmentAnything.preprocess"]], "preprocess() (otx.algo.visual_prompting.visualpromptingdecoder method)": [[48, "otx.algo.visual_prompting.VisualPromptingDecoder.preprocess"]], "preprocess() (otx.algo.visual_prompting.visualpromptingimageencoder method)": [[48, "otx.algo.visual_prompting.VisualPromptingImageEncoder.preprocess"]], "select_masks() (otx.algo.visual_prompting.segmentanything method)": [[48, "otx.algo.visual_prompting.SegmentAnything.select_masks"]], "set_default_config() (otx.algo.visual_prompting.zeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.ZeroShotSegmentAnything.set_default_config"]], "transforms() (otx.algo.visual_prompting.otxzeroshotsegmentanything method)": [[48, "otx.algo.visual_prompting.OTXZeroShotSegmentAnything.transforms"]], "tinyvit (class in otx.algo.visual_prompting.backbones)": [[49, "otx.algo.visual_prompting.backbones.TinyViT"]], "vit (class in otx.algo.visual_prompting.backbones)": [[49, "otx.algo.visual_prompting.backbones.ViT"]], "forward() (otx.algo.visual_prompting.backbones.tinyvit method)": [[49, "otx.algo.visual_prompting.backbones.TinyViT.forward"]], "forward() (otx.algo.visual_prompting.backbones.vit method)": [[49, "otx.algo.visual_prompting.backbones.ViT.forward"]], "no_weight_decay_keywords() (otx.algo.visual_prompting.backbones.tinyvit method)": [[49, "otx.algo.visual_prompting.backbones.TinyViT.no_weight_decay_keywords"]], "otx.algo.visual_prompting.backbones": [[49, "module-otx.algo.visual_prompting.backbones"]], "set_layer_lr_decay() (otx.algo.visual_prompting.backbones.tinyvit method)": [[49, "otx.algo.visual_prompting.backbones.TinyViT.set_layer_lr_decay"]], "sammaskdecoder (class in otx.algo.visual_prompting.decoders)": [[50, "otx.algo.visual_prompting.decoders.SAMMaskDecoder"]], "forward() (otx.algo.visual_prompting.decoders.sammaskdecoder method)": [[50, "otx.algo.visual_prompting.decoders.SAMMaskDecoder.forward"]], "otx.algo.visual_prompting.decoders": [[50, "module-otx.algo.visual_prompting.decoders"]], "predict_masks() (otx.algo.visual_prompting.decoders.sammaskdecoder method)": [[50, "otx.algo.visual_prompting.decoders.SAMMaskDecoder.predict_masks"]], "samimageencoder (class in otx.algo.visual_prompting.encoders)": [[51, "otx.algo.visual_prompting.encoders.SAMImageEncoder"]], "sampromptencoder (class in otx.algo.visual_prompting.encoders)": [[51, "otx.algo.visual_prompting.encoders.SAMPromptEncoder"]], "forward() (otx.algo.visual_prompting.encoders.sampromptencoder method)": [[51, "otx.algo.visual_prompting.encoders.SAMPromptEncoder.forward"]], "get_dense_pe() (otx.algo.visual_prompting.encoders.sampromptencoder method)": [[51, "otx.algo.visual_prompting.encoders.SAMPromptEncoder.get_dense_pe"]], "otx.algo.visual_prompting.encoders": [[51, "module-otx.algo.visual_prompting.encoders"]], "main() (in module otx.cli)": [[52, "otx.cli.main"]], "otx.cli": [[52, "module-otx.cli"]], "otxcli (class in otx.cli.cli)": [[53, "otx.cli.cli.OTXCLI"]], "add_subcommands() (otx.cli.cli.otxcli method)": [[53, "otx.cli.cli.OTXCLI.add_subcommands"]], "engine_subcommand_parser() (otx.cli.cli.otxcli static method)": [[53, "otx.cli.cli.OTXCLI.engine_subcommand_parser"]], "engine_subcommands() (otx.cli.cli.otxcli static method)": [[53, "otx.cli.cli.OTXCLI.engine_subcommands"]], "get_config_value() (otx.cli.cli.otxcli method)": [[53, "otx.cli.cli.OTXCLI.get_config_value"]], "get_subcommand_parser() (otx.cli.cli.otxcli method)": [[53, "otx.cli.cli.OTXCLI.get_subcommand_parser"]], "init_parser() (otx.cli.cli.otxcli method)": [[53, "otx.cli.cli.OTXCLI.init_parser"]], "instantiate_classes() (otx.cli.cli.otxcli method)": [[53, "otx.cli.cli.OTXCLI.instantiate_classes"]], "instantiate_engine() (otx.cli.cli.otxcli method)": [[53, "otx.cli.cli.OTXCLI.instantiate_engine"]], "instantiate_model() (otx.cli.cli.otxcli method)": [[53, "otx.cli.cli.OTXCLI.instantiate_model"]], "otx.cli.cli": [[53, "module-otx.cli.cli"]], "prepare_subcommand_kwargs() (otx.cli.cli.otxcli method)": [[53, "otx.cli.cli.OTXCLI.prepare_subcommand_kwargs"]], "run() (otx.cli.cli.otxcli method)": [[53, "otx.cli.cli.OTXCLI.run"]], "save_config() (otx.cli.cli.otxcli method)": [[53, "otx.cli.cli.OTXCLI.save_config"]], "set_seed() (otx.cli.cli.otxcli method)": [[53, "otx.cli.cli.OTXCLI.set_seed"]], "update_latest() (otx.cli.cli.otxcli method)": [[53, "otx.cli.cli.OTXCLI.update_latest"]], "add_install_parser() (in module otx.cli.install)": [[54, "otx.cli.install.add_install_parser"]], "otx.cli.install": [[54, "module-otx.cli.install"]], "otx_install() (in module otx.cli.install)": [[54, "otx.cli.install.otx_install"]], "absolute_path() (in module otx.cli.utils)": [[55, "otx.cli.utils.absolute_path"]], "otx.cli.utils": [[55, "module-otx.cli.utils"]], "customhelpformatter (class in otx.cli.utils.help_formatter)": [[56, "otx.cli.utils.help_formatter.CustomHelpFormatter"]], "add_argument() (otx.cli.utils.help_formatter.customhelpformatter method)": [[56, "id0"], [56, "otx.cli.utils.help_formatter.CustomHelpFormatter.add_argument"]], "add_usage() (otx.cli.utils.help_formatter.customhelpformatter method)": [[56, "id1"], [56, "otx.cli.utils.help_formatter.CustomHelpFormatter.add_usage"]], "format_help() (otx.cli.utils.help_formatter.customhelpformatter method)": [[56, "id2"], [56, "otx.cli.utils.help_formatter.CustomHelpFormatter.format_help"]], "get_cli_usage_docstring() (in module otx.cli.utils.help_formatter)": [[56, "otx.cli.utils.help_formatter.get_cli_usage_docstring"]], "get_verbosity_subcommand() (in module otx.cli.utils.help_formatter)": [[56, "otx.cli.utils.help_formatter.get_verbosity_subcommand"]], "otx.cli.utils.help_formatter": [[56, "module-otx.cli.utils.help_formatter"]], "render_guide() (in module otx.cli.utils.help_formatter)": [[56, "otx.cli.utils.help_formatter.render_guide"]], "subcommand (otx.cli.utils.help_formatter.customhelpformatter attribute)": [[56, "otx.cli.utils.help_formatter.CustomHelpFormatter.subcommand"]], "verbosity_level (otx.cli.utils.help_formatter.customhelpformatter attribute)": [[56, "otx.cli.utils.help_formatter.CustomHelpFormatter.verbosity_level"]], "add_hardware_suffix_to_torch() (in module otx.cli.utils.installation)": [[57, "otx.cli.utils.installation.add_hardware_suffix_to_torch"]], "get_cuda_suffix() (in module otx.cli.utils.installation)": [[57, "otx.cli.utils.installation.get_cuda_suffix"]], "get_cuda_version() (in module otx.cli.utils.installation)": [[57, "otx.cli.utils.installation.get_cuda_version"]], "get_hardware_suffix() (in module otx.cli.utils.installation)": [[57, "otx.cli.utils.installation.get_hardware_suffix"]], "get_mmcv_install_args() (in module otx.cli.utils.installation)": [[57, "otx.cli.utils.installation.get_mmcv_install_args"]], "get_module_version() (in module otx.cli.utils.installation)": [[57, "otx.cli.utils.installation.get_module_version"]], "get_requirements() (in module otx.cli.utils.installation)": [[57, "otx.cli.utils.installation.get_requirements"]], "get_torch_install_args() (in module otx.cli.utils.installation)": [[57, "otx.cli.utils.installation.get_torch_install_args"]], "mim_installation() (in module otx.cli.utils.installation)": [[57, "otx.cli.utils.installation.mim_installation"]], "otx.cli.utils.installation": [[57, "module-otx.cli.utils.installation"]], "parse_requirements() (in module otx.cli.utils.installation)": [[57, "otx.cli.utils.installation.parse_requirements"]], "patch_mmaction2() (in module otx.cli.utils.installation)": [[57, "otx.cli.utils.installation.patch_mmaction2"]], "update_cuda_version_with_available_torch_cuda_build() (in module otx.cli.utils.installation)": [[57, "otx.cli.utils.installation.update_cuda_version_with_available_torch_cuda_build"]], "add_list_type_arguments() (in module otx.cli.utils.jsonargparse)": [[58, "otx.cli.utils.jsonargparse.add_list_type_arguments"]], "apply_config() (in module otx.cli.utils.jsonargparse)": [[58, "otx.cli.utils.jsonargparse.apply_config"]], "flatten_dict() (in module otx.cli.utils.jsonargparse)": [[58, "otx.cli.utils.jsonargparse.flatten_dict"]], "get_configuration() (in module otx.cli.utils.jsonargparse)": [[58, "otx.cli.utils.jsonargparse.get_configuration"]], "get_defaults_with_overrides() (in module otx.cli.utils.jsonargparse)": [[58, "otx.cli.utils.jsonargparse.get_defaults_with_overrides"]], "get_instantiated_classes() (in module otx.cli.utils.jsonargparse)": [[58, "otx.cli.utils.jsonargparse.get_instantiated_classes"]], "get_short_docstring() (in module otx.cli.utils.jsonargparse)": [[58, "otx.cli.utils.jsonargparse.get_short_docstring"]], "list_override() (in module otx.cli.utils.jsonargparse)": [[58, "otx.cli.utils.jsonargparse.list_override"]], "otx.cli.utils.jsonargparse": [[58, "module-otx.cli.utils.jsonargparse"]], "patch_update_configs() (in module otx.cli.utils.jsonargparse)": [[58, "otx.cli.utils.jsonargparse.patch_update_configs"]], "update() (in module otx.cli.utils.jsonargparse)": [[58, "otx.cli.utils.jsonargparse.update"]], "workspace (class in otx.cli.utils.workspace)": [[59, "otx.cli.utils.workspace.Workspace"]], "otx.cli.utils.workspace": [[59, "module-otx.cli.utils.workspace"]], "otx.core": [[60, "module-otx.core"]], "any_representer() (in module otx.core.config)": [[61, "otx.core.config.any_representer"]], "as_int_tuple() (in module otx.core.config)": [[61, "otx.core.config.as_int_tuple"]], "as_torch_dtype() (in module otx.core.config)": [[61, "otx.core.config.as_torch_dtype"]], "dtype_representer() (in module otx.core.config)": [[61, "otx.core.config.dtype_representer"]], "ignore_aliases() (in module otx.core.config)": [[61, "otx.core.config.ignore_aliases"]], "otx.core.config": [[61, "module-otx.core.config"]], "register_configs() (in module otx.core.config)": [[61, "otx.core.config.register_configs"]], "datamoduleconfig (class in otx.core.config.data)": [[62, "otx.core.config.data.DataModuleConfig"]], "samplerconfig (class in otx.core.config.data)": [[62, "otx.core.config.data.SamplerConfig"]], "subsetconfig (class in otx.core.config.data)": [[62, "otx.core.config.data.SubsetConfig"]], "tileconfig (class in otx.core.config.data)": [[62, "otx.core.config.data.TileConfig"]], "visualpromptingconfig (class in otx.core.config.data)": [[62, "otx.core.config.data.VisualPromptingConfig"]], "batch_size (otx.core.config.data.subsetconfig attribute)": [[62, "otx.core.config.data.SubsetConfig.batch_size"]], "num_workers (otx.core.config.data.subsetconfig attribute)": [[62, "otx.core.config.data.SubsetConfig.num_workers"]], "otx.core.config.data": [[62, "module-otx.core.config.data"]], "subset_name (otx.core.config.data.subsetconfig attribute)": [[62, "otx.core.config.data.SubsetConfig.subset_name"]], "transform_lib_type (otx.core.config.data.subsetconfig attribute)": [[62, "otx.core.config.data.SubsetConfig.transform_lib_type"]], "transforms (otx.core.config.data.subsetconfig attribute)": [[62, "otx.core.config.data.SubsetConfig.transforms"]], "deviceconfig (class in otx.core.config.device)": [[63, "otx.core.config.device.DeviceConfig"]], "otx.core.config.device": [[63, "module-otx.core.config.device"]], "explainconfig (class in otx.core.config.explain)": [[64, "otx.core.config.explain.ExplainConfig"]], "otx.core.config.explain": [[64, "module-otx.core.config.explain"]], "hpoconfig (class in otx.core.config.hpo)": [[65, "otx.core.config.hpo.HpoConfig"]], "otx.core.config.hpo": [[65, "module-otx.core.config.hpo"]], "otxdatamodule (class in otx.core.data)": [[66, "otx.core.data.OTXDataModule"]], "otxdatasetfactory (class in otx.core.data)": [[66, "otx.core.data.OTXDatasetFactory"]], "transformlibfactory (class in otx.core.data)": [[66, "otx.core.data.TransformLibFactory"]], "create() (otx.core.data.otxdatasetfactory class method)": [[66, "otx.core.data.OTXDatasetFactory.create"]], "generate() (otx.core.data.transformlibfactory class method)": [[66, "otx.core.data.TransformLibFactory.generate"]], "hparams_initial (otx.core.data.otxdatamodule property)": [[66, "otx.core.data.OTXDataModule.hparams_initial"]], "otx.core.data": [[66, "module-otx.core.data"]], "predict_dataloader() (otx.core.data.otxdatamodule method)": [[66, "otx.core.data.OTXDataModule.predict_dataloader"]], "setup() (otx.core.data.otxdatamodule method)": [[66, "otx.core.data.OTXDataModule.setup"]], "teardown() (otx.core.data.otxdatamodule method)": [[66, "otx.core.data.OTXDataModule.teardown"]], "test_dataloader() (otx.core.data.otxdatamodule method)": [[66, "otx.core.data.OTXDataModule.test_dataloader"]], "train_dataloader() (otx.core.data.otxdatamodule method)": [[66, "otx.core.data.OTXDataModule.train_dataloader"]], "val_dataloader() (otx.core.data.otxdatamodule method)": [[66, "otx.core.data.OTXDataModule.val_dataloader"]], "otx.core.exporter": [[67, "module-otx.core.exporter"]], "otxmodelexporter (class in otx.core.exporter.base)": [[68, "otx.core.exporter.base.OTXModelExporter"]], "export() (otx.core.exporter.base.otxmodelexporter method)": [[68, "otx.core.exporter.base.OTXModelExporter.export"]], "otx.core.exporter.base": [[68, "module-otx.core.exporter.base"]], "to_exportable_code() (otx.core.exporter.base.otxmodelexporter method)": [[68, "otx.core.exporter.base.OTXModelExporter.to_exportable_code"]], "to_onnx() (otx.core.exporter.base.otxmodelexporter method)": [[68, "otx.core.exporter.base.OTXModelExporter.to_onnx"]], "to_openvino() (otx.core.exporter.base.otxmodelexporter method)": [[68, "otx.core.exporter.base.OTXModelExporter.to_openvino"]], "otx.core.exporter.exportable_code": [[69, "module-otx.core.exporter.exportable_code"]], "otx.core.exporter.exportable_code.demo": [[70, "module-otx.core.exporter.exportable_code.demo"]], "mmdeployexporter (class in otx.core.exporter.mmdeploy)": [[71, "otx.core.exporter.mmdeploy.MMdeployExporter"]], "cvt_torch2onnx_partition() (otx.core.exporter.mmdeploy.mmdeployexporter method)": [[71, "otx.core.exporter.mmdeploy.MMdeployExporter.cvt_torch2onnx_partition"]], "load_mmconfig_from_pkg() (in module otx.core.exporter.mmdeploy)": [[71, "otx.core.exporter.mmdeploy.load_mmconfig_from_pkg"]], "mmdeploy_init_model_helper() (in module otx.core.exporter.mmdeploy)": [[71, "otx.core.exporter.mmdeploy.mmdeploy_init_model_helper"]], "otx.core.exporter.mmdeploy": [[71, "module-otx.core.exporter.mmdeploy"]], "patch_input_shape() (in module otx.core.exporter.mmdeploy)": [[71, "otx.core.exporter.mmdeploy.patch_input_shape"]], "patch_ir_scale_factor() (in module otx.core.exporter.mmdeploy)": [[71, "otx.core.exporter.mmdeploy.patch_ir_scale_factor"]], "to_onnx() (otx.core.exporter.mmdeploy.mmdeployexporter method)": [[71, "otx.core.exporter.mmdeploy.MMdeployExporter.to_onnx"]], "to_openvino() (otx.core.exporter.mmdeploy.mmdeployexporter method)": [[71, "otx.core.exporter.mmdeploy.MMdeployExporter.to_openvino"]], "use_temporary_default_scope() (in module otx.core.exporter.mmdeploy)": [[71, "otx.core.exporter.mmdeploy.use_temporary_default_scope"]], "otxnativemodelexporter (class in otx.core.exporter.native)": [[72, "otx.core.exporter.native.OTXNativeModelExporter"]], "otx.core.exporter.native": [[72, "module-otx.core.exporter.native"]], "to_onnx() (otx.core.exporter.native.otxnativemodelexporter method)": [[72, "otx.core.exporter.native.OTXNativeModelExporter.to_onnx"]], "to_openvino() (otx.core.exporter.native.otxnativemodelexporter method)": [[72, "otx.core.exporter.native.OTXNativeModelExporter.to_openvino"]], "otxvisualpromptingmodelexporter (class in otx.core.exporter.visual_prompting)": [[73, "otx.core.exporter.visual_prompting.OTXVisualPromptingModelExporter"]], "export() (otx.core.exporter.visual_prompting.otxvisualpromptingmodelexporter method)": [[73, "otx.core.exporter.visual_prompting.OTXVisualPromptingModelExporter.export"]], "get_onnx_dummy_inputs() (otx.core.exporter.visual_prompting.otxvisualpromptingmodelexporter method)": [[73, "otx.core.exporter.visual_prompting.OTXVisualPromptingModelExporter.get_onnx_dummy_inputs"]], "otx.core.exporter.visual_prompting": [[73, "module-otx.core.exporter.visual_prompting"]], "to_onnx() (otx.core.exporter.visual_prompting.otxvisualpromptingmodelexporter method)": [[73, "otx.core.exporter.visual_prompting.OTXVisualPromptingModelExporter.to_onnx"]], "to_openvino() (otx.core.exporter.visual_prompting.otxvisualpromptingmodelexporter method)": [[73, "otx.core.exporter.visual_prompting.OTXVisualPromptingModelExporter.to_openvino"]], "otx.core.metrics": [[74, "module-otx.core.metrics"]], "otx.core.model": [[75, "module-otx.core.model"]], "mmactioncompatiblemodel (class in otx.core.model.action_classification)": [[76, "otx.core.model.action_classification.MMActionCompatibleModel"]], "otxactionclsmodel (class in otx.core.model.action_classification)": [[76, "otx.core.model.action_classification.OTXActionClsModel"]], "ovactionclsmodel (class in otx.core.model.action_classification)": [[76, "otx.core.model.action_classification.OVActionClsModel"]], "model_adapter_parameters (otx.core.model.action_classification.ovactionclsmodel property)": [[76, "otx.core.model.action_classification.OVActionClsModel.model_adapter_parameters"]], "otx.core.model.action_classification": [[76, "module-otx.core.model.action_classification"]], "transform_fn() (otx.core.model.action_classification.ovactionclsmodel method)": [[76, "otx.core.model.action_classification.OVActionClsModel.transform_fn"]], "mmactioncompatiblemodel (class in otx.core.model.action_detection)": [[77, "otx.core.model.action_detection.MMActionCompatibleModel"]], "otxactiondetmodel (class in otx.core.model.action_detection)": [[77, "otx.core.model.action_detection.OTXActionDetModel"]], "otx.core.model.action_detection": [[77, "module-otx.core.model.action_detection"]], "otxanomaly (class in otx.core.model.anomaly)": [[78, "otx.core.model.anomaly.OTXAnomaly"]], "configure_callbacks() (otx.core.model.anomaly.otxanomaly method)": [[78, "otx.core.model.anomaly.OTXAnomaly.configure_callbacks"]], "configure_optimizers() (otx.core.model.anomaly.otxanomaly method)": [[78, "otx.core.model.anomaly.OTXAnomaly.configure_optimizers"]], "export() (otx.core.model.anomaly.otxanomaly method)": [[78, "otx.core.model.anomaly.OTXAnomaly.export"]], "forward() (otx.core.model.anomaly.otxanomaly method)": [[78, "otx.core.model.anomaly.OTXAnomaly.forward"]], "input_size (otx.core.model.anomaly.otxanomaly property)": [[78, "otx.core.model.anomaly.OTXAnomaly.input_size"]], "label_info (otx.core.model.anomaly.otxanomaly property)": [[78, "otx.core.model.anomaly.OTXAnomaly.label_info"]], "load_state_dict() (otx.core.model.anomaly.otxanomaly method)": [[78, "otx.core.model.anomaly.OTXAnomaly.load_state_dict"]], "on_predict_batch_end() (otx.core.model.anomaly.otxanomaly method)": [[78, "otx.core.model.anomaly.OTXAnomaly.on_predict_batch_end"]], "on_test_batch_end() (otx.core.model.anomaly.otxanomaly method)": [[78, "otx.core.model.anomaly.OTXAnomaly.on_test_batch_end"]], "otx.core.model.anomaly": [[78, "module-otx.core.model.anomaly"]], "predict_step() (otx.core.model.anomaly.otxanomaly method)": [[78, "otx.core.model.anomaly.OTXAnomaly.predict_step"]], "setup() (otx.core.model.anomaly.otxanomaly method)": [[78, "otx.core.model.anomaly.OTXAnomaly.setup"]], "state_dict() (otx.core.model.anomaly.otxanomaly method)": [[78, "otx.core.model.anomaly.OTXAnomaly.state_dict"]], "task (otx.core.model.anomaly.otxanomaly property)": [[78, "otx.core.model.anomaly.OTXAnomaly.task"]], "trainable_model (otx.core.model.anomaly.otxanomaly property)": [[78, "otx.core.model.anomaly.OTXAnomaly.trainable_model"]], "otxmodel (class in otx.core.model.base)": [[79, "otx.core.model.base.OTXModel"]], "ovmodel (class in otx.core.model.base)": [[79, "otx.core.model.base.OVModel"]], "configure_metric() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.configure_metric"]], "configure_optimizers() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.configure_optimizers"]], "explain_mode (otx.core.model.base.otxmodel attribute)": [[79, "otx.core.model.base.OTXModel.explain_mode"]], "explain_mode (otx.core.model.base.otxmodel property)": [[79, "id0"]], "export() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.export"]], "forward() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.forward"]], "forward() (otx.core.model.base.ovmodel method)": [[79, "otx.core.model.base.OVModel.forward"]], "forward_explain() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.forward_explain"]], "forward_explain() (otx.core.model.base.ovmodel method)": [[79, "otx.core.model.base.OVModel.forward_explain"]], "forward_tiles() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.forward_tiles"]], "get_explain_fn() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.get_explain_fn"]], "label_info (otx.core.model.base.otxmodel property)": [[79, "otx.core.model.base.OTXModel.label_info"]], "load_from_otx_v1_ckpt() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.load_from_otx_v1_ckpt"]], "load_state_dict() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.load_state_dict"]], "load_state_dict_pre_hook() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.load_state_dict_pre_hook"]], "lr_scheduler_step() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.lr_scheduler_step"]], "map_class_names() (otx.core.model.base.otxmodel static method)": [[79, "otx.core.model.base.OTXModel.map_class_names"]], "metric (otx.core.model.base.otxmodel property)": [[79, "otx.core.model.base.OTXModel.metric"]], "model_adapter_parameters (otx.core.model.base.ovmodel property)": [[79, "otx.core.model.base.OVModel.model_adapter_parameters"]], "num_classes (otx.core.model.base.otxmodel property)": [[79, "otx.core.model.base.OTXModel.num_classes"]], "on_test_epoch_end() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.on_test_epoch_end"]], "on_test_epoch_start() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.on_test_epoch_start"]], "on_test_start() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.on_test_start"]], "on_validation_epoch_end() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.on_validation_epoch_end"]], "on_validation_epoch_start() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.on_validation_epoch_start"]], "on_validation_start() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.on_validation_start"]], "optimize() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.optimize"]], "optimize() (otx.core.model.base.ovmodel method)": [[79, "otx.core.model.base.OVModel.optimize"]], "otx.core.model.base": [[79, "module-otx.core.model.base"]], "predict_step() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.predict_step"]], "register_load_state_dict_pre_hook() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.register_load_state_dict_pre_hook"]], "setup() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.setup"]], "state_dict() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.state_dict"]], "test_step() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.test_step"]], "training_step() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.training_step"]], "transform_fn() (otx.core.model.base.ovmodel method)": [[79, "otx.core.model.base.OVModel.transform_fn"]], "validation_step() (otx.core.model.base.otxmodel method)": [[79, "otx.core.model.base.OTXModel.validation_step"]], "mmpretrainhlabelclsmodel (class in otx.core.model.classification)": [[80, "otx.core.model.classification.MMPretrainHlabelClsModel"]], "mmpretrainmulticlassclsmodel (class in otx.core.model.classification)": [[80, "otx.core.model.classification.MMPretrainMulticlassClsModel"]], "mmpretrainmultilabelclsmodel (class in otx.core.model.classification)": [[80, "otx.core.model.classification.MMPretrainMultilabelClsModel"]], "otxhlabelclsmodel (class in otx.core.model.classification)": [[80, "otx.core.model.classification.OTXHlabelClsModel"]], "otxmulticlassclsmodel (class in otx.core.model.classification)": [[80, "otx.core.model.classification.OTXMulticlassClsModel"]], "otxmultilabelclsmodel (class in otx.core.model.classification)": [[80, "otx.core.model.classification.OTXMultilabelClsModel"]], "ovhlabelclassificationmodel (class in otx.core.model.classification)": [[80, "otx.core.model.classification.OVHlabelClassificationModel"]], "ovmulticlassclassificationmodel (class in otx.core.model.classification)": [[80, "otx.core.model.classification.OVMulticlassClassificationModel"]], "ovmultilabelclassificationmodel (class in otx.core.model.classification)": [[80, "otx.core.model.classification.OVMultilabelClassificationModel"]], "otx.core.model.classification": [[80, "module-otx.core.model.classification"]], "explainableotxdetmodel (class in otx.core.model.detection)": [[81, "otx.core.model.detection.ExplainableOTXDetModel"]], "mmdetcompatiblemodel (class in otx.core.model.detection)": [[81, "otx.core.model.detection.MMDetCompatibleModel"]], "otxdetectionmodel (class in otx.core.model.detection)": [[81, "otx.core.model.detection.OTXDetectionModel"]], "ovdetectionmodel (class in otx.core.model.detection)": [[81, "otx.core.model.detection.OVDetectionModel"]], "forward_explain() (otx.core.model.detection.explainableotxdetmodel method)": [[81, "otx.core.model.detection.ExplainableOTXDetModel.forward_explain"]], "forward_tiles() (otx.core.model.detection.otxdetectionmodel method)": [[81, "otx.core.model.detection.OTXDetectionModel.forward_tiles"]], "get_explain_fn() (otx.core.model.detection.explainableotxdetmodel method)": [[81, "otx.core.model.detection.ExplainableOTXDetModel.get_explain_fn"]], "get_num_anchors() (otx.core.model.detection.explainableotxdetmodel method)": [[81, "otx.core.model.detection.ExplainableOTXDetModel.get_num_anchors"]], "load_state_dict() (otx.core.model.detection.otxdetectionmodel method)": [[81, "otx.core.model.detection.OTXDetectionModel.load_state_dict"]], "otx.core.model.detection": [[81, "module-otx.core.model.detection"]], "explainableotxinstancesegmodel (class in otx.core.model.instance_segmentation)": [[82, "otx.core.model.instance_segmentation.ExplainableOTXInstanceSegModel"]], "mmdetinstancesegcompatiblemodel (class in otx.core.model.instance_segmentation)": [[82, "otx.core.model.instance_segmentation.MMDetInstanceSegCompatibleModel"]], "otxinstancesegmodel (class in otx.core.model.instance_segmentation)": [[82, "otx.core.model.instance_segmentation.OTXInstanceSegModel"]], "ovinstancesegmentationmodel (class in otx.core.model.instance_segmentation)": [[82, "otx.core.model.instance_segmentation.OVInstanceSegmentationModel"]], "forward_explain() (otx.core.model.instance_segmentation.explainableotxinstancesegmodel method)": [[82, "otx.core.model.instance_segmentation.ExplainableOTXInstanceSegModel.forward_explain"]], "forward_tiles() (otx.core.model.instance_segmentation.otxinstancesegmodel method)": [[82, "otx.core.model.instance_segmentation.OTXInstanceSegModel.forward_tiles"]], "get_explain_fn() (otx.core.model.instance_segmentation.explainableotxinstancesegmodel method)": [[82, "otx.core.model.instance_segmentation.ExplainableOTXInstanceSegModel.get_explain_fn"]], "load_state_dict() (otx.core.model.instance_segmentation.otxinstancesegmodel method)": [[82, "otx.core.model.instance_segmentation.OTXInstanceSegModel.load_state_dict"]], "otx.core.model.instance_segmentation": [[82, "module-otx.core.model.instance_segmentation"]], "mmdetrotateddetmodel (class in otx.core.model.rotated_detection)": [[83, "otx.core.model.rotated_detection.MMDetRotatedDetModel"]], "otxrotateddetmodel (class in otx.core.model.rotated_detection)": [[83, "otx.core.model.rotated_detection.OTXRotatedDetModel"]], "ovrotateddetectionmodel (class in otx.core.model.rotated_detection)": [[83, "otx.core.model.rotated_detection.OVRotatedDetectionModel"]], "otx.core.model.rotated_detection": [[83, "module-otx.core.model.rotated_detection"]], "predict_step() (otx.core.model.rotated_detection.otxrotateddetmodel method)": [[83, "otx.core.model.rotated_detection.OTXRotatedDetModel.predict_step"]], "mmsegcompatiblemodel (class in otx.core.model.segmentation)": [[84, "otx.core.model.segmentation.MMSegCompatibleModel"]], "otxsegmentationmodel (class in otx.core.model.segmentation)": [[84, "otx.core.model.segmentation.OTXSegmentationModel"]], "ovsegmentationmodel (class in otx.core.model.segmentation)": [[84, "otx.core.model.segmentation.OVSegmentationModel"]], "otx.core.model.segmentation": [[84, "module-otx.core.model.segmentation"]], "otx.core.model.utils": [[85, "module-otx.core.model.utils"]], "actiondatapreprocessor (class in otx.core.model.utils.mmaction)": [[86, "otx.core.model.utils.mmaction.ActionDataPreprocessor"]], "create_model() (in module otx.core.model.utils.mmaction)": [[86, "otx.core.model.utils.mmaction.create_model"]], "device (otx.core.model.utils.mmaction.actiondatapreprocessor property)": [[86, "otx.core.model.utils.mmaction.ActionDataPreprocessor.device"]], "otx.core.model.utils.mmaction": [[86, "module-otx.core.model.utils.mmaction"]], "detdatapreprocessor (class in otx.core.model.utils.mmdet)": [[87, "otx.core.model.utils.mmdet.DetDataPreprocessor"]], "create_model() (in module otx.core.model.utils.mmdet)": [[87, "otx.core.model.utils.mmdet.create_model"]], "device (otx.core.model.utils.mmdet.detdatapreprocessor property)": [[87, "otx.core.model.utils.mmdet.DetDataPreprocessor.device"]], "otx.core.model.utils.mmdet": [[87, "module-otx.core.model.utils.mmdet"]], "clsdatapreprocessor (class in otx.core.model.utils.mmpretrain)": [[88, "otx.core.model.utils.mmpretrain.ClsDataPreprocessor"]], "explainablemixinmmpretrainmodel (class in otx.core.model.utils.mmpretrain)": [[88, "otx.core.model.utils.mmpretrain.ExplainableMixInMMPretrainModel"]], "create_model() (in module otx.core.model.utils.mmpretrain)": [[88, "otx.core.model.utils.mmpretrain.create_model"]], "device (otx.core.model.utils.mmpretrain.clsdatapreprocessor property)": [[88, "otx.core.model.utils.mmpretrain.ClsDataPreprocessor.device"]], "forward_explain() (otx.core.model.utils.mmpretrain.explainablemixinmmpretrainmodel method)": [[88, "otx.core.model.utils.mmpretrain.ExplainableMixInMMPretrainModel.forward_explain"]], "get_explain_fn() (otx.core.model.utils.mmpretrain.explainablemixinmmpretrainmodel method)": [[88, "otx.core.model.utils.mmpretrain.ExplainableMixInMMPretrainModel.get_explain_fn"]], "has_gap (otx.core.model.utils.mmpretrain.explainablemixinmmpretrainmodel property)": [[88, "otx.core.model.utils.mmpretrain.ExplainableMixInMMPretrainModel.has_gap"]], "head_forward_fn() (otx.core.model.utils.mmpretrain.explainablemixinmmpretrainmodel method)": [[88, "otx.core.model.utils.mmpretrain.ExplainableMixInMMPretrainModel.head_forward_fn"]], "otx.core.model.utils.mmpretrain": [[88, "module-otx.core.model.utils.mmpretrain"]], "segdatapreprocessor (class in otx.core.model.utils.mmseg)": [[89, "otx.core.model.utils.mmseg.SegDataPreProcessor"]], "create_model() (in module otx.core.model.utils.mmseg)": [[89, "otx.core.model.utils.mmseg.create_model"]], "device (otx.core.model.utils.mmseg.segdatapreprocessor property)": [[89, "otx.core.model.utils.mmseg.SegDataPreProcessor.device"]], "forward() (otx.core.model.utils.mmseg.segdatapreprocessor method)": [[89, "otx.core.model.utils.mmseg.SegDataPreProcessor.forward"]], "otx.core.model.utils.mmseg": [[89, "module-otx.core.model.utils.mmseg"]], "stack_batch() (in module otx.core.model.utils.mmseg)": [[89, "otx.core.model.utils.mmseg.stack_batch"]], "otxvisualpromptingmodel (class in otx.core.model.visual_prompting)": [[90, "otx.core.model.visual_prompting.OTXVisualPromptingModel"]], "otxzeroshotvisualpromptingmodel (class in otx.core.model.visual_prompting)": [[90, "otx.core.model.visual_prompting.OTXZeroShotVisualPromptingModel"]], "ovvisualpromptingmodel (class in otx.core.model.visual_prompting)": [[90, "otx.core.model.visual_prompting.OVVisualPromptingModel"]], "ovzeroshotvisualpromptingmodel (class in otx.core.model.visual_prompting)": [[90, "otx.core.model.visual_prompting.OVZeroShotVisualPromptingModel"]], "configure_optimizers() (otx.core.model.visual_prompting.otxzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OTXZeroShotVisualPromptingModel.configure_optimizers"]], "expand_reference_info() (otx.core.model.visual_prompting.ovzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OVZeroShotVisualPromptingModel.expand_reference_info"]], "forward() (otx.core.model.visual_prompting.ovvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OVVisualPromptingModel.forward"]], "forward() (otx.core.model.visual_prompting.ovzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OVZeroShotVisualPromptingModel.forward"]], "infer() (otx.core.model.visual_prompting.ovzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OVZeroShotVisualPromptingModel.infer"]], "initialize_reference_info() (otx.core.model.visual_prompting.ovzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OVZeroShotVisualPromptingModel.initialize_reference_info"]], "learn() (otx.core.model.visual_prompting.ovzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OVZeroShotVisualPromptingModel.learn"]], "load_latest_reference_info() (otx.core.model.visual_prompting.ovzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OVZeroShotVisualPromptingModel.load_latest_reference_info"]], "on_predict_start() (otx.core.model.visual_prompting.otxzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OTXZeroShotVisualPromptingModel.on_predict_start"]], "on_test_start() (otx.core.model.visual_prompting.otxzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OTXZeroShotVisualPromptingModel.on_test_start"]], "on_train_epoch_end() (otx.core.model.visual_prompting.otxzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OTXZeroShotVisualPromptingModel.on_train_epoch_end"]], "on_train_epoch_start() (otx.core.model.visual_prompting.otxzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OTXZeroShotVisualPromptingModel.on_train_epoch_start"]], "on_train_start() (otx.core.model.visual_prompting.otxzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OTXZeroShotVisualPromptingModel.on_train_start"]], "on_validation_epoch_end() (otx.core.model.visual_prompting.otxzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OTXZeroShotVisualPromptingModel.on_validation_epoch_end"]], "on_validation_epoch_start() (otx.core.model.visual_prompting.otxzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OTXZeroShotVisualPromptingModel.on_validation_epoch_start"]], "optimize() (otx.core.model.visual_prompting.ovvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OVVisualPromptingModel.optimize"]], "otx.core.model.visual_prompting": [[90, "module-otx.core.model.visual_prompting"]], "test_step() (otx.core.model.visual_prompting.otxvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OTXVisualPromptingModel.test_step"]], "test_step() (otx.core.model.visual_prompting.otxzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OTXZeroShotVisualPromptingModel.test_step"]], "test_step() (otx.core.model.visual_prompting.ovvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OVVisualPromptingModel.test_step"]], "test_step() (otx.core.model.visual_prompting.ovzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OVZeroShotVisualPromptingModel.test_step"]], "training_step() (otx.core.model.visual_prompting.otxzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OTXZeroShotVisualPromptingModel.training_step"]], "validation_step() (otx.core.model.visual_prompting.otxvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OTXVisualPromptingModel.validation_step"]], "validation_step() (otx.core.model.visual_prompting.otxzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OTXZeroShotVisualPromptingModel.validation_step"]], "validation_step() (otx.core.model.visual_prompting.ovvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OVVisualPromptingModel.validation_step"]], "validation_step() (otx.core.model.visual_prompting.ovzeroshotvisualpromptingmodel method)": [[90, "otx.core.model.visual_prompting.OVZeroShotVisualPromptingModel.validation_step"]], "linearwarmupscheduler (class in otx.core.schedulers)": [[91, "otx.core.schedulers.LinearWarmupScheduler"]], "linearwarmupschedulercallable (class in otx.core.schedulers)": [[91, "otx.core.schedulers.LinearWarmupSchedulerCallable"]], "__call__() (otx.core.schedulers.linearwarmupschedulercallable method)": [[91, "otx.core.schedulers.LinearWarmupSchedulerCallable.__call__"]], "activated (otx.core.schedulers.linearwarmupscheduler property)": [[91, "otx.core.schedulers.LinearWarmupScheduler.activated"]], "otx.core.schedulers": [[91, "module-otx.core.schedulers"]], "step() (otx.core.schedulers.linearwarmupscheduler method)": [[91, "otx.core.schedulers.LinearWarmupScheduler.step"]], "hlabelinfo (class in otx.core.types)": [[92, "otx.core.types.HLabelInfo"]], "labelinfo (class in otx.core.types)": [[92, "otx.core.types.LabelInfo"]], "nulllabelinfo (class in otx.core.types)": [[92, "otx.core.types.NullLabelInfo"]], "otxtasktype (class in otx.core.types)": [[92, "otx.core.types.OTXTaskType"]], "seglabelinfo (class in otx.core.types)": [[92, "otx.core.types.SegLabelInfo"]], "as_dict() (otx.core.types.labelinfo method)": [[92, "otx.core.types.LabelInfo.as_dict"]], "as_head_config_dict() (otx.core.types.hlabelinfo method)": [[92, "otx.core.types.HLabelInfo.as_head_config_dict"]], "from_dm_label_groups() (otx.core.types.hlabelinfo class method)": [[92, "otx.core.types.HLabelInfo.from_dm_label_groups"]], "from_dm_label_groups() (otx.core.types.labelinfo class method)": [[92, "otx.core.types.LabelInfo.from_dm_label_groups"]], "from_json() (otx.core.types.hlabelinfo class method)": [[92, "otx.core.types.HLabelInfo.from_json"]], "from_json() (otx.core.types.labelinfo class method)": [[92, "otx.core.types.LabelInfo.from_json"]], "from_json() (otx.core.types.nulllabelinfo class method)": [[92, "otx.core.types.NullLabelInfo.from_json"]], "from_num_classes() (otx.core.types.labelinfo class method)": [[92, "otx.core.types.LabelInfo.from_num_classes"]], "num_classes (otx.core.types.labelinfo property)": [[92, "otx.core.types.LabelInfo.num_classes"]], "otx.core.types": [[92, "module-otx.core.types"]], "to_json() (otx.core.types.labelinfo method)": [[92, "otx.core.types.LabelInfo.to_json"]], "otx.core.utils": [[93, "module-otx.core.utils"]], "build_mm_model() (in module otx.core.utils.build)": [[94, "otx.core.utils.build.build_mm_model"]], "get_classification_layers() (in module otx.core.utils.build)": [[94, "otx.core.utils.build.get_classification_layers"]], "get_default_num_async_infer_requests() (in module otx.core.utils.build)": [[94, "otx.core.utils.build.get_default_num_async_infer_requests"]], "modify_num_classes() (in module otx.core.utils.build)": [[94, "otx.core.utils.build.modify_num_classes"]], "otx.core.utils.build": [[94, "module-otx.core.utils.build"]], "trainerargumentscache (class in otx.core.utils.cache)": [[95, "otx.core.utils.cache.TrainerArgumentsCache"]], "args (otx.core.utils.cache.trainerargumentscache property)": [[95, "otx.core.utils.cache.TrainerArgumentsCache.args"]], "get_trainer_constructor_args() (otx.core.utils.cache.trainerargumentscache static method)": [[95, "otx.core.utils.cache.TrainerArgumentsCache.get_trainer_constructor_args"]], "otx.core.utils.cache": [[95, "module-otx.core.utils.cache"]], "requires_update() (otx.core.utils.cache.trainerargumentscache method)": [[95, "otx.core.utils.cache.TrainerArgumentsCache.requires_update"]], "update() (otx.core.utils.cache.trainerargumentscache method)": [[95, "otx.core.utils.cache.TrainerArgumentsCache.update"]], "convert_conf_to_mmconfig_dict() (in module otx.core.utils.config)": [[96, "otx.core.utils.config.convert_conf_to_mmconfig_dict"]], "inplace_num_classes() (in module otx.core.utils.config)": [[96, "otx.core.utils.config.inplace_num_classes"]], "mmconfig_dict_to_dict() (in module otx.core.utils.config)": [[96, "otx.core.utils.config.mmconfig_dict_to_dict"]], "otx.core.utils.config": [[96, "module-otx.core.utils.config"]], "to_list() (in module otx.core.utils.config)": [[96, "otx.core.utils.config.to_list"]], "to_tuple() (in module otx.core.utils.config)": [[96, "otx.core.utils.config.to_tuple"]], "get_otx_root_path() (in module otx.core.utils.imports)": [[97, "otx.core.utils.imports.get_otx_root_path"]], "otx.core.utils.imports": [[97, "module-otx.core.utils.imports"]], "instantiate_callbacks() (in module otx.core.utils.instantiators)": [[98, "otx.core.utils.instantiators.instantiate_callbacks"]], "instantiate_loggers() (in module otx.core.utils.instantiators)": [[98, "otx.core.utils.instantiators.instantiate_loggers"]], "instantiate_sampler() (in module otx.core.utils.instantiators)": [[98, "otx.core.utils.instantiators.instantiate_sampler"]], "otx.core.utils.instantiators": [[98, "module-otx.core.utils.instantiators"]], "partial_instantiate_class() (in module otx.core.utils.instantiators)": [[98, "otx.core.utils.instantiators.partial_instantiate_class"]], "encode_rle() (in module otx.core.utils.mask_util)": [[99, "otx.core.utils.mask_util.encode_rle"]], "otx.core.utils.mask_util": [[99, "module-otx.core.utils.mask_util"]], "polygon_to_bitmap() (in module otx.core.utils.mask_util)": [[99, "otx.core.utils.mask_util.polygon_to_bitmap"]], "polygon_to_rle() (in module otx.core.utils.mask_util)": [[99, "otx.core.utils.mask_util.polygon_to_rle"]], "ensure_callable() (in module otx.core.utils.miscellaneous)": [[100, "otx.core.utils.miscellaneous.ensure_callable"]], "otx.core.utils.miscellaneous": [[100, "module-otx.core.utils.miscellaneous"]], "get_pylogger() (in module otx.core.utils.pylogger)": [[101, "otx.core.utils.pylogger.get_pylogger"]], "otx.core.utils.pylogger": [[101, "module-otx.core.utils.pylogger"]], "detectiontilemerge (class in otx.core.utils.tile_merge)": [[102, "otx.core.utils.tile_merge.DetectionTileMerge"]], "instancesegtilemerge (class in otx.core.utils.tile_merge)": [[102, "otx.core.utils.tile_merge.InstanceSegTileMerge"]], "tilemerge (class in otx.core.utils.tile_merge)": [[102, "otx.core.utils.tile_merge.TileMerge"]], "merge() (otx.core.utils.tile_merge.detectiontilemerge method)": [[102, "otx.core.utils.tile_merge.DetectionTileMerge.merge"]], "merge() (otx.core.utils.tile_merge.instancesegtilemerge method)": [[102, "otx.core.utils.tile_merge.InstanceSegTileMerge.merge"]], "merge() (otx.core.utils.tile_merge.tilemerge method)": [[102, "otx.core.utils.tile_merge.TileMerge.merge"]], "nms_postprocess() (otx.core.utils.tile_merge.tilemerge method)": [[102, "otx.core.utils.tile_merge.TileMerge.nms_postprocess"]], "otx.core.utils.tile_merge": [[102, "module-otx.core.utils.tile_merge"]], "get_adaptive_num_workers() (in module otx.core.utils.utils)": [[103, "otx.core.utils.utils.get_adaptive_num_workers"]], "get_idx_list_per_classes() (in module otx.core.utils.utils)": [[103, "otx.core.utils.utils.get_idx_list_per_classes"]], "get_mean_std_from_data_processing() (in module otx.core.utils.utils)": [[103, "otx.core.utils.utils.get_mean_std_from_data_processing"]], "is_ckpt_for_finetuning() (in module otx.core.utils.utils)": [[103, "otx.core.utils.utils.is_ckpt_for_finetuning"]], "is_ckpt_from_otx_v1() (in module otx.core.utils.utils)": [[103, "otx.core.utils.utils.is_ckpt_from_otx_v1"]], "otx.core.utils.utils": [[103, "module-otx.core.utils.utils"]], "anomalydatamodule (class in otx.data)": [[104, "otx.data.AnomalyDataModule"]], "otx.data": [[104, "module-otx.data"]], "engine (class in otx.engine)": [[105, "otx.engine.Engine"]], "datamodule (otx.engine.engine property)": [[105, "otx.engine.Engine.datamodule"]], "device (otx.engine.engine property)": [[105, "otx.engine.Engine.device"]], "explain() (otx.engine.engine method)": [[105, "otx.engine.Engine.explain"]], "export() (otx.engine.engine method)": [[105, "otx.engine.Engine.export"]], "from_config() (otx.engine.engine class method)": [[105, "otx.engine.Engine.from_config"]], "from_model_name() (otx.engine.engine class method)": [[105, "otx.engine.Engine.from_model_name"]], "model (otx.engine.engine property)": [[105, "otx.engine.Engine.model"]], "optimize() (otx.engine.engine method)": [[105, "otx.engine.Engine.optimize"]], "otx.engine": [[105, "module-otx.engine"]], "predict() (otx.engine.engine method)": [[105, "otx.engine.Engine.predict"]], "test() (otx.engine.engine method)": [[105, "otx.engine.Engine.test"]], "train() (otx.engine.engine method)": [[105, "otx.engine.Engine.train"]], "trainer (otx.engine.engine property)": [[105, "otx.engine.Engine.trainer"]], "trainer_params (otx.engine.engine property)": [[105, "otx.engine.Engine.trainer_params"]], "work_dir (otx.engine.engine property)": [[105, "otx.engine.Engine.work_dir"]], "hyperband (class in otx.hpo)": [[106, "otx.hpo.HyperBand"]], "trialstatus (class in otx.hpo)": [[106, "otx.hpo.TrialStatus"]], "auto_config() (otx.hpo.hyperband method)": [[106, "otx.hpo.HyperBand.auto_config"]], "get_best_config() (otx.hpo.hyperband method)": [[106, "otx.hpo.HyperBand.get_best_config"]], "get_next_sample() (otx.hpo.hyperband method)": [[106, "otx.hpo.HyperBand.get_next_sample"]], "get_progress() (otx.hpo.hyperband method)": [[106, "otx.hpo.HyperBand.get_progress"]], "is_done() (otx.hpo.hyperband method)": [[106, "otx.hpo.HyperBand.is_done"]], "otx.hpo": [[106, "module-otx.hpo"]], "print_result() (otx.hpo.hyperband method)": [[106, "otx.hpo.HyperBand.print_result"]], "report_score() (otx.hpo.hyperband method)": [[106, "otx.hpo.HyperBand.report_score"]], "run_hpo_loop() (in module otx.hpo)": [[106, "otx.hpo.run_hpo_loop"]], "save_results() (otx.hpo.hyperband method)": [[106, "otx.hpo.HyperBand.save_results"]], "otx.recipe": [[107, "module-otx.recipe"]], "otx.tools": [[108, "module-otx.tools"]], "configconverter (class in otx.tools.converter)": [[109, "otx.tools.converter.ConfigConverter"]], "convert() (otx.tools.converter.configconverter static method)": [[109, "otx.tools.converter.ConfigConverter.convert"]], "instantiate() (otx.tools.converter.configconverter static method)": [[109, "otx.tools.converter.ConfigConverter.instantiate"]], "otx.tools.converter": [[109, "module-otx.tools.converter"]], "otx.tools.translate_mmrecipe": [[110, "module-otx.tools.translate_mmrecipe"]], "append_main_proc_signal_handler() (in module otx.utils)": [[111, "otx.utils.append_main_proc_signal_handler"]], "append_signal_handler() (in module otx.utils)": [[111, "otx.utils.append_signal_handler"]], "otx.utils": [[111, "module-otx.utils"]]}}) \ No newline at end of file