tliumozilla commited on
Commit
876cfbc
·
1 Parent(s): 4f22633

update intent detection model to v0.3

Browse files
config.json CHANGED
@@ -1,5 +1,5 @@
1
  {
2
- "_name_or_path": "results_mobilebert_revised/checkpoints",
3
  "architectures": [
4
  "MobileBertForSequenceClassification"
5
  ],
 
1
  {
2
+ "_name_or_path": "csarron/mobilebert-uncased-squad-v2",
3
  "architectures": [
4
  "MobileBertForSequenceClassification"
5
  ],
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7623ece5a36d91f94d96b48215de80e7108f6f472f0febcae1fafd287056a04f
3
  size 98470112
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2263233a5e855b80c2ab98b0669e2a84494c18d1d362e081fbba424edd7df5f5
3
  size 98470112
onnx/model.onnx CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:face46658e91bac9a0afdeeea341a6a97ff01c22fdf9dde2743a8bf60e1f6c7a
3
  size 99184411
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:021d9764b257d387d94e72b137a0b7541e9ad2a8309387b25b20d6242f38e856
3
  size 99184411
onnx/model_fp16.onnx CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8b0b7d32c2da020b02652ab346cb4793a3afe0e17a26c3aecf52c61830561430
3
  size 50018806
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:03f66c6de2b42677b9b3f3aa9a060021456e052f052c07ad987b5bf89bb59b82
3
  size 50018806
onnx/model_q4.onnx CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:0489c397c60c93ee3839a70d8652b3dc51069c9fe0302cdf6e6103672631b543
3
  size 30891499
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88a951c95b4d25c826b6bcb1313cde7b30dd9329bb239a04213ac23864358d96
3
  size 30891499
onnx/model_quantized.onnx CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f2545691702459a315f1fa770f217abf4a8501663b597bca6f9630335413b233
3
  size 26916339
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a1e1033cacabe5676bcfdda21b5e0f26fc82440135fb26b015432370475aa704
3
  size 26916339
special_tokens_map.json CHANGED
@@ -1,37 +1,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
  }
 
1
  {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  }