Text Generation
GGUF
English
named-entity-recognition
ner
nlp
information-extraction
person
organization
location
miscellaneous
llama
minibase
standard-model
2048-context
Eval Results (legacy)
Instructions to use Minibase/NER-Standard 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 Minibase/NER-Standard 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 Minibase/NER-Standard # Run inference directly in the terminal: llama cli -hf Minibase/NER-Standard
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Minibase/NER-Standard # Run inference directly in the terminal: llama cli -hf Minibase/NER-Standard
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 Minibase/NER-Standard # Run inference directly in the terminal: ./llama-cli -hf Minibase/NER-Standard
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 Minibase/NER-Standard # Run inference directly in the terminal: ./build/bin/llama-cli -hf Minibase/NER-Standard
Use Docker
docker model run hf.co/Minibase/NER-Standard
- LM Studio
- Jan
- vLLM
How to use Minibase/NER-Standard with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Minibase/NER-Standard" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Minibase/NER-Standard", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/Minibase/NER-Standard
- Ollama
How to use Minibase/NER-Standard with Ollama:
ollama run hf.co/Minibase/NER-Standard
- Unsloth Desktop
- Docker Model Runner
How to use Minibase/NER-Standard with Docker Model Runner:
docker model run hf.co/Minibase/NER-Standard
- Lemonade
How to use Minibase/NER-Standard with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Minibase/NER-Standard
Run and chat with the model
lemonade run user.NER-Standard-{{QUANT_TAG}}List all available models
lemonade list
- Atomic Chat
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -294,37 +294,17 @@ John Smith works at Google in New York and uses Python programming language.
|
|
| 294 |
- โ
**GPU acceleration** provides significant speed improvements
|
| 295 |
- โ
**Apple Silicon** users get Metal acceleration automatically
|
| 296 |
|
| 297 |
-
## ๐ Limitations & Biases
|
| 298 |
-
|
| 299 |
-
### Current Limitations
|
| 300 |
-
|
| 301 |
-
| Limitation | Description | Impact |
|
| 302 |
-
|------------|-------------|--------|
|
| 303 |
-
| **Variable Output Quality** | Sometimes produces garbled or incomplete responses | May miss entities in certain contexts |
|
| 304 |
-
| **No Entity Type Labels** | Outputs entity names but not their types | Requires post-processing for type classification |
|
| 305 |
-
| **Context Window** | Limited to 2,048 token context window | Cannot process very long documents |
|
| 306 |
-
| **Language Scope** | Primarily trained on English text | Limited performance on other languages |
|
| 307 |
-
| **Inconsistent Extraction** | Performance varies by input complexity | May miss entities in complex sentences |
|
| 308 |
-
|
| 309 |
-
### Potential Biases
|
| 310 |
-
|
| 311 |
-
| Bias Type | Description | Mitigation |
|
| 312 |
-
|-----------|-------------|------------|
|
| 313 |
-
| **Output Format Inconsistency** | Sometimes outputs structured lists, sometimes garbled text | Improved prompt engineering and training |
|
| 314 |
-
| **Entity Recognition Patterns** | May favor certain entity patterns over others | Diverse training data and evaluation |
|
| 315 |
-
| **Domain Specificity** | Performance varies across different text types | Multi-domain training and fine-tuning |
|
| 316 |
-
|
| 317 |
## ๐ Citation
|
| 318 |
|
| 319 |
-
If you use
|
| 320 |
|
| 321 |
```bibtex
|
| 322 |
-
@misc{ner-
|
| 323 |
-
title={
|
| 324 |
author={Minibase AI Team},
|
| 325 |
year={2025},
|
| 326 |
publisher={Hugging Face},
|
| 327 |
-
url={https://huggingface.co/Minibase/NER-
|
| 328 |
}
|
| 329 |
```
|
| 330 |
|
|
|
|
| 294 |
- โ
**GPU acceleration** provides significant speed improvements
|
| 295 |
- โ
**Apple Silicon** users get Metal acceleration automatically
|
| 296 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 297 |
## ๐ Citation
|
| 298 |
|
| 299 |
+
If you use Named Entity Recognition - Standard in your research, please cite:
|
| 300 |
|
| 301 |
```bibtex
|
| 302 |
+
@misc{ner-standard-2025,
|
| 303 |
+
title={Named Entity Recognition - Standard: High-Performance Named Entity Recognition Model},
|
| 304 |
author={Minibase AI Team},
|
| 305 |
year={2025},
|
| 306 |
publisher={Hugging Face},
|
| 307 |
+
url={https://huggingface.co/Minibase/NER-Standard}
|
| 308 |
}
|
| 309 |
```
|
| 310 |
|