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

  • Log In
  • Sign Up

ramnathv
/
clips-mfaq-test

Sentence Similarity
sentence-transformers
Safetensors
Transformers
xlm-roberta
feature-extraction
text-embeddings-inference
Model card Files Files and versions
xet
Community

Instructions to use ramnathv/clips-mfaq-test with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • sentence-transformers

    How to use ramnathv/clips-mfaq-test with sentence-transformers:

    from sentence_transformers import SentenceTransformer
    
    model = SentenceTransformer("ramnathv/clips-mfaq-test")
    
    sentences = [
        "<Q>How many models can I host on HuggingFace?",
        "<A>All plans come with unlimited private models and datasets.",
        "<A>AutoNLP is an automatic way to train and deploy state-of-the-art NLP models, seamlessly integrated with the Hugging Face ecosystem.",
        "<A>Based on how much training data and model variants are created, we send you a compute cost and payment link - as low as $10 per job."
    ]
    embeddings = model.encode(sentences)
    
    similarities = model.similarity(embeddings, embeddings)
    print(similarities.shape)
    # [4, 4]
  • Transformers

    How to use ramnathv/clips-mfaq-test with Transformers:

    # Load model directly
    from transformers import AutoTokenizer, AutoModel
    
    tokenizer = AutoTokenizer.from_pretrained("ramnathv/clips-mfaq-test")
    model = AutoModel.from_pretrained("ramnathv/clips-mfaq-test")
  • Notebooks
  • Google Colab
  • Kaggle
clips-mfaq-test
1.13 GB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 3 commits
ramnathv's picture
ramnathv
Add new SentenceTransformer model.
483e59f over 2 years ago
  • 1_Pooling
    Add new SentenceTransformer model. over 2 years ago
  • .gitattributes
    1.87 kB
    Add new SentenceTransformer model. over 2 years ago
  • README.md
    3.82 kB
    Add new SentenceTransformer model. over 2 years ago
  • added_tokens.json
    57 Bytes
    Add new SentenceTransformer model. over 2 years ago
  • config.json
    750 Bytes
    Add new SentenceTransformer model. over 2 years ago
  • config_sentence_transformers.json
    117 Bytes
    Add new SentenceTransformer model. over 2 years ago
  • model.safetensors
    1.11 GB
    xet
    Add new SentenceTransformer model. over 2 years ago
  • modules.json
    229 Bytes
    Add new SentenceTransformer model. over 2 years ago
  • sentence_bert_config.json
    53 Bytes
    Add new SentenceTransformer model. over 2 years ago
  • sentencepiece.bpe.model
    5.07 MB
    xet
    Add new SentenceTransformer model. over 2 years ago
  • special_tokens_map.json
    1.04 kB
    Add new SentenceTransformer model. over 2 years ago
  • tokenizer.json
    17.1 MB
    xet
    Add new SentenceTransformer model. over 2 years ago
  • tokenizer_config.json
    1.92 kB
    Add new SentenceTransformer model. over 2 years ago