__init__.py 420 B

12345678910111213141516
  1. # Copyright (c) Meta Platforms, Inc. and affiliates.
  2. # All rights reserved.
  3. # This source code is licensed under the license found in the
  4. # LICENSE file in the root directory of this source tree.
  5. from .build_sam import (
  6. build_sam_vit_b,
  7. build_sam_vit_b_hq,
  8. build_sam_vit_h,
  9. build_sam_vit_h_hq,
  10. build_sam_vit_l,
  11. build_sam_vit_l_hq,
  12. sam_model_registry,
  13. )
  14. from .predictor import SamPredictor