LogSAD / anomalib /deploy /__init__.py
zhiqing0205
Add core libraries: anomalib, dinov2, open_clip_local
3de7bf6
"""Functions for Inference and model deployment."""
# Copyright (C) 2022-2024 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
from .export import ExportType
from .inferencers import Inferencer, OpenVINOInferencer, TorchInferencer
__all__ = ["Inferencer", "OpenVINOInferencer", "TorchInferencer", "ExportType"]