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

pascalhuerten
/
instructor-skillfit

Sentence Similarity
sentence-transformers
PyTorch
TensorBoard
Safetensors
Transformers
English
German
t5
text-embedding
embeddings
information-retrieval
beir
text-classification
language-model
text-clustering
text-semantic-similarity
text-evaluation
prompt-retrieval
text-reranking
feature-extraction
English
Sentence Similarity
natural_questions
ms_marco
fever
hotpot_qa
mteb
Model card Files Files and versions
xet
Metrics Training metrics Community
1

Instructions to use pascalhuerten/instructor-skillfit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • sentence-transformers

    How to use pascalhuerten/instructor-skillfit with sentence-transformers:

    from sentence_transformers import SentenceTransformer
    
    model = SentenceTransformer("pascalhuerten/instructor-skillfit")
    
    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]
  • Transformers

    How to use pascalhuerten/instructor-skillfit with Transformers:

    # Load model directly
    from transformers import AutoTokenizer, AutoModel
    
    tokenizer = AutoTokenizer.from_pretrained("pascalhuerten/instructor-skillfit")
    model = AutoModel.from_pretrained("pascalhuerten/instructor-skillfit")
  • Notebooks
  • Google Colab
  • Kaggle
instructor-skillfit / 2_Dense
Ctrl+K
Ctrl+K
  • 2 contributors
History: 2 commits
SFconvertbot's picture
SFconvertbot
Adding `safetensors` variant of this model
7fd6b89 verified 8 months ago
  • config.json
    115 Bytes
    Add model data over 2 years ago
  • model.safetensors
    2.36 MB
    xet
    Adding `safetensors` variant of this model 8 months ago
  • pytorch_model.bin
    2.36 MB
    xet
    Add model data over 2 years ago