Commit
·
9b6d85f
1
Parent(s):
01a5d02
add model
Browse files- README.md +72 -0
- config.json +23 -0
- tf_model.h5 +3 -0
README.md
ADDED
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
tags:
|
4 |
+
- generated_from_keras_callback
|
5 |
+
model-index:
|
6 |
+
- name: distilbert_oscarth_0020
|
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 |
+
# distilbert_oscarth_0020
|
14 |
+
|
15 |
+
This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on an unknown dataset.
|
16 |
+
It achieves the following results on the evaluation set:
|
17 |
+
- Train Loss: 1.4909
|
18 |
+
- Validation Loss: 1.4161
|
19 |
+
- Epoch: 19
|
20 |
+
|
21 |
+
## Model description
|
22 |
+
|
23 |
+
More information needed
|
24 |
+
|
25 |
+
## Intended uses & limitations
|
26 |
+
|
27 |
+
More information needed
|
28 |
+
|
29 |
+
## Training and evaluation data
|
30 |
+
|
31 |
+
More information needed
|
32 |
+
|
33 |
+
## Training procedure
|
34 |
+
|
35 |
+
### Training hyperparameters
|
36 |
+
|
37 |
+
The following hyperparameters were used during training:
|
38 |
+
- optimizer: {'name': 'AdamWeightDecay', 'learning_rate': 2e-05, 'decay': 0.0, 'beta_1': 0.9, 'beta_2': 0.999, 'epsilon': 1e-07, 'amsgrad': False, 'weight_decay_rate': 0.01}
|
39 |
+
- training_precision: float32
|
40 |
+
|
41 |
+
### Training results
|
42 |
+
|
43 |
+
| Train Loss | Validation Loss | Epoch |
|
44 |
+
|:----------:|:---------------:|:-----:|
|
45 |
+
| 4.1327 | 2.9983 | 0 |
|
46 |
+
| 2.7813 | 2.4562 | 1 |
|
47 |
+
| 2.4194 | 2.2066 | 2 |
|
48 |
+
| 2.2231 | 2.0562 | 3 |
|
49 |
+
| 2.0894 | 1.9450 | 4 |
|
50 |
+
| 1.9905 | 1.8621 | 5 |
|
51 |
+
| 1.9148 | 1.7941 | 6 |
|
52 |
+
| 1.8508 | 1.7363 | 7 |
|
53 |
+
| 1.7976 | 1.6909 | 8 |
|
54 |
+
| 1.7509 | 1.6488 | 9 |
|
55 |
+
| 1.7126 | 1.6124 | 10 |
|
56 |
+
| 1.6764 | 1.5835 | 11 |
|
57 |
+
| 1.6450 | 1.5521 | 12 |
|
58 |
+
| 1.6175 | 1.5282 | 13 |
|
59 |
+
| 1.5919 | 1.5045 | 14 |
|
60 |
+
| 1.5679 | 1.4833 | 15 |
|
61 |
+
| 1.5476 | 1.4627 | 16 |
|
62 |
+
| 1.5271 | 1.4498 | 17 |
|
63 |
+
| 1.5098 | 1.4270 | 18 |
|
64 |
+
| 1.4909 | 1.4161 | 19 |
|
65 |
+
|
66 |
+
|
67 |
+
### Framework versions
|
68 |
+
|
69 |
+
- Transformers 4.20.1
|
70 |
+
- TensorFlow 2.8.2
|
71 |
+
- Datasets 2.3.2
|
72 |
+
- Tokenizers 0.12.1
|
config.json
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "distilbert-base-uncased",
|
3 |
+
"activation": "gelu",
|
4 |
+
"architectures": [
|
5 |
+
"DistilBertForMaskedLM"
|
6 |
+
],
|
7 |
+
"attention_dropout": 0.1,
|
8 |
+
"dim": 768,
|
9 |
+
"dropout": 0.1,
|
10 |
+
"hidden_dim": 3072,
|
11 |
+
"initializer_range": 0.02,
|
12 |
+
"max_position_embeddings": 512,
|
13 |
+
"model_type": "distilbert",
|
14 |
+
"n_heads": 12,
|
15 |
+
"n_layers": 6,
|
16 |
+
"pad_token_id": 0,
|
17 |
+
"qa_dropout": 0.1,
|
18 |
+
"seq_classif_dropout": 0.2,
|
19 |
+
"sinusoidal_pos_embds": false,
|
20 |
+
"tie_weights_": true,
|
21 |
+
"transformers_version": "4.20.1",
|
22 |
+
"vocab_size": 27672
|
23 |
+
}
|
tf_model.h5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9c019aff3a7b68efd4a89763bb6cc4a703888df3277ddb0e207fc6be37d3456f
|
3 |
+
size 431026784
|