Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/bindings/python/src/openvino/_ov_api.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ from openvino._pyopenvino import RTMap
from openvino._pyopenvino import Tensor
from openvino._pyopenvino import TensorVector
from openvino._pyopenvino import Type
from openvino.package_utils import deprecatedclassproperty
from openvino.utils.data_helpers.data_dispatcher import _data_dispatch
from openvino.utils.data_helpers.wrappers import OVDict
from openvino.utils.data_helpers.wrappers import _InferRequestWrapper
Expand All @@ -26,7 +25,7 @@ import openvino.utils.data_helpers.wrappers
import pathlib
import traceback as traceback
import typing
__all__: list[str] = ['AsyncInferQueue', 'AsyncInferQueueBase', 'CompiledModel', 'CompiledModelBase', 'Core', 'CoreBase', 'InferRequest', 'Iterator', 'Model', 'ModelBase', 'ModelMeta', 'Node', 'OVDict', 'Path', 'RTMap', 'Tensor', 'TensorVector', 'TracebackType', 'Type', 'compile_model', 'deprecatedclassproperty', 'io', 'tensor_from_file', 'traceback']
__all__: list[str] = ['AsyncInferQueue', 'AsyncInferQueueBase', 'CompiledModel', 'CompiledModelBase', 'Core', 'CoreBase', 'InferRequest', 'Iterator', 'Model', 'ModelBase', 'ModelMeta', 'Node', 'OVDict', 'Path', 'RTMap', 'Tensor', 'TensorVector', 'TracebackType', 'Type', 'compile_model', 'io', 'tensor_from_file', 'traceback']
class AsyncInferQueue(openvino._pyopenvino.AsyncInferQueue):
"""
AsyncInferQueue with a pool of asynchronous requests.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5030,7 +5030,6 @@ class Type:
u4: typing.ClassVar[Type] # value = <Type: 'uint4_t'>
u64: typing.ClassVar[Type] # value = <Type: 'uint64_t'>
u8: typing.ClassVar[Type] # value = <Type: 'uint8_t'>
undefined: typing.ClassVar[Type] # value = <Type: 'dynamic'>
def __eq__(self, arg0: Type) -> bool:
...
def __hash__(self) -> int:
Expand Down
Loading