Aluode/PerceptionLabPortable
0
1# Copyright 2024 The HuggingFace Team. All rights reserved.2#3# Licensed under the Apache License, Version 2.0 (the "License");4# you may not use this file except in compliance with the License.5# You may obtain a copy of the License at6#7# http://www.apache.org/licenses/LICENSE-2.08#9# Unless required by applicable law or agreed to in writing, software10# distributed under the License is distributed on an "AS IS" BASIS,11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.12# See the License for the specific language governing permissions and13# limitations under the License.14from typing import TYPE_CHECKING15 16from ...utils import _LazyModule17from ...utils.import_utils import define_import_structure18 19 20if TYPE_CHECKING:21 from .configuration_maskformer import *22 from .configuration_maskformer_swin import *23 from .feature_extraction_maskformer import *24 from .image_processing_maskformer import *25 from .image_processing_maskformer_fast import *26 from .modeling_maskformer import *27 from .modeling_maskformer_swin import *28else:29 import sys30 31 _file = globals()["__file__"]32 sys.modules[__name__] = _LazyModule(__name__, _file, define_import_structure(_file), module_spec=__spec__)33 