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_bart import *22 from .modeling_bart import *23 from .modeling_flax_bart import *24 from .modeling_tf_bart import *25 from .tokenization_bart import *26 from .tokenization_bart_fast import *27else:28 import sys29 30 _file = globals()["__file__"]31 sys.modules[__name__] = _LazyModule(__name__, _file, define_import_structure(_file), module_spec=__spec__)32 