Token Classification
PyTorch
ONNX
multilingual
glitext
rpeel commited on
Commit
a7a1b2c
·
verified ·
1 Parent(s): accd5f4

Update model card and security scan results

Browse files
Files changed (1) hide show
  1. README.md +297 -16
README.md CHANGED
@@ -1,28 +1,318 @@
1
  ---
2
- library_name: glitext
3
  license: apache-2.0
 
 
 
 
 
 
4
  tags:
5
  - glitext
6
  glitext:
7
  name: small
8
  label: GliText Recognition (Fast)
9
- description: An efficient zero-shot named entity recognition model tuned for generalized extraction with high throughput (speed).
 
10
  recognition: true
11
  classification: false
12
  association: false
13
  span_mode: true
14
  size_gb: 0.68
15
- hf_repo: rpeel/glitext-small
16
  source_url: gliner-community/gliner_small-v2.5
17
  ---
18
 
19
- # rpeel/glitext-small
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
 
21
- An efficient zero-shot named entity recognition model tuned for generalized extraction with high throughput (speed).
22
 
23
- ## Requirements
24
 
25
- To download this model to the SAS GLiText server:
26
 
27
  ```
28
  POST /v1/models/download?name=small
@@ -34,11 +324,6 @@ To download and load into memory in one step:
34
  PUT /v1/models?name=small
35
  ```
36
 
