Blame view

embeddings/__init__.py 192 Bytes
ed948666   tangwang   tidy
1
  """Embeddings module exports."""
be52af70   tangwang   first commit
2
  
ed948666   tangwang   tidy
3
4
  from .text_encoder import TextEmbeddingEncoder
  from .image_encoder import CLIPImageEncoder
be52af70   tangwang   first commit
5
  
ed948666   tangwang   tidy
6
7
8
9
  __all__ = [
      "TextEmbeddingEncoder",
      "CLIPImageEncoder",
  ]