__init__.py 672 B

12345678910111213141516
  1. # -------------------------------------------------------------------------
  2. # Copyright (c) 2021-2022, NVIDIA Corporation & Affiliates. All rights reserved.
  3. #
  4. # This work is made available under the Nvidia Source Code License.
  5. # To view a copy of this license, visit
  6. # https://github.com/NVlabs/GroupViT/blob/main/LICENSE
  7. #
  8. # Written by Jiarui Xu
  9. # -------------------------------------------------------------------------
  10. from .builder import build_model
  11. from .group_vit import GroupViT
  12. from .multi_label_contrastive import MultiLabelContrastive
  13. from .transformer import TextTransformer
  14. __all__ = ['build_model', 'MultiLabelContrastive', 'GroupViT', 'TextTransformer']