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
      • Learn
      • Discord
      • Forum
      • GitHub
    • Solutions
      • Team & Enterprise
      • Hugging Face PRO
      • Enterprise Support
      • Inference Providers
      • Inference Endpoints
      • Storage Buckets

  • Log In
  • Sign Up

geologist387
/
FRIDA-transformed

Feature Extraction
sentence-transformers
ONNX
Transformers
Russian
English
mteb
Model card Files Files and versions
xet
Community

Instructions to use geologist387/FRIDA-transformed with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • sentence-transformers

    How to use geologist387/FRIDA-transformed with sentence-transformers:

    from sentence_transformers import SentenceTransformer
    
    model = SentenceTransformer("geologist387/FRIDA-transformed")
    
    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 geologist387/FRIDA-transformed with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("feature-extraction", model="geologist387/FRIDA-transformed")
    # Load model directly
    from transformers import AutoModel
    model = AutoModel.from_pretrained("geologist387/FRIDA-transformed", dtype="auto")
  • Notebooks
  • Google Colab
  • Kaggle
FRIDA-transformed
Ctrl+K
Ctrl+K
  • 1 contributor
History: 4 commits
geologist387's picture
geologist387
Minor improvements
d3a04c3 4 months ago
  • onnx
    Minor improvements 4 months ago
  • .gitattributes
    1.78 kB
    Added an onnx model 5 months ago
  • .gitignore
    137 Bytes
    Added an onnx model 5 months ago
  • README.md
    2.86 kB
    Added an onnx model 5 months ago
  • check_input_dims.py
    567 Bytes
    Added an onnx model 5 months ago
  • check_inputs.py
    248 Bytes
    Added an onnx model 5 months ago
  • img.jpg
    107 kB
    xet
    Added an onnx model 5 months ago
  • pyproject.toml
    599 Bytes
    Added signature for viewing model inputs 4 months ago
  • safetensors_to_onnx.ipynb
    7.68 kB
    Minor improvements 4 months ago
  • safetensors_to_onnx.py
    4.92 kB
    Added an onnx model 5 months ago