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

  • Log In
  • Sign Up

sam-babayev
/
zzz

Sentence Similarity
sentence-transformers
English
feature-extraction
mteb
Eval Results (legacy)
Model card Files Files and versions
xet
Community
1

Instructions to use sam-babayev/zzz with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • sentence-transformers

    How to use sam-babayev/zzz with sentence-transformers:

    from sentence_transformers import SentenceTransformer
    
    model = SentenceTransformer("sam-babayev/zzz")
    
    sentences = [
        "That is a happy person",
        "That is a happy dog",
        "That is a very happy person",
        "Today is a sunny day"
    ]
    embeddings = model.encode(sentences)
    
    similarities = model.similarity(embeddings, embeddings)
    print(similarities.shape)
    # [4, 4]
  • Notebooks
  • Google Colab
  • Kaggle
zzz
65.1 kB
Ctrl+K
Ctrl+K
  • 2 contributors
History: 2 commits
James
Update README.md
e617388 over 2 years ago
  • .gitattributes
    1.52 kB
    initial commit over 2 years ago
  • README.md
    63.6 kB
    Update README.md over 2 years ago