Token Classification
Transformers
GGUF
English
entity-recognition
foundation-model
feature-extraction
BERT
generic
Instructions to use mradermacher/NuNER-BERT-v1.0-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/NuNER-BERT-v1.0-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="mradermacher/NuNER-BERT-v1.0-GGUF")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/NuNER-BERT-v1.0-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/NuNER-BERT-v1.0-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 mradermacher/NuNER-BERT-v1.0-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/NuNER-BERT-v1.0-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf mradermacher/NuNER-BERT-v1.0-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/NuNER-BERT-v1.0-GGUF:Q4_K_M
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 mradermacher/NuNER-BERT-v1.0-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/NuNER-BERT-v1.0-GGUF:Q4_K_M
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 mradermacher/NuNER-BERT-v1.0-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/NuNER-BERT-v1.0-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/NuNER-BERT-v1.0-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/NuNER-BERT-v1.0-GGUF with Ollama:
ollama run hf.co/mradermacher/NuNER-BERT-v1.0-GGUF:Q4_K_M
- Unsloth Desktop
- Docker Model Runner
How to use mradermacher/NuNER-BERT-v1.0-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/NuNER-BERT-v1.0-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/NuNER-BERT-v1.0-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/NuNER-BERT-v1.0-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.NuNER-BERT-v1.0-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
uploaded from nico1
Browse files- .gitattributes +12 -0
- NuNER-BERT-v1.0.IQ4_XS.gguf +3 -0
- NuNER-BERT-v1.0.Q2_K.gguf +3 -0
- NuNER-BERT-v1.0.Q3_K_L.gguf +3 -0
- NuNER-BERT-v1.0.Q3_K_M.gguf +3 -0
- NuNER-BERT-v1.0.Q3_K_S.gguf +3 -0
- NuNER-BERT-v1.0.Q4_K_M.gguf +3 -0
- NuNER-BERT-v1.0.Q4_K_S.gguf +3 -0
- NuNER-BERT-v1.0.Q5_K_M.gguf +3 -0
- NuNER-BERT-v1.0.Q5_K_S.gguf +3 -0
- NuNER-BERT-v1.0.Q6_K.gguf +3 -0
- NuNER-BERT-v1.0.Q8_0.gguf +3 -0
- NuNER-BERT-v1.0.f16.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,15 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
NuNER-BERT-v1.0.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
NuNER-BERT-v1.0.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
NuNER-BERT-v1.0.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
NuNER-BERT-v1.0.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
NuNER-BERT-v1.0.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
NuNER-BERT-v1.0.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
NuNER-BERT-v1.0.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
NuNER-BERT-v1.0.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
NuNER-BERT-v1.0.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
NuNER-BERT-v1.0.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
NuNER-BERT-v1.0.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
NuNER-BERT-v1.0.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
NuNER-BERT-v1.0.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5c85c28227f5a8cae3a262ecaf20a8559a6d973d80bfbb79b5f16d0f600b28a8
|
| 3 |
+
size 67423392
|
NuNER-BERT-v1.0.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:789117cef4f147942fbebe16f2af51b73d18ad0473ec6a82e99c819cd41ff1bc
|
| 3 |
+
size 54115488
|
NuNER-BERT-v1.0.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3e4134f2c770b42565eb523d7352b438a69ba63552444d0f96b62485912fb450
|
| 3 |
+
size 69377184
|
NuNER-BERT-v1.0.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:293bfdb04a84a10dc4128633b695b7352d888ac79064a596bbd6d4436f0a6946
|
| 3 |
+
size 64216224
|
NuNER-BERT-v1.0.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:424d81042a6c9d1378e1d66fae061243544a44ca457ac6b1a12a8d40c8c6d4d4
|
| 3 |
+
size 58428576
|
NuNER-BERT-v1.0.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:43e598a0c78c898b831c5be11fea88261ed91a5048cd35096197168a47f30b52
|
| 3 |
+
size 74270880
|
NuNER-BERT-v1.0.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0761fd464fbdecc2f9e883ac9279d21273896247aefb53a4ddfd6d0880dd17c8
|
| 3 |
+
size 70298784
|
NuNER-BERT-v1.0.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ca42edbc891432aca2109ca42a70ab3d5dc389ed574d967859e5a79c7cf1e56a
|
| 3 |
+
size 82675872
|
NuNER-BERT-v1.0.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7a2aa879caebb246dc1ade2ac2e33495b8ce2774c47522fc1042647a925b0d76
|
| 3 |
+
size 80325792
|
NuNER-BERT-v1.0.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7eb38748ba71ed5bc298587657acaabe1d697aa67bcce22ceb7b2ba2abe107dc
|
| 3 |
+
size 91606176
|
NuNER-BERT-v1.0.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3fb2a3a0e32c980a0d4e9e279717bf5adeb4e39d9518965fd971b5fe7f77fc2b
|
| 3 |
+
size 117853376
|
NuNER-BERT-v1.0.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8c610fbd9b01504db6e09e4d02dd69944a0f48915f693e04766b58b181baff67
|
| 3 |
+
size 219455456
|