CoolFace
Apppublic

Aluode/PerceptionLabPortable

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
__init__.py33 linesDownload Raw Back to ovis2
1# coding=utf-82# Copyright 2025 The HuggingFace Inc. team. All rights reserved.3#4# Licensed under the Apache License, Version 2.0 (the "License");5# you may not use this file except in compliance with the License.6# You may obtain a copy of the License at7#8#     http://www.apache.org/licenses/LICENSE-2.09#10# Unless required by applicable law or agreed to in writing, software11# distributed under the License is distributed on an "AS IS" BASIS,12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.13# See the License for the specific language governing permissions and14# limitations under the License.15 16from typing import TYPE_CHECKING17 18from ...utils import _LazyModule19from ...utils.import_utils import define_import_structure20 21 22if TYPE_CHECKING:23    from .configuration_ovis2 import *24    from .image_processing_ovis2 import *25    from .image_processing_ovis2_fast import *26    from .modeling_ovis2 import *27    from .processing_ovis2 import *28else:29    import sys30 31    _file = globals()["__file__"]32    sys.modules[__name__] = _LazyModule(__name__, _file, define_import_structure(_file), module_spec=__spec__)33 
Aluode/PerceptionLabPortable · CoolFace