Instructions to use Keithsel/Aster-Vietnamese-NER-MiniLM-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Keithsel/Aster-Vietnamese-NER-MiniLM-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 Keithsel/Aster-Vietnamese-NER-MiniLM-GGUF:F16 # Run inference directly in the terminal: llama cli -hf Keithsel/Aster-Vietnamese-NER-MiniLM-GGUF:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Keithsel/Aster-Vietnamese-NER-MiniLM-GGUF:F16 # Run inference directly in the terminal: llama cli -hf Keithsel/Aster-Vietnamese-NER-MiniLM-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 Keithsel/Aster-Vietnamese-NER-MiniLM-GGUF:F16 # Run inference directly in the terminal: ./llama-cli -hf Keithsel/Aster-Vietnamese-NER-MiniLM-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 Keithsel/Aster-Vietnamese-NER-MiniLM-GGUF:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf Keithsel/Aster-Vietnamese-NER-MiniLM-GGUF:F16
Use Docker
docker model run hf.co/Keithsel/Aster-Vietnamese-NER-MiniLM-GGUF:F16
- LM Studio
- Jan
- Ollama
How to use Keithsel/Aster-Vietnamese-NER-MiniLM-GGUF with Ollama:
ollama run hf.co/Keithsel/Aster-Vietnamese-NER-MiniLM-GGUF:F16
- Unsloth Desktop
- Docker Model Runner
How to use Keithsel/Aster-Vietnamese-NER-MiniLM-GGUF with Docker Model Runner:
docker model run hf.co/Keithsel/Aster-Vietnamese-NER-MiniLM-GGUF:F16
- Lemonade
How to use Keithsel/Aster-Vietnamese-NER-MiniLM-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Keithsel/Aster-Vietnamese-NER-MiniLM-GGUF:F16
Run and chat with the model
lemonade run user.Aster-Vietnamese-NER-MiniLM-GGUF-F16
List all available models
lemonade list
- Atomic Chat
Aster Vietnamese NER MiniLM GGUF
F16 GGUF conversion of Aster Vietnamese NER MiniLM, a 15-label Vietnamese named-entity recognizer.
Files
Aster-Vietnamese-NER-MiniLM-F16.gguf: 232 MiB MiniLM encoder with XLM-R SentencePiece tokenizer.classifier.json: the 16-by-384 token-classification matrix and ordered label names.
Runtime contract
Run the model in llama.cpp with --embedding --pooling none. llama.cpp returns one 384-dimensional embedding per token. Apply classifier.json to each embedding:
logits = embedding @ weight.T + bias
label = labels[argmax(logits)]
llama-server does not expose a token-classification endpoint, so the small final projection remains application-owned.
Parity
On 100 held-out VLSP 2021 test sentences, F16 GGUF output retained 99.86% exact entity-span F1 against the original FP32 checkpoint. Per-token label agreement was 99.9877%.
Performance
On an 8-thread AMD Ryzen 7 8840HS, local llama-server embedding requests measured 44.8 ms median and 82.2 ms p95 per sentence, including local HTTP overhead.
The underlying FP32 checkpoint scored 81.89% exact typed F1 on VLSP 2021 test, 86.33% on WikiANN Vietnamese test, and 92.06% on Vietnamese COVID NER validation.
This is a research artifact. Review the training datasets' terms before redistribution or production use.
- Downloads last month
- 45
16-bit
Model tree for Keithsel/Aster-Vietnamese-NER-MiniLM-GGUF
Base model
microsoft/Multilingual-MiniLM-L12-H384