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

  • Log In
  • Sign Up

AlgorithmicResearchGroup
/
arxiv-t5-small-GenQ

Sentence Similarity
sentence-transformers
PyTorch
Transformers
t5
feature-extraction
Model card Files Files and versions
xet
Community
1

Instructions to use AlgorithmicResearchGroup/arxiv-t5-small-GenQ with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • sentence-transformers

    How to use AlgorithmicResearchGroup/arxiv-t5-small-GenQ with sentence-transformers:

    from sentence_transformers import SentenceTransformer
    
    model = SentenceTransformer("AlgorithmicResearchGroup/arxiv-t5-small-GenQ")
    
    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 AlgorithmicResearchGroup/arxiv-t5-small-GenQ with Transformers:

    # Load model directly
    from transformers import AutoTokenizer, AutoModel
    
    tokenizer = AutoTokenizer.from_pretrained("AlgorithmicResearchGroup/arxiv-t5-small-GenQ")
    model = AutoModel.from_pretrained("AlgorithmicResearchGroup/arxiv-t5-small-GenQ")
  • Notebooks
  • Google Colab
  • Kaggle
arxiv-t5-small-GenQ
145 MB
Ctrl+K
Ctrl+K
  • 2 contributors
History: 6 commits
ArtifactAI
Update README.md
354bbf4 almost 3 years ago
  • 1_Pooling
    Upload folder using huggingface_hub almost 3 years ago
  • .gitattributes
    1.52 kB
    initial commit almost 3 years ago
  • README.md
    4.21 kB
    Update README.md almost 3 years ago
  • config.json
    1.46 kB
    Upload folder using huggingface_hub almost 3 years ago
  • config_sentence_transformers.json
    123 Bytes
    Upload folder using huggingface_hub almost 3 years ago
  • modules.json
    229 Bytes
    Upload folder using huggingface_hub almost 3 years ago
  • pytorch_model.bin
    141 MB
    xet
    Upload folder using huggingface_hub almost 3 years ago
  • sentence_bert_config.json
    53 Bytes
    Upload folder using huggingface_hub almost 3 years ago
  • special_tokens_map.json
    2.2 kB
    Upload folder using huggingface_hub almost 3 years ago
  • spiece.model
    792 kB
    xet
    Upload folder using huggingface_hub almost 3 years ago
  • tokenizer.json
    2.42 MB
    Upload folder using huggingface_hub almost 3 years ago
  • tokenizer_config.json
    2.32 kB
    Upload folder using huggingface_hub almost 3 years ago