37
- ## Source Model
38
-
39
- Exported from [gliner-community/gliner_small-v2.5](https://huggingface.co/gliner-community/gliner_small-v2.5).
40
- See the [original model card](https://huggingface.co/gliner-community/gliner_small-v2.5) for full architecture and training details.
41
-
42
  ## Security Scan
43
 
44
  Scanned with [modelaudit](https://github.com/promptfoo/modelaudit) v0.2.40 on 2026-04-27. 46/46 checks passed. [Full results](modelaudit.json).
@@ -49,7 +334,3 @@ Scanned with [modelaudit](https://github.com/promptfoo/modelaudit) v0.2.40 on 20
49
  | `model.onnx` | 664.8 MB | `9cc27f025c07c318…` |
50
  | `model_fp16.onnx` | 333.0 MB | `9e14220fb41ebe6c…` |
51
  | `model_int8.onnx` | 196.8 MB | `791f20d6f34d4a4d…` |
52
-
53
- ## License
54
-
55
- [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0). Derived from [gliner-community/gliner_small-v2.5](https://huggingface.co/gliner-community/gliner_small-v2.5) by [gliner-community](https://huggingface.co/gliner-community).
 
1
  ---
 
2
  license: apache-2.0
3
+ language:
4
+ - multilingual
5
+ library_name: glitext
6
+ datasets:
7
+ - urchade/pile-mistral-v0.1
8
+ pipeline_tag: token-classification
9
  tags:
10
  - glitext
11
  glitext:
12
  name: small
13
  label: GliText Recognition (Fast)
14
+ description: An efficient zero-shot named entity recognition model tuned for generalized
15
+ extraction with high throughput (speed).
16
  recognition: true
17
  classification: false
18
  association: false
19
  span_mode: true
20
  size_gb: 0.68
21
+ hf_repo: sassoftware/glitext-small
22
  source_url: gliner-community/gliner_small-v2.5
23
  ---
24
 
25
+ # About
26
+
27
+ GLiNER is a Named Entity Recognition (NER) model capable of identifying any entity type using a bidirectional transformer encoder (BERT-like). It provides a practical alternative to traditional NER models, which are limited to predefined entities, and Large Language Models (LLMs) that, despite their flexibility, are costly and large for resource-constrained scenarios.
28
+
29
+
30
+ ## Links
31
+
32
+ * Paper: https://arxiv.org/abs/2311.08526
33
+ * Repository: https://github.com/urchade/GLiNER
34
+
35
+ ## Installation
36
+ To use this model, you must install the GLiNER Python library:
37
+ ```
38
+ !pip install gliner -U
39
+ ```
40
+
41
+ ## Usage
42
+ Once you've downloaded the GLiNER library, you can import the GLiNER class. You can then load this model using `GLiNER.from_pretrained` and predict entities with `predict_entities`.
43
+
44
+ ```python
45
+ from gliner import GLiNER
46
+
47
+ model = GLiNER.from_pretrained("gliner-community/gliner_small-v2.5", load_tokenizer=True)
48
+
49
+ text = """
50
+ Cristiano Ronaldo dos Santos Aveiro (Portuguese pronunciation: [kɾiʃˈtjɐnu ʁɔˈnaldu]; born 5 February 1985) is a Portuguese professional footballer who plays as a forward for and captains both Saudi Pro League club Al Nassr and the Portugal national team. Widely regarded as one of the greatest players of all time, Ronaldo has won five Ballon d'Or awards,[note 3] a record three UEFA Men's Player of the Year Awards, and four European Golden Shoes, the most by a European player. He has won 33 trophies in his career, including seven league titles, five UEFA Champions Leagues, the UEFA European Championship and the UEFA Nations League. Ronaldo holds the records for most appearances (183), goals (140) and assists (42) in the Champions League, goals in the European Championship (14), international goals (128) and international appearances (205). He is one of the few players to have made over 1,200 professional career appearances, the most by an outfield player, and has scored over 850 official senior career goals for club and country, making him the top goalscorer of all time.
51
+ """
52
+
53
+ labels = ["person", "award", "date", "competitions", "teams"]
54
+
55
+ entities = model.predict_entities(text, labels)
56
+
57
+ for entity in entities:
58
+ print(entity["text"], "=>", entity["label"])
59
+ ```
60
+
61
+ ```
62
+ Cristiano Ronaldo dos Santos Aveiro => person
63
+ 5 February 1985 => date
64
+ Al Nassr => teams
65
+ Portugal national team => teams
66
+ Ballon d'Or => award
67
+ UEFA Men's Player of the Year Awards => award
68
+ European Golden Shoes => award
69
+ UEFA Champions Leagues => competitions
70
+ UEFA European Championship => competitions
71
+ UEFA Nations League => competitions
72
+ Champions League => competitions
73
+ European Championship => competitions
74
+ ```
75
+
76
+ ## Named Entity Recognition benchmark result
77
+ Below is a comparison of results between previous versions of the model and the current one:
78
+ ![Models performance](models_comparison.png)
79
+
80
+ ### Results on other datasets
81
+ | Model | Dataset | Precision | Recall | F1 Score |
82
+ |------------------------------------|---------------------|-----------|--------|----------|
83
+ | gliner-community/gliner_small-v2.5 | ACE 2004 | 35.18% | 22.81% | 27.67% |
84
+ | | ACE 2005 | 35.89% | 22.39% | 27.58% |
85
+ | | AnatEM | 49.12% | 31.31% | 38.24% |
86
+ | | Broad Tweet Corpus | 59.51% | 77.85% | 67.46% |
87
+ | | CoNLL 2003 | 63.16% | 70.43% | 66.60% |
88
+ | | FabNER | 23.78% | 22.55% | 23.15% |
89
+ | | FindVehicle | 37.46% | 40.06% | 38.72% |
90
+ | | GENIA_NER | 45.90% | 54.11% | 49.67% |
91
+ | | HarveyNER | 13.20% | 32.58% | 18.78% |
92
+ | | MultiNERD | 45.87% | 87.01% | 60.07% |
93
+ | | Ontonotes | 23.05% | 41.16% | 29.55% |
94
+ | | PolyglotNER | 31.88% | 67.22% | 43.25% |
95
+ | | TweetNER7 | 40.98% | 39.91% | 40.44% |
96
+ | | WikiANN en | 55.35% | 60.06% | 57.61% |
97
+ | | WikiNeural | 64.52% | 86.24% | 73.81% |
98
+ | | bc2gm | 51.70% | 49.99% | 50.83% |
99
+ | | bc4chemd | 30.78% | 57.56% | 40.11% |
100
+ | | bc5cdr | 63.48% | 69.65% | 66.42% |
101
+ | | ncbi | 63.36% | 66.67% | 64.97% |
102
+ | | **Average** | | | **46.58%** |
103
+ |------------------------------------|---------------------|-----------|--------|----------|
104
+ | urchade/gliner_small-v2.1 | ACE 2004 | 38.89% | 23.53% | 29.32% |
105
+ | | ACE 2005 | 42.09% | 26.82% | 32.76% |
106
+ | | AnatEM | 63.71% | 19.45% | 29.80% |
107
+ | | Broad Tweet Corpus | 57.01% | 70.49% | 63.04% |
108
+ | | CoNLL 2003 | 57.11% | 62.66% | 59.76% |
109
+ | | FabNER | 32.41% | 12.33% | 17.87% |
110
+ | | FindVehicle | 43.47% | 33.02% | 37.53% |
111
+ | | GENIA_NER | 61.03% | 37.25% | 46.26% |
112
+ | | HarveyNER | 23.12% | 15.16% | 18.32% |
113
+ | | MultiNERD | 43.63% | 83.60% | 57.34% |
114
+ | | Ontonotes | 23.25% | 35.41% | 28.07% |
115
+ | | PolyglotNER | 29.47% | 64.41% | 40.44% |
116
+ | | TweetNER7 | 44.78% | 30.83% | 36.52% |
117
+ | | WikiANN en | 52.58% | 58.31% | 55.30% |
118
+ | | WikiNeural | 53.38% | 82.19% | 64.72% |
119
+ | | bc2gm | 66.64% | 30.56% | 41.90% |
120
+ | | bc4chemd | 42.01% | 56.03% | 48.02% |
121
+ | | bc5cdr | 72.03% | 58.58% | 64.61% |
122
+ | | ncbi | 68.88% | 46.71% | 55.67% |
123
+ | | **Average** | | | **43.54%** |
124
+ |------------------------------------|---------------------|-----------|--------|----------|
125
+ | EmergentMethods/gliner_small-v2.1 | ACE 2004 | 39.92% | 17.50% | 24.34% |
126
+ | | ACE 2005 | 38.53% | 16.58% | 23.18% |
127
+ | | AnatEM | 55.95% | 25.69% | 35.22% |
128
+ | | Broad Tweet Corpus | 66.63% | 72.00% | 69.21% |
129
+ | | CoNLL 2003 | 62.89% | 58.96% | 60.86% |
130
+ | | FabNER | 32.76% | 13.33% | 18.95% |
131
+ | | FindVehicle | 42.93% | 43.20% | 43.06% |
132
+ | | GENIA_NER | 51.28% | 43.75% | 47.22% |
133
+ | | HarveyNER | 24.82% | 21.52% | 23.05% |
134
+ | | MultiNERD | 59.27% | 80.69% | 68.34% |
135
+ | | Ontonotes | 32.97% | 37.59% | 35.13% |
136
+ | | PolyglotNER | 33.60% | 63.30% | 43.90% |
137
+ | | TweetNER7 | 46.90% | 28.66% | 35.58% |
138
+ | | WikiANN en | 51.91% | 55.43% | 53.61% |
139
+ | | WikiNeural | 70.65% | 82.21% | 75.99% |
140
+ | | bc2gm | 49.95% | 43.13% | 46.29% |
141
+ | | bc4chemd | 35.88% | 71.64% | 47.81% |
142
+ | | bc5cdr | 68.41% | 68.90% | 68.65% |
143
+ | | ncbi | 55.31% | 59.87% | 57.50% |
144
+ | | **Average** | | | **46.20%** |
145
+ |-----------------------------------------|---------------------|-----------|--------|----------|
146
+ | gliner-community/gliner_medium-v2.5 | ACE 2004 | 33.06% | 20.96% | 25.66% |
147
+ | | ACE 2005 | 33.65% | 19.65% | 24.81% |
148
+ | | AnatEM | 52.03% | 35.28% | 42.05% |
149
+ | | Broad Tweet Corpus | 60.57% | 79.09% | 68.60% |
150
+ | | CoNLL 2003 | 63.80% | 68.31% | 65.98% |
151
+ | | FabNER | 26.20% | 22.26% | 24.07% |
152
+ | | FindVehicle | 41.95% | 40.68% | 41.30% |
153
+ | | GENIA_NER | 51.83% | 62.34% | 56.60% |
154
+ | | HarveyNER | 14.04% | 32.17% | 19.55% |
155
+ | | MultiNERD | 47.63% | 88.78% | 62.00% |
156
+ | | Ontonotes | 21.68% | 38.41% | 27.71% |
157
+ | | PolyglotNER | 32.73% | 68.27% | 44.24% |
158
+ | | TweetNER7 | 40.39% | 37.64% | 38.97% |
159
+ | | WikiANN en | 56.41% | 59.90% | 58.10% |
160
+ | | WikiNeural | 65.61% | 86.28% | 74.54% |
161
+ | | bc2gm | 55.20% | 56.71% | 55.95% |
162
+ | | bc4chemd | 35.94% | 63.67% | 45.94% |
163
+ | | bc5cdr | 63.50% | 70.09% | 66.63% |
164
+ | | ncbi | 62.96% | 68.55% | 65.63% |
165
+ | | **Average** | | | **47.81%** |
166
+ |-----------------------------------------|---------------------|-----------|--------|----------|
167
+ | urchade/gliner_medium-v2.1 | ACE 2004 | 36.33% | 22.74% | 27.97% |
168
+ | | ACE 2005 | 40.49% | 25.46% | 31.27% |
169
+ | | AnatEM | 59.75% | 16.87% | 26.31% |
170
+ | | Broad Tweet Corpus | 60.89% | 67.25% | 63.91% |
171
+ | | CoNLL 2003 | 60.62% | 62.39% | 61.50% |
172
+ | | FabNER | 27.72% | 12.24% | 16.98% |
173
+ | | FindVehicle | 41.55% | 31.31% | 35.71% |
174
+ | | GENIA_NER | 60.86% | 43.93% | 51.03% |
175
+ | | HarveyNER | 23.20% | 23.16% | 23.18% |
176
+ | | MultiNERD | 41.25% | 83.74% | 55.27% |
177
+ | | Ontonotes | 20.58% | 34.11% | 25.67% |
178
+ | | PolyglotNER | 31.32% | 64.22% | 42.11% |
179
+ | | TweetNER7 | 44.52% | 33.42% | 38.18% |
180
+ | | WikiANN en | 54.57% | 56.47% | 55.51% |
181
+ | | WikiNeural | 57.60% | 81.57% | 67.52% |
182
+ | | bc2gm | 67.98% | 33.45% | 44.84% |
183
+ | | bc4chemd | 45.66% | 52.00% | 48.62% |
184
+ | | bc5cdr | 72.20% | 58.12% | 64.40% |
185
+ | | ncbi | 73.12% | 49.74% | 59.20% |
186
+ | | **Average** | | | **44.17%** |
187
+ |-----------------------------------------|---------------------|-----------|--------|----------|
188
+ | EmergentMethods/gliner_news_medium-v2.1 | ACE 2004 | 39.21% | 17.24% | 23.95% |
189
+ | | ACE 2005 | 39.82% | 16.48% | 23.31% |
190
+ | | AnatEM | 57.67% | 23.57% | 33.46% |
191
+ | | Broad Tweet Corpus | 69.52% | 65.94% | 67.69% |
192
+ | | CoNLL 2003 | 68.26% | 58.45% | 62.97% |
193
+ | | FabNER | 30.74% | 15.51% | 20.62% |
194
+ | | FindVehicle | 40.33% | 37.37% | 38.79% |
195
+ | | GENIA_NER | 53.70% | 47.73% | 50.54% |
196
+ | | HarveyNER | 26.29% | 27.05% | 26.67% |
197
+ | | MultiNERD | 56.78% | 81.96% | 67.08% |
198
+ | | Ontonotes | 30.90% | 35.86% | 33.19% |
199
+ | | PolyglotNER | 35.98% | 60.96% | 45.25% |
200
+ | | TweetNER7 | 52.37% | 30.50% | 38.55% |
201
+ | | WikiANN en | 53.81% | 52.29% | 53.04% |
202
+ | | WikiNeural | 76.84% | 78.92% | 77.86% |
203
+ | | bc2gm | 62.97% | 44.24% | 51.96% |
204
+ | | bc4chemd | 44.90% | 65.56% | 53.30% |
205
+ | | bc5cdr | 73.93% | 67.03% | 70.31% |
206
+ | | ncbi | 69.53% | 60.82% | 64.88% |
207
+ | | **Average** | | | **47.55%** |
208
+ |-----------------------------------------|---------------------|-----------|--------|----------|
209
+ | gliner-community/gliner_large-v2.5 | ACE 2004 | 31.64% | 22.81% | 26.51% |
210
+ | | ACE 2005 | 32.10% | 22.56% | 26.49% |
211
+ | | AnatEM | 53.64% | 27.82% | 36.64% |
212
+ | | Broad Tweet Corpus | 61.93% | 76.85% | 68.59% |
213
+ | | CoNLL 2003 | 62.83% | 67.71% | 65.18% |
214
+ | | FabNER | 24.54% | 27.03% | 25.73% |
215
+ | | FindVehicle | 40.71% | 56.24% | 47.23% |
216
+ | | GENIA_NER | 43.56% | 52.56% | 47.64% |
217
+ | | HarveyNER | 14.85% | 27.05% | 19.17% |
218
+ | | MultiNERD | 38.04% | 89.17% | 53.33% |
219
+ | | Ontonotes | 17.28% | 40.16% | 24.16% |
220
+ | | PolyglotNER | 32.88% | 63.31% | 43.28% |
221
+ | | TweetNER7 | 38.03% | 41.43% | 39.66% |
222
+ | | WikiANN en | 57.80% | 60.54% | 59.14% |
223
+ | | WikiNeural | 67.72% | 83.94% | 74.96% |
224
+ | | bc2gm | 54.74% | 48.54% | 51.45% |
225
+ | | bc4chemd | 40.20% | 58.66% | 47.71% |
226
+ | | bc5cdr | 66.27% | 71.95% | 69.00% |
227
+ | | ncbi | 68.09% | 61.55% | 64.65% |
228
+ | | **Average** | | | **46.87%** |
229
+ |-----------------------------------------|---------------------|-----------|--------|----------|
230
+ | urchade/gliner_large-v2.1 | ACE 2004 | 37.52% | 25.38% | 30.28% |
231
+ | | ACE 2005 | 39.02% | 29.00% | 33.27% |
232
+ | | AnatEM | 52.86% | 13.64% | 21.68% |
233
+ | | Broad Tweet Corpus | 51.44% | 71.73% | 59.91% |
234
+ | | CoNLL 2003 | 54.86% | 64.98% | 59.49% |
235
+ | | FabNER | 23.98% | 16.00% | 19.19% |
236
+ | | FindVehicle | 47.04% | 57.53% | 51.76% |
237
+ | | GENIA_NER | 58.10% | 49.98% | 53.74% |
238
+ | | HarveyNER | 16.29% | 21.93% | 18.69% |
239
+ | | MultiNERD | 34.09% | 85.43% | 48.74% |
240
+ | | Ontonotes | 14.02% | 32.01% | 19.50% |
241
+ | | PolyglotNER | 28.53% | 64.92% | 39.64% |
242
+ | | TweetNER7 | 38.00% | 34.34% | 36.08% |
243
+ | | WikiANN en | 51.69% | 59.92% | 55.50% |
244
+ | | WikiNeural | 50.94% | 82.08% | 62.87% |
245
+ | | bc2gm | 64.48% | 32.47% | 43.19% |
246
+ | | bc4chemd | 48.66% | 57.52% | 52.72% |
247
+ | | bc5cdr | 72.19% | 64.27% | 68.00% |
248
+ | | ncbi | 69.54% | 52.25% | 59.67% |
249
+ | | **Average** | | | **43.89%** |
250
+ |-----------------------------------------|---------------------|-----------|--------|----------|
251
+ | EmergenMethods/fliner_news_large-v2.1 | ACE 2004 | 43.19% | 18.39% | 25.80% |
252
+ | | ACE 2005 | 45.24% | 21.20% | 28.87% |
253
+ | | AnatEM | 61.51% | 21.66% | 32.04% |
254
+ | | Broad Tweet Corpus | 69.38% | 68.99% | 69.18% |
255
+ | | CoNLL 2003 | 61.47% | 52.18% | 56.45% |
256
+ | | FabNER | 27.42% | 19.11% | 22.52% |
257
+ | | FindVehicle | 46.30% | 62.48% | 53.19% |
258
+ | | GENIA_NER | 54.13% | 54.02% | 54.07% |
259
+ | | HarveyNER | 15.91% | 15.78% | 15.84% |
260
+ | | MultiNERD | 53.73% | 79.07% | 63.98% |
261
+ | | Ontonotes | 26.78% | 39.77% | 32.01% |
262
+ | | PolyglotNER | 34.28% | 55.87% | 42.49% |
263
+ | | TweetNER7 | 48.06% | 28.18% | 35.53% |
264
+ | | WikiANN en | 53.66% | 51.34% | 52.47% |
265
+ | | WikiNeural | 69.81% | 70.75% | 70.28% |
266
+ | | bc2gm | 59.83% | 37.62% | 46.20% |
267
+ | | bc4chemd | 46.24% | 69.15% | 55.42% |
268
+ | | bc5cdr | 71.94% | 70.37% | 71.15% |
269
+ | | ncbi | 70.17% | 61.44% | 65.52% |
270
+ | | **Average** | | | **47.00%** |
271
+ |-----------------------------------------|---------------------|-----------|--------|----------|
272
+
273
+ ## Other available models
274
+
275
+ | Release | Model Name | # of Parameters | Language | License |
276
+ | - | - | - | - | - |
277
+ | v0 | [urchade/gliner_base](https://huggingface.co/urchade/gliner_base)<br>[urchade/gliner_multi](https://huggingface.co/urchade/gliner_multi) | 209M<br>209M | English<br>Multilingual | cc-by-nc-4.0 |
278
+ | v1 | [urchade/gliner_small-v1](https://huggingface.co/urchade/gliner_small-v1)<br>[urchade/gliner_medium-v1](https://huggingface.co/urchade/gliner_medium-v1)<br>[urchade/gliner_large-v1](https://huggingface.co/urchade/gliner_large-v1) | 166M<br>209M<br>459M | English <br> English <br> English | cc-by-nc-4.0 |
279
+ | v2 | [urchade/gliner_small-v2](https://huggingface.co/urchade/gliner_small-v2)<br>[urchade/gliner_medium-v2](https://huggingface.co/urchade/gliner_medium-v2)<br>[urchade/gliner_large-v2](https://huggingface.co/urchade/gliner_large-v2) | 166M<br>209M<br>459M | English <br> English <br> English | apache-2.0 |
280
+ | v2.1 | [urchade/gliner_small-v2.1](https://huggingface.co/urchade/gliner_small-v2.1)<br>[urchade/gliner_medium-v2.1](https://huggingface.co/urchade/gliner_medium-v2.1)<br>[urchade/gliner_large-v2.1](https://huggingface.co/urchade/gliner_large-v2.1) <br>[urchade/gliner_multi-v2.1](https://huggingface.co/urchade/gliner_multi-v2.1) | 166M<br>209M<br>459M<br>209M | English <br> English <br> English <br> Multilingual | apache-2.0 |
281
+
282
+
283
+ ## Model Authors
284
+ The model authors are:
285
+ * [Urchade Zaratiana](https://huggingface.co/urchade)
286
+ * [Ihor Stepanov](https://huggingface.co/Ihor)
287
+ * Nadi Tomeh
288
+ * Pierre Holat
289
+ * Thierry Charnois
290
+
291
+ ## Citation
292
+ ```bibtex
293
+ @misc{zaratiana2023gliner,
294
+ title={GLiNER: Generalist Model for Named Entity Recognition using Bidirectional Transformer},
295
+ author={Urchade Zaratiana and Nadi Tomeh and Pierre Holat and Thierry Charnois},
296
+ year={2023},
297
+ eprint={2311.08526},
298
+ archivePrefix={arXiv},
299
+ primaryClass={cs.CL}
300
+ }
301
+ ```
302
+
303
+ ## Source Model Repo
304
+
305
+ This model is derived from [`gliner-community/gliner_small-v2.5`](https://huggingface.co/gliner-community/gliner_small-v2.5). See the upstream repository for the original safetensors weights, training data, and the full upstream model card.
306
+
307
+ ## ONNX Weights
308
+
309
+ ONNX weights added by SAS — converted from the upstream safetensors checkpoint.
310
 
311
+ File in this repo: `model.onnx`.
312
 
313
+ ## Using this Model with the SAS GLiText API
314
 
315
+ This repo is consumed by the SAS GLiText product. To download it onto a SAS GLiText server:
316
 
317
  ```
318
  POST /v1/models/download?name=small
 
324
  PUT /v1/models?name=small
325
  ```
326
 
 
 
 
 
 
327
  ## Security Scan
328
 
329
  Scanned with [modelaudit](https://github.com/promptfoo/modelaudit) v0.2.40 on 2026-04-27. 46/46 checks passed. [Full results](modelaudit.json).
 
334
  | `model.onnx` | 664.8 MB | `9cc27f025c07c318…` |
335
  | `model_fp16.onnx` | 333.0 MB | `9e14220fb41ebe6c…` |
336
  | `model_int8.onnx` | 196.8 MB | `791f20d6f34d4a4d…` |