mrfriedpotato
commited on
Commit
•
6245f6b
1
Parent(s):
d94d51b
Upload 5 files
Browse files- config.json +11 -11
- pytorch_model.bin +2 -2
- tokenizer_config.json +4 -2
- vocab.txt +0 -0
config.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
{
|
2 |
-
"_name_or_path": "bert-base-
|
3 |
"architectures": [
|
4 |
"BertForSequenceClassification"
|
5 |
],
|
@@ -10,20 +10,20 @@
|
|
10 |
"hidden_dropout_prob": 0.1,
|
11 |
"hidden_size": 768,
|
12 |
"id2label": {
|
13 |
-
"0": "
|
14 |
"1": "minutes",
|
15 |
-
"2": "
|
16 |
-
"3": "
|
17 |
-
"4": "
|
18 |
},
|
19 |
"initializer_range": 0.02,
|
20 |
"intermediate_size": 3072,
|
21 |
"label2id": {
|
22 |
-
"
|
23 |
"minutes": 1,
|
24 |
-
"
|
25 |
-
"
|
26 |
-
"
|
27 |
},
|
28 |
"layer_norm_eps": 1e-12,
|
29 |
"max_position_embeddings": 512,
|
@@ -34,8 +34,8 @@
|
|
34 |
"position_embedding_type": "absolute",
|
35 |
"problem_type": "single_label_classification",
|
36 |
"torch_dtype": "float32",
|
37 |
-
"transformers_version": "4.
|
38 |
"type_vocab_size": 2,
|
39 |
"use_cache": true,
|
40 |
-
"vocab_size":
|
41 |
}
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "bert-base-uncased",
|
3 |
"architectures": [
|
4 |
"BertForSequenceClassification"
|
5 |
],
|
|
|
10 |
"hidden_dropout_prob": 0.1,
|
11 |
"hidden_size": 768,
|
12 |
"id2label": {
|
13 |
+
"0": "hours",
|
14 |
"1": "minutes",
|
15 |
+
"2": "days",
|
16 |
+
"3": "months-or-longer",
|
17 |
+
"4": "seconds"
|
18 |
},
|
19 |
"initializer_range": 0.02,
|
20 |
"intermediate_size": 3072,
|
21 |
"label2id": {
|
22 |
+
"hours": 0,
|
23 |
"minutes": 1,
|
24 |
+
"days": 2,
|
25 |
+
"months-or-longer": 3,
|
26 |
+
"seconds": 4
|
27 |
},
|
28 |
"layer_norm_eps": 1e-12,
|
29 |
"max_position_embeddings": 512,
|
|
|
34 |
"position_embedding_type": "absolute",
|
35 |
"problem_type": "single_label_classification",
|
36 |
"torch_dtype": "float32",
|
37 |
+
"transformers_version": "4.26.0",
|
38 |
"type_vocab_size": 2,
|
39 |
"use_cache": true,
|
40 |
+
"vocab_size": 30522
|
41 |
}
|
pytorch_model.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5db4a27d15634be90695f7db3011318906110bc78c0c8fae1d90d21a9cf3baeb
|
3 |
+
size 438017141
|
tokenizer_config.json
CHANGED
@@ -1,9 +1,11 @@
|
|
1 |
{
|
2 |
"cls_token": "[CLS]",
|
3 |
-
"
|
|
|
4 |
"mask_token": "[MASK]",
|
5 |
"model_max_length": 512,
|
6 |
-
"name_or_path": "bert-base-
|
|
|
7 |
"pad_token": "[PAD]",
|
8 |
"sep_token": "[SEP]",
|
9 |
"special_tokens_map_file": null,
|
|
|
1 |
{
|
2 |
"cls_token": "[CLS]",
|
3 |
+
"do_basic_tokenize": true,
|
4 |
+
"do_lower_case": true,
|
5 |
"mask_token": "[MASK]",
|
6 |
"model_max_length": 512,
|
7 |
+
"name_or_path": "bert-base-uncased",
|
8 |
+
"never_split": null,
|
9 |
"pad_token": "[PAD]",
|
10 |
"sep_token": "[SEP]",
|
11 |
"special_tokens_map_file": null,
|
vocab.txt
CHANGED
The diff for this file is too large to render.
See raw diff
|
|