add model
Browse files- README.md +48 -0
- config.json +47 -0
- pytorch_model.bin +3 -0
- special_tokens_map.json +1 -0
- tokenizer.json +0 -0
- tokenizer_config.json +1 -0
- vocab.txt +0 -0
README.md
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
|
3 |
+
model-index:
|
4 |
+
- name: squad-mbart-model
|
5 |
+
---
|
6 |
+
|
7 |
+
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
8 |
+
should probably proofread and complete it, then remove this comment. -->
|
9 |
+
|
10 |
+
# squad-mbart-model
|
11 |
+
|
12 |
+
This model was trained from scratch on an unkown dataset.
|
13 |
+
|
14 |
+
## Model description
|
15 |
+
|
16 |
+
More information needed
|
17 |
+
|
18 |
+
## Intended uses & limitations
|
19 |
+
|
20 |
+
More information needed
|
21 |
+
|
22 |
+
## Training and evaluation data
|
23 |
+
|
24 |
+
More information needed
|
25 |
+
|
26 |
+
## Training procedure
|
27 |
+
|
28 |
+
### Training hyperparameters
|
29 |
+
|
30 |
+
The following hyperparameters were used during training:
|
31 |
+
- learning_rate: 2e-05
|
32 |
+
- train_batch_size: 2
|
33 |
+
- eval_batch_size: 2
|
34 |
+
- seed: 42
|
35 |
+
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
36 |
+
- lr_scheduler_type: linear
|
37 |
+
- num_epochs: 3
|
38 |
+
|
39 |
+
### Training results
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
### Framework versions
|
44 |
+
|
45 |
+
- Transformers 4.6.1
|
46 |
+
- Pytorch 1.8.1+cu101
|
47 |
+
- Datasets 1.7.0
|
48 |
+
- Tokenizers 0.10.3
|
config.json
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "facebook/mbart-large-50",
|
3 |
+
"_num_labels": 3,
|
4 |
+
"activation_dropout": 0.0,
|
5 |
+
"activation_function": "gelu",
|
6 |
+
"add_bias_logits": false,
|
7 |
+
"add_final_layer_norm": true,
|
8 |
+
"architectures": [
|
9 |
+
"MBartForQuestionAnswering"
|
10 |
+
],
|
11 |
+
"attention_dropout": 0.0,
|
12 |
+
"bos_token_id": 0,
|
13 |
+
"classif_dropout": 0.0,
|
14 |
+
"classifier_dropout": 0.0,
|
15 |
+
"d_model": 1024,
|
16 |
+
"decoder_attention_heads": 16,
|
17 |
+
"decoder_ffn_dim": 4096,
|
18 |
+
"decoder_layerdrop": 0.0,
|
19 |
+
"decoder_layers": 12,
|
20 |
+
"decoder_start_token_id": 2,
|
21 |
+
"dropout": 0.1,
|
22 |
+
"early_stopping": true,
|
23 |
+
"encoder_attention_heads": 16,
|
24 |
+
"encoder_ffn_dim": 4096,
|
25 |
+
"encoder_layerdrop": 0.0,
|
26 |
+
"encoder_layers": 12,
|
27 |
+
"eos_token_id": 2,
|
28 |
+
"forced_eos_token_id": 2,
|
29 |
+
"gradient_checkpointing": false,
|
30 |
+
"init_std": 0.02,
|
31 |
+
"is_encoder_decoder": true,
|
32 |
+
"max_length": 200,
|
33 |
+
"max_position_embeddings": 1024,
|
34 |
+
"model_type": "mbart",
|
35 |
+
"normalize_before": true,
|
36 |
+
"normalize_embedding": true,
|
37 |
+
"num_beams": 5,
|
38 |
+
"num_hidden_layers": 12,
|
39 |
+
"output_past": true,
|
40 |
+
"pad_token_id": 1,
|
41 |
+
"scale_embedding": true,
|
42 |
+
"static_position_embeddings": false,
|
43 |
+
"tokenizer_class": "MBart50Tokenizer",
|
44 |
+
"transformers_version": "4.6.1",
|
45 |
+
"use_cache": true,
|
46 |
+
"vocab_size": 250054
|
47 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e9374d19566a85ff524625744af8b612fd7bf96138d7cbe2293478a4fc51934c
|
3 |
+
size 2443730332
|
special_tokens_map.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]"}
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"do_lower_case": false, "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": "distilbert-base-multilingual-cased"}
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|