andreiliphdpr
commited on
Commit
•
c3d5169
1
Parent(s):
24a1215
Training in progress epoch 0
Browse files- README.md +9 -13
- config.json +22 -15
- tf_model.h5 +2 -2
- tokenizer.json +0 -0
- tokenizer_config.json +1 -1
- vocab.txt +0 -0
README.md
CHANGED
@@ -3,22 +3,22 @@ license: apache-2.0
|
|
3 |
tags:
|
4 |
- generated_from_keras_callback
|
5 |
model-index:
|
6 |
-
- name: andreiliphdpr/
|
7 |
results: []
|
8 |
---
|
9 |
|
10 |
<!-- This model card has been generated automatically according to the information Keras had access to. You should
|
11 |
probably proofread and complete it, then remove this comment. -->
|
12 |
|
13 |
-
# andreiliphdpr/
|
14 |
|
15 |
-
This model is a fine-tuned version of [
|
16 |
It achieves the following results on the evaluation set:
|
17 |
-
- Train Loss: 0.
|
18 |
-
- Train Accuracy: 0.
|
19 |
-
- Validation Loss: 0.
|
20 |
-
- Validation Accuracy: 0.
|
21 |
-
- Epoch:
|
22 |
|
23 |
## Model description
|
24 |
|
@@ -44,11 +44,7 @@ The following hyperparameters were used during training:
|
|
44 |
|
45 |
| Train Loss | Train Accuracy | Validation Loss | Validation Accuracy | Epoch |
|
46 |
|:----------:|:--------------:|:---------------:|:-------------------:|:-----:|
|
47 |
-
| 0.
|
48 |
-
| 0.0182 | 0.9944 | 0.0326 | 0.9901 | 1 |
|
49 |
-
| 0.0089 | 0.9971 | 0.0396 | 0.9912 | 2 |
|
50 |
-
| 0.0040 | 0.9987 | 0.0486 | 0.9918 | 3 |
|
51 |
-
| 0.0015 | 0.9995 | 0.0570 | 0.9915 | 4 |
|
52 |
|
53 |
|
54 |
### Framework versions
|
|
|
3 |
tags:
|
4 |
- generated_from_keras_callback
|
5 |
model-index:
|
6 |
+
- name: andreiliphdpr/bert-base-multilingual-uncased-finetuned-cola
|
7 |
results: []
|
8 |
---
|
9 |
|
10 |
<!-- This model card has been generated automatically according to the information Keras had access to. You should
|
11 |
probably proofread and complete it, then remove this comment. -->
|
12 |
|
13 |
+
# andreiliphdpr/bert-base-multilingual-uncased-finetuned-cola
|
14 |
|
15 |
+
This model is a fine-tuned version of [bert-base-multilingual-uncased](https://huggingface.co/bert-base-multilingual-uncased) on an unknown dataset.
|
16 |
It achieves the following results on the evaluation set:
|
17 |
+
- Train Loss: 0.0423
|
18 |
+
- Train Accuracy: 0.9869
|
19 |
+
- Validation Loss: 0.0303
|
20 |
+
- Validation Accuracy: 0.9913
|
21 |
+
- Epoch: 0
|
22 |
|
23 |
## Model description
|
24 |
|
|
|
44 |
|
45 |
| Train Loss | Train Accuracy | Validation Loss | Validation Accuracy | Epoch |
|
46 |
|:----------:|:--------------:|:---------------:|:-------------------:|:-----:|
|
47 |
+
| 0.0423 | 0.9869 | 0.0303 | 0.9913 | 0 |
|
|
|
|
|
|
|
|
|
48 |
|
49 |
|
50 |
### Framework versions
|
config.json
CHANGED
@@ -1,23 +1,30 @@
|
|
1 |
{
|
2 |
-
"_name_or_path": "
|
3 |
-
"activation": "gelu",
|
4 |
"architectures": [
|
5 |
-
"
|
6 |
],
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
|
|
|
|
11 |
"initializer_range": 0.02,
|
|
|
|
|
12 |
"max_position_embeddings": 512,
|
13 |
-
"model_type": "
|
14 |
-
"
|
15 |
-
"
|
16 |
"pad_token_id": 0,
|
17 |
-
"
|
18 |
-
"
|
19 |
-
"
|
20 |
-
"
|
|
|
|
|
21 |
"transformers_version": "4.15.0.dev0",
|
22 |
-
"
|
|
|
|
|
23 |
}
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "bert-base-multilingual-uncased",
|
|
|
3 |
"architectures": [
|
4 |
+
"BertForSequenceClassification"
|
5 |
],
|
6 |
+
"attention_probs_dropout_prob": 0.1,
|
7 |
+
"classifier_dropout": null,
|
8 |
+
"directionality": "bidi",
|
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",
|
17 |
+
"num_attention_heads": 12,
|
18 |
+
"num_hidden_layers": 12,
|
19 |
"pad_token_id": 0,
|
20 |
+
"pooler_fc_size": 768,
|
21 |
+
"pooler_num_attention_heads": 12,
|
22 |
+
"pooler_num_fc_layers": 3,
|
23 |
+
"pooler_size_per_head": 128,
|
24 |
+
"pooler_type": "first_token_transform",
|
25 |
+
"position_embedding_type": "absolute",
|
26 |
"transformers_version": "4.15.0.dev0",
|
27 |
+
"type_vocab_size": 2,
|
28 |
+
"use_cache": true,
|
29 |
+
"vocab_size": 105879
|
30 |
}
|
tf_model.h5
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:d4e2b6127d711d248ce2b32db3936ebe522130127426935e5b40d7c2d8f5bbe6
|
3 |
+
size 669719896
|
tokenizer.json
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"do_lower_case": true, "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "tokenize_chinese_chars": true, "strip_accents": null, "model_max_length": 512, "special_tokens_map_file": null, "name_or_path": "
|
|
|
1 |
+
{"do_lower_case": true, "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "tokenize_chinese_chars": true, "strip_accents": null, "model_max_length": 512, "special_tokens_map_file": null, "name_or_path": "bert-base-multilingual-uncased", "tokenizer_class": "BertTokenizer"}
|
vocab.txt
CHANGED
The diff for this file is too large to render.
See raw diff
|
|