__init__.py 884 B

12345678910111213141516171819
  1. # -------------------------------------------------------------------------
  2. # Copyright (c) 2021-2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
  3. #
  4. # NVIDIA CORPORATION & AFFILIATES and its licensors retain all intellectual
  5. # property and proprietary rights in and to this software, related
  6. # documentation and any modifications thereto. Any use, reproduction,
  7. # disclosure or distribution of this software and related documentation
  8. # without an express license agreement from NVIDIA CORPORATION is strictly
  9. # prohibited.
  10. #
  11. # Written by Jiarui Xu
  12. # -------------------------------------------------------------------------
  13. from .builder import build_model
  14. from .group_vit import GroupViT
  15. from .multi_label_contrastive import MultiLabelContrastive
  16. from .transformer import TextTransformer
  17. __all__ = ['build_model', 'MultiLabelContrastive', 'GroupViT', 'TextTransformer']