HoangVuSnape
commited on
Upload config
Browse files- README.md +15 -15
- config.json +9 -1
README.md
CHANGED
@@ -1,27 +1,27 @@
|
|
1 |
---
|
2 |
-
license: apache-2.0
|
3 |
base_model: bert-base-cased
|
4 |
-
tags:
|
5 |
-
- generated_from_trainer
|
6 |
datasets:
|
7 |
- glue
|
|
|
8 |
metrics:
|
9 |
- accuracy
|
10 |
- f1
|
|
|
|
|
11 |
model-index:
|
12 |
- name: finetuned-bert-mrpc
|
13 |
-
results:
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
---
|
26 |
|
27 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
|
|
1 |
---
|
|
|
2 |
base_model: bert-base-cased
|
|
|
|
|
3 |
datasets:
|
4 |
- glue
|
5 |
+
license: apache-2.0
|
6 |
metrics:
|
7 |
- accuracy
|
8 |
- f1
|
9 |
+
tags:
|
10 |
+
- generated_from_trainer
|
11 |
model-index:
|
12 |
- name: finetuned-bert-mrpc
|
13 |
+
results:
|
14 |
+
- task:
|
15 |
+
type: text-classification
|
16 |
+
name: Text Classification
|
17 |
+
dataset:
|
18 |
+
name: glue
|
19 |
+
type: glue
|
20 |
+
args: mrpc
|
21 |
+
metrics:
|
22 |
+
- type: f1
|
23 |
+
value: 0.8998
|
24 |
+
name: F1
|
25 |
---
|
26 |
|
27 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
config.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
{
|
2 |
-
"_name_or_path": "bert-
|
3 |
"architectures": [
|
4 |
"BertForSequenceClassification"
|
5 |
],
|
@@ -9,8 +9,16 @@
|
|
9 |
"hidden_act": "gelu",
|
10 |
"hidden_dropout_prob": 0.1,
|
11 |
"hidden_size": 768,
|
|
|
|
|
|
|
|
|
12 |
"initializer_range": 0.02,
|
13 |
"intermediate_size": 3072,
|
|
|
|
|
|
|
|
|
14 |
"layer_norm_eps": 1e-12,
|
15 |
"max_position_embeddings": 512,
|
16 |
"model_type": "bert",
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "HoangVuSnape/finetuned-bert-mrpc",
|
3 |
"architectures": [
|
4 |
"BertForSequenceClassification"
|
5 |
],
|
|
|
9 |
"hidden_act": "gelu",
|
10 |
"hidden_dropout_prob": 0.1,
|
11 |
"hidden_size": 768,
|
12 |
+
"id2label": {
|
13 |
+
"0": "not equivalent",
|
14 |
+
"1": "equivalent"
|
15 |
+
},
|
16 |
"initializer_range": 0.02,
|
17 |
"intermediate_size": 3072,
|
18 |
+
"label2id": {
|
19 |
+
"equivalent": 1,
|
20 |
+
"not equivalent": 0
|
21 |
+
},
|
22 |
"layer_norm_eps": 1e-12,
|
23 |
"max_position_embeddings": 512,
|
24 |
"model_type": "bert",
|