How to use from
llama.cppInstall from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf asg017/sqlite-lembed-model-examples:# Run inference directly in the terminal:
llama-cli -hf asg017/sqlite-lembed-model-examples: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 asg017/sqlite-lembed-model-examples:# Run inference directly in the terminal:
./llama-cli -hf asg017/sqlite-lembed-model-examples: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 asg017/sqlite-lembed-model-examples:# Run inference directly in the terminal:
./build/bin/llama-cli -hf asg017/sqlite-lembed-model-examples:Use Docker
docker model run hf.co/asg017/sqlite-lembed-model-examples:Quick Links
sentence-transformers==2.7.0
$ cat load.py
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("sentence-transformers/all-MiniLM-L6-v2")
$ TRANSFORMERS_CACHE=$PWD/cache python load.py
./llama.cpp/convert-hf-to-gguf.py \
cache/models--sentence-transformers--all-MiniLM-L6-v2/snapshots/e4ce9877abf3edfe10b0d82785e83bdcb973e22e/ \
--outfile all-MiniLM-L6-v2.e4ce9877.{ftype}.gguf \
--outtype=f32
- Downloads last month
- 113
Hardware compatibility
Log In to add your hardware
8-bit
16-bit
32-bit
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐ Ask for provider support
Install from brew
# Start a local OpenAI-compatible server with a web UI: llama-server -hf asg017/sqlite-lembed-model-examples:# Run inference directly in the terminal: llama-cli -hf asg017/sqlite-lembed-model-examples: