CoolFace
Apppublic

Aluode/PerceptionLabPortable

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
__init__.py32 linesDownload Raw Back to roberta
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_roberta import *22    from .modeling_flax_roberta import *23    from .modeling_roberta import *24    from .modeling_tf_roberta import *25    from .tokenization_roberta import *26    from .tokenization_roberta_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 
Aluode/PerceptionLabPortable · CoolFace