| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- # LICENSE HEADER MANAGED BY add-license-header
- #
- # Copyright 2018 Kornia Team
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- #
- from __future__ import annotations
- from typing import Any, Optional, Union
- from kornia.core.external import onnx
- from kornia.core.external import onnxruntime as ort
- from kornia.core.mixin import ONNXMixin, ONNXRuntimeMixin
- __all__ = ["ONNXSequential"]
- class ONNXSequential(ONNXMixin, ONNXRuntimeMixin):
- """ONNXSequential to chain multiple ONNX operators together.
- Args:
- *args: A variable number of ONNX models (either ONNX ModelProto objects or file paths).
- For Hugging Face-hosted models, use the format 'hf://model_name'. Valid `model_name` can be found on
- https://huggingface.co/kornia/ONNX_models. Or a URL to the ONNX model.
- providers: A list of execution providers for ONNXRuntime
- (e.g., ['CUDAExecutionProvider', 'CPUExecutionProvider']).
- session_options: Optional ONNXRuntime session options for optimizing the session.
- io_maps: An optional list of list of tuples specifying input-output mappings for combining models.
- If None, we assume the default input name and output name are "input" and "output" accordingly, and
- only one input and output node for each graph.
- If not None, `io_maps[0]` shall represent the `io_map` for combining the first and second ONNX models.
- cache_dir: The directory where ONNX models are cached locally (only for downloading from HuggingFace).
- Defaults to None, which will use a default `kornia.config.hub_onnx_dir` directory.
- auto_ir_version_conversion: If True, automatically convert the model's IR version to 9, and OPSET version to 17.
- Other versions may be pointed to by `target_ir_version` and `target_opset_version`.
- target_ir_version: The target IR version to convert to.
- target_opset_version: The target OPSET version to convert to.
- """
- def __init__(
- self,
- *args: Union[onnx.ModelProto, str], # type:ignore
- providers: Optional[list[str]] = None,
- session_options: Optional[ort.SessionOptions] = None, # type:ignore
- io_maps: Optional[list[tuple[str, str]]] = None,
- cache_dir: Optional[str] = None,
- auto_ir_version_conversion: bool = False,
- target_ir_version: Optional[int] = None,
- target_opset_version: Optional[int] = None,
- ) -> None:
- self.operators = self._load_ops(*args, cache_dir=cache_dir)
- if auto_ir_version_conversion:
- self.operators = self._auto_version_conversion(
- *self.operators, target_ir_version=target_ir_version, target_opset_version=target_opset_version
- )
- self._combined_op = self.combine(io_maps=io_maps)
- session = self.create_session(providers=providers, session_options=session_options)
- self.set_session(session=session)
- def _auto_version_conversion(
- self,
- *args: list[onnx.ModelProto], # type:ignore
- target_ir_version: Optional[int] = None,
- target_opset_version: Optional[int] = None,
- ) -> list[onnx.ModelProto]: # type:ignore
- """Automatic conversion of the model's IR/OPSET version to the given target version.
- If `target_ir_version` is not provided, the model is converted to 9 by default.
- If `target_opset_version` is not provided, the model is converted to 17 by default.
- Args:
- args: List of operations to convert.
- target_ir_version: The target IR version to convert to.
- target_opset_version: The target OPSET version to convert to.
- """
- # TODO: maybe another logic for versioning.
- if target_ir_version is None:
- target_ir_version = 9
- if target_opset_version is None:
- target_opset_version = 17
- op_list = []
- for op in args:
- op = super()._onnx_version_conversion(
- op, target_ir_version=target_ir_version, target_opset_version=target_opset_version
- )
- op_list.append(op)
- return op_list
- def combine(self, io_maps: list[tuple[str, str]] | None = None) -> onnx.ModelProto: # type: ignore
- return super()._combine(*self.operators, io_maps=io_maps)
- def create_session(
- self, providers: list[str] | None = None, session_options: Any | None = None
- ) -> ort.InferenceSession: # type: ignore
- return super()._create_session(self._combined_op, providers, session_options)
- def export(self, file_path: str, **kwargs: Any) -> None:
- return super()._export(self._combined_op, file_path, **kwargs)
- def add_metadata(self, additional_metadata: Optional[list[tuple[str, str]]] = None) -> onnx.ModelProto: # type:ignore
- return super()._add_metadata(self._combined_op, additional_metadata)
|