Hugging Face's logo Hugging Face
  • Models
  • Datasets
  • Spaces
  • Buckets new
  • Docs
  • Enterprise
  • Pricing
    • Website
      • Tasks
      • HuggingChat
      • Collections
      • Languages
      • Organizations
    • Community
      • Blog
      • Posts
      • Daily Papers
      • Hardware
      • Learn
      • Discord
      • Forum
      • GitHub
    • Solutions
      • Team & Enterprise
      • Hugging Face PRO
      • Enterprise Support
      • Inference Providers
      • Inference Endpoints
      • Storage Buckets

  • Log In
  • Sign Up

GrowBitLabs
/
tinye5

Feature Extraction
Transformers
Safetensors
sentence-transformers
ONNX
English
bert
embeddings
text-embeddings
semantic-search
information-retrieval
int8
minilm
e5
text-embeddings-inference
Model card Files Files and versions
xet
Community

Instructions to use GrowBitLabs/tinye5 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use GrowBitLabs/tinye5 with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("feature-extraction", model="GrowBitLabs/tinye5")
    # Load model directly
    from transformers import AutoTokenizer, AutoModel
    
    tokenizer = AutoTokenizer.from_pretrained("GrowBitLabs/tinye5")
    model = AutoModel.from_pretrained("GrowBitLabs/tinye5", device_map="auto")
  • sentence-transformers

    How to use GrowBitLabs/tinye5 with sentence-transformers:

    from sentence_transformers import SentenceTransformer
    
    model = SentenceTransformer("GrowBitLabs/tinye5")
    
    sentences = [
        "The weather is lovely today.",
        "It's so sunny outside!",
        "He drove to the stadium."
    ]
    embeddings = model.encode(sentences)
    
    similarities = model.similarity(embeddings, embeddings)
    print(similarities.shape)
    # [3, 3]
  • Notebooks
  • Google Colab
  • Kaggle
tinye5
91.6 MB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 8 commits
rizwan3d's picture
rizwan3d
Update README.md
d71ca62 verified about 10 hours ago
  • .gitattributes
    1.52 kB
    initial commit 1 day ago
  • README.md
    5.89 kB
    Update README.md about 10 hours ago
  • config.json
    775 Bytes
    Update TinyE5 main model files 1 day ago
  • embedding_config.json
    327 Bytes
    Update TinyE5 main model files 1 day ago
  • model.safetensors
    90.9 MB
    xet
    Update TinyE5 main model files 1 day ago
  • tokenizer.json
    712 kB
    Publish TinyE5-L6-384 Safetensors 1 day ago
  • tokenizer_config.json
    618 Bytes
    Update TinyE5 main model files 1 day ago