Upload 10 files
Browse filesdistilbert-uncased-NER-LoRA model
- config.json +2 -3
- onnx/model.onnx +3 -0
- onnx/model_fp16.onnx +3 -0
- onnx/model_q4.onnx +3 -0
- onnx/model_quantized.onnx +3 -0
- quantize_config.json +11 -0
- special_tokens_map.json +35 -5
config.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
{
|
2 |
-
"_name_or_path": "
|
3 |
"activation": "gelu",
|
4 |
"architectures": [
|
5 |
"DistilBertForTokenClassification"
|
@@ -40,7 +40,6 @@
|
|
40 |
"seq_classif_dropout": 0.2,
|
41 |
"sinusoidal_pos_embds": false,
|
42 |
"tie_weights_": true,
|
43 |
-
"
|
44 |
-
"transformers_version": "4.44.2",
|
45 |
"vocab_size": 30522
|
46 |
}
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "Mozilla/distilbert-uncased-NER-LoRA",
|
3 |
"activation": "gelu",
|
4 |
"architectures": [
|
5 |
"DistilBertForTokenClassification"
|
|
|
40 |
"seq_classif_dropout": 0.2,
|
41 |
"sinusoidal_pos_embds": false,
|
42 |
"tie_weights_": true,
|
43 |
+
"transformers_version": "4.43.4",
|
|
|
44 |
"vocab_size": 30522
|
45 |
}
|
onnx/model.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:df42eac4c918183d281c2bad55071d2358c9e5c606b8ebc232eaa535ba4c502c
|
3 |
+
size 265627936
|
onnx/model_fp16.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6d508200d3abbed6fdde9034d6d5363eab169799a2f90d9a904e6db43163488f
|
3 |
+
size 132888266
|
onnx/model_q4.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5771805f90449ac46a362308d338823234f4c4cfa43d52e039069f2e1e7c6c26
|
3 |
+
size 122282793
|
onnx/model_quantized.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8f29b68c8361e0917b01e5529f9c33531640f33586004aee19d596794b52e178
|
3 |
+
size 66960304
|
quantize_config.json
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"modes": [
|
3 |
+
"q4"
|
4 |
+
],
|
5 |
+
"per_channel": true,
|
6 |
+
"reduce_range": true,
|
7 |
+
"block_size": null,
|
8 |
+
"is_symmetric": true,
|
9 |
+
"accuracy_level": null,
|
10 |
+
"quant_type": 1
|
11 |
+
}
|
special_tokens_map.json
CHANGED
@@ -1,7 +1,37 @@
|
|
1 |
{
|
2 |
-
"cls_token":
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
}
|
|
|
1 |
{
|
2 |
+
"cls_token": {
|
3 |
+
"content": "[CLS]",
|
4 |
+
"lstrip": false,
|
5 |
+
"normalized": false,
|
6 |
+
"rstrip": false,
|
7 |
+
"single_word": false
|
8 |
+
},
|
9 |
+
"mask_token": {
|
10 |
+
"content": "[MASK]",
|
11 |
+
"lstrip": false,
|
12 |
+
"normalized": false,
|
13 |
+
"rstrip": false,
|
14 |
+
"single_word": false
|
15 |
+
},
|
16 |
+
"pad_token": {
|
17 |
+
"content": "[PAD]",
|
18 |
+
"lstrip": false,
|
19 |
+
"normalized": false,
|
20 |
+
"rstrip": false,
|
21 |
+
"single_word": false
|
22 |
+
},
|
23 |
+
"sep_token": {
|
24 |
+
"content": "[SEP]",
|
25 |
+
"lstrip": false,
|
26 |
+
"normalized": false,
|
27 |
+
"rstrip": false,
|
28 |
+
"single_word": false
|
29 |
+
},
|
30 |
+
"unk_token": {
|
31 |
+
"content": "[UNK]",
|
32 |
+
"lstrip": false,
|
33 |
+
"normalized": false,
|
34 |
+
"rstrip": false,
|
35 |
+
"single_word": false
|
36 |
+
}
|
37 |
}
|