Sentence Similarity
sentence-transformers
GGUF
Transformers
English
feature-extraction
llama-cpp
gguf-my-repo
Instructions to use LLukas22/all-MiniLM-L6-v2-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use LLukas22/all-MiniLM-L6-v2-GGUF with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("LLukas22/all-MiniLM-L6-v2-GGUF") 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 LLukas22/all-MiniLM-L6-v2-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("LLukas22/all-MiniLM-L6-v2-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use LLukas22/all-MiniLM-L6-v2-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf LLukas22/all-MiniLM-L6-v2-GGUF:F16 # Run inference directly in the terminal: llama cli -hf LLukas22/all-MiniLM-L6-v2-GGUF:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf LLukas22/all-MiniLM-L6-v2-GGUF:F16 # Run inference directly in the terminal: llama cli -hf LLukas22/all-MiniLM-L6-v2-GGUF:F16
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf LLukas22/all-MiniLM-L6-v2-GGUF:F16 # Run inference directly in the terminal: ./llama-cli -hf LLukas22/all-MiniLM-L6-v2-GGUF:F16
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf LLukas22/all-MiniLM-L6-v2-GGUF:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf LLukas22/all-MiniLM-L6-v2-GGUF:F16
Use Docker
docker model run hf.co/LLukas22/all-MiniLM-L6-v2-GGUF:F16
- LM Studio
- Jan
- Ollama
How to use LLukas22/all-MiniLM-L6-v2-GGUF with Ollama:
ollama run hf.co/LLukas22/all-MiniLM-L6-v2-GGUF:F16
- Unsloth Desktop
- Docker Model Runner
How to use LLukas22/all-MiniLM-L6-v2-GGUF with Docker Model Runner:
docker model run hf.co/LLukas22/all-MiniLM-L6-v2-GGUF:F16
- Lemonade
How to use LLukas22/all-MiniLM-L6-v2-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull LLukas22/all-MiniLM-L6-v2-GGUF:F16
Run and chat with the model
lemonade run user.all-MiniLM-L6-v2-GGUF-F16
List all available models
lemonade list
- Atomic Chat
Welcome to the community
The community tab is the place to discuss and collaborate with the HF community!