Hugging Face's logo Hugging Face
  • Models
  • Datasets
  • Spaces
  • Buckets new
  • Docs
  • Enterprise
  • Pricing

  • Log In
  • Sign Up

clips
/
e5-large-v2-t2t

Sentence Similarity
sentence-transformers
Safetensors
Transformers
Dutch
bert
text-generation
text-embeddings-inference
Model card Files Files and versions
xet
Community
1

Instructions to use clips/e5-large-v2-t2t with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • sentence-transformers

    How to use clips/e5-large-v2-t2t with sentence-transformers:

    from sentence_transformers import SentenceTransformer
    
    model = SentenceTransformer("clips/e5-large-v2-t2t")
    
    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]
  • Transformers

    How to use clips/e5-large-v2-t2t with Transformers:

    # Load model directly
    from transformers import AutoTokenizer, AutoModelForCausalLM
    
    tokenizer = AutoTokenizer.from_pretrained("clips/e5-large-v2-t2t")
    model = AutoModelForCausalLM.from_pretrained("clips/e5-large-v2-t2t")
  • Notebooks
  • Google Colab
  • Kaggle
e5-large-v2-t2t
1.34 GB
Ctrl+K
Ctrl+K
  • 3 contributors
History: 6 commits
nicolaebanari's picture
nicolaebanari
tomaarsen's picture
tomaarsen HF Staff
Add new SentenceTransformer model (#1)
de32c3e verified 7 months ago
  • 1_Pooling
    Add new SentenceTransformer model (#1) 7 months ago
  • .gitattributes
    1.52 kB
    initial commit 9 months ago
  • README.md
    9.43 kB
    Add new SentenceTransformer model (#1) 7 months ago
  • config.json
    756 Bytes
    initial commit 9 months ago
  • config_sentence_transformers.json
    299 Bytes
    Add new SentenceTransformer model (#1) 7 months ago
  • generation_config.json
    90 Bytes
    initial commit 9 months ago
  • model.safetensors
    1.34 GB
    xet
    initial commit 9 months ago
  • modules.json
    349 Bytes
    Add new SentenceTransformer model (#1) 7 months ago
  • sentence_bert_config.json
    57 Bytes
    Add new SentenceTransformer model (#1) 7 months ago
  • special_tokens_map.json
    125 Bytes
    initial commit 9 months ago
  • tokenizer.json
    714 kB
    initial commit 9 months ago
  • tokenizer_config.json
    1.27 kB
    initial commit 9 months ago
  • vocab.txt
    242 kB
    initial commit 9 months ago