lhbonifacio
commited on
Commit
•
214bc2d
1
Parent(s):
1dacfea
Initial commit
Browse files- README.md +34 -0
- config.json +58 -0
- pytorch_model-00001-of-00002.bin +3 -0
- pytorch_model-00002-of-00002.bin +3 -0
- pytorch_model.bin.index.json +519 -0
- special_tokens_map.json +1 -0
- spiece.model +3 -0
- tokenizer_config.json +1 -0
README.md
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
monot5-3b-inpars-v2-hotpotqa-promptagator is a monoT5-3B model finetuned on HotpotQA synthetic data generated by [InPars](https://github.com/zetaalphavector/inPars).
|
2 |
+
|
3 |
+
Currently, if you use this tool you can cite the original [InPars paper published at SIGIR](https://dl.acm.org/doi/10.1145/3477495.3531863) or [InPars-v2](https://arxiv.org/abs/2301.01820).
|
4 |
+
|
5 |
+
```
|
6 |
+
@inproceedings{inpars,
|
7 |
+
author = {Bonifacio, Luiz and Abonizio, Hugo and Fadaee, Marzieh and Nogueira, Rodrigo},
|
8 |
+
title = {{InPars}: Unsupervised Dataset Generation for Information Retrieval},
|
9 |
+
year = {2022},
|
10 |
+
isbn = {9781450387323},
|
11 |
+
publisher = {Association for Computing Machinery},
|
12 |
+
address = {New York, NY, USA},
|
13 |
+
url = {https://doi.org/10.1145/3477495.3531863},
|
14 |
+
doi = {10.1145/3477495.3531863},
|
15 |
+
booktitle = {Proceedings of the 45th International ACM SIGIR Conference on Research and Development in Information Retrieval},
|
16 |
+
pages = {2387–2392},
|
17 |
+
numpages = {6},
|
18 |
+
keywords = {generative models, large language models, question generation, synthetic datasets, few-shot models, multi-stage ranking},
|
19 |
+
location = {Madrid, Spain},
|
20 |
+
series = {SIGIR '22}
|
21 |
+
}
|
22 |
+
```
|
23 |
+
|
24 |
+
```
|
25 |
+
@misc{inparsv2,
|
26 |
+
doi = {10.48550/ARXIV.2301.01820},
|
27 |
+
url = {https://arxiv.org/abs/2301.01820},
|
28 |
+
author = {Jeronymo, Vitor and Bonifacio, Luiz and Abonizio, Hugo and Fadaee, Marzieh and Lotufo, Roberto and Zavrel, Jakub and Nogueira, Rodrigo},
|
29 |
+
title = {{InPars-v2}: Large Language Models as Efficient Dataset Generators for Information Retrieval},
|
30 |
+
publisher = {arXiv},
|
31 |
+
year = {2023},
|
32 |
+
copyright = {Creative Commons Attribution 4.0 International}
|
33 |
+
}
|
34 |
+
```
|
config.json
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "castorini/monot5-3b-msmarco-10k",
|
3 |
+
"architectures": [
|
4 |
+
"T5ForConditionalGeneration"
|
5 |
+
],
|
6 |
+
"d_ff": 16384,
|
7 |
+
"d_kv": 128,
|
8 |
+
"d_model": 1024,
|
9 |
+
"decoder_start_token_id": 0,
|
10 |
+
"dropout_rate": 0.1,
|
11 |
+
"eos_token_id": 1,
|
12 |
+
"feed_forward_proj": "relu",
|
13 |
+
"initializer_factor": 1.0,
|
14 |
+
"is_encoder_decoder": true,
|
15 |
+
"layer_norm_epsilon": 1e-06,
|
16 |
+
"model_type": "t5",
|
17 |
+
"n_positions": 512,
|
18 |
+
"num_decoder_layers": 24,
|
19 |
+
"num_heads": 32,
|
20 |
+
"num_layers": 24,
|
21 |
+
"output_past": true,
|
22 |
+
"pad_token_id": 0,
|
23 |
+
"relative_attention_max_distance": 128,
|
24 |
+
"relative_attention_num_buckets": 32,
|
25 |
+
"task_specific_params": {
|
26 |
+
"summarization": {
|
27 |
+
"early_stopping": true,
|
28 |
+
"length_penalty": 2.0,
|
29 |
+
"max_length": 200,
|
30 |
+
"min_length": 30,
|
31 |
+
"no_repeat_ngram_size": 3,
|
32 |
+
"num_beams": 4,
|
33 |
+
"prefix": "summarize: "
|
34 |
+
},
|
35 |
+
"translation_en_to_de": {
|
36 |
+
"early_stopping": true,
|
37 |
+
"max_length": 300,
|
38 |
+
"num_beams": 4,
|
39 |
+
"prefix": "translate English to German: "
|
40 |
+
},
|
41 |
+
"translation_en_to_fr": {
|
42 |
+
"early_stopping": true,
|
43 |
+
"max_length": 300,
|
44 |
+
"num_beams": 4,
|
45 |
+
"prefix": "translate English to French: "
|
46 |
+
},
|
47 |
+
"translation_en_to_ro": {
|
48 |
+
"early_stopping": true,
|
49 |
+
"max_length": 300,
|
50 |
+
"num_beams": 4,
|
51 |
+
"prefix": "translate English to Romanian: "
|
52 |
+
}
|
53 |
+
},
|
54 |
+
"torch_dtype": "float32",
|
55 |
+
"transformers_version": "4.18.0",
|
56 |
+
"use_cache": true,
|
57 |
+
"vocab_size": 32128
|
58 |
+
}
|
pytorch_model-00001-of-00002.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4f6dfc4179afcfcf338b9d0de9d4d35ff7cc9b1014b87c4e933c9b250dbb694a
|
3 |
+
size 9728738013
|
pytorch_model-00002-of-00002.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:831850a29fab1d89da5ac76006a9c0c75de5ebdebf9c0ded7336ef13aa586a92
|
3 |
+
size 1809426671
|
pytorch_model.bin.index.json
ADDED
@@ -0,0 +1,519 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"metadata": {
|
3 |
+
"total_size": 11801182208
|
4 |
+
},
|
5 |
+
"weight_map": {
|
6 |
+
"decoder.block.0.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
7 |
+
"decoder.block.0.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
8 |
+
"decoder.block.0.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
9 |
+
"decoder.block.0.layer.0.SelfAttention.relative_attention_bias.weight": "pytorch_model-00001-of-00002.bin",
|
10 |
+
"decoder.block.0.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
11 |
+
"decoder.block.0.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
12 |
+
"decoder.block.0.layer.1.EncDecAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
13 |
+
"decoder.block.0.layer.1.EncDecAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
14 |
+
"decoder.block.0.layer.1.EncDecAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
15 |
+
"decoder.block.0.layer.1.EncDecAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
16 |
+
"decoder.block.0.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
17 |
+
"decoder.block.0.layer.2.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
18 |
+
"decoder.block.0.layer.2.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
19 |
+
"decoder.block.0.layer.2.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
20 |
+
"decoder.block.1.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
21 |
+
"decoder.block.1.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
22 |
+
"decoder.block.1.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
23 |
+
"decoder.block.1.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
24 |
+
"decoder.block.1.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
25 |
+
"decoder.block.1.layer.1.EncDecAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
26 |
+
"decoder.block.1.layer.1.EncDecAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
27 |
+
"decoder.block.1.layer.1.EncDecAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
28 |
+
"decoder.block.1.layer.1.EncDecAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
29 |
+
"decoder.block.1.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
30 |
+
"decoder.block.1.layer.2.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
31 |
+
"decoder.block.1.layer.2.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
32 |
+
"decoder.block.1.layer.2.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
33 |
+
"decoder.block.10.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
34 |
+
"decoder.block.10.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
35 |
+
"decoder.block.10.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
36 |
+
"decoder.block.10.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
37 |
+
"decoder.block.10.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
38 |
+
"decoder.block.10.layer.1.EncDecAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
39 |
+
"decoder.block.10.layer.1.EncDecAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
40 |
+
"decoder.block.10.layer.1.EncDecAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
41 |
+
"decoder.block.10.layer.1.EncDecAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
42 |
+
"decoder.block.10.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
43 |
+
"decoder.block.10.layer.2.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
44 |
+
"decoder.block.10.layer.2.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
45 |
+
"decoder.block.10.layer.2.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
46 |
+
"decoder.block.11.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
47 |
+
"decoder.block.11.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
48 |
+
"decoder.block.11.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
49 |
+
"decoder.block.11.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
50 |
+
"decoder.block.11.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
51 |
+
"decoder.block.11.layer.1.EncDecAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
52 |
+
"decoder.block.11.layer.1.EncDecAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
53 |
+
"decoder.block.11.layer.1.EncDecAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
54 |
+
"decoder.block.11.layer.1.EncDecAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
55 |
+
"decoder.block.11.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
56 |
+
"decoder.block.11.layer.2.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
57 |
+
"decoder.block.11.layer.2.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
58 |
+
"decoder.block.11.layer.2.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
59 |
+
"decoder.block.12.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
60 |
+
"decoder.block.12.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
61 |
+
"decoder.block.12.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
62 |
+
"decoder.block.12.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
63 |
+
"decoder.block.12.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
64 |
+
"decoder.block.12.layer.1.EncDecAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
65 |
+
"decoder.block.12.layer.1.EncDecAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
66 |
+
"decoder.block.12.layer.1.EncDecAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
67 |
+
"decoder.block.12.layer.1.EncDecAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
68 |
+
"decoder.block.12.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
69 |
+
"decoder.block.12.layer.2.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
70 |
+
"decoder.block.12.layer.2.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
71 |
+
"decoder.block.12.layer.2.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
72 |
+
"decoder.block.13.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
73 |
+
"decoder.block.13.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
74 |
+
"decoder.block.13.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
75 |
+
"decoder.block.13.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
76 |
+
"decoder.block.13.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
77 |
+
"decoder.block.13.layer.1.EncDecAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
78 |
+
"decoder.block.13.layer.1.EncDecAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
79 |
+
"decoder.block.13.layer.1.EncDecAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
80 |
+
"decoder.block.13.layer.1.EncDecAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
81 |
+
"decoder.block.13.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
82 |
+
"decoder.block.13.layer.2.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
83 |
+
"decoder.block.13.layer.2.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
84 |
+
"decoder.block.13.layer.2.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
85 |
+
"decoder.block.14.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
86 |
+
"decoder.block.14.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
87 |
+
"decoder.block.14.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
88 |
+
"decoder.block.14.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
89 |
+
"decoder.block.14.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
90 |
+
"decoder.block.14.layer.1.EncDecAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
91 |
+
"decoder.block.14.layer.1.EncDecAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
92 |
+
"decoder.block.14.layer.1.EncDecAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
93 |
+
"decoder.block.14.layer.1.EncDecAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
94 |
+
"decoder.block.14.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
95 |
+
"decoder.block.14.layer.2.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
96 |
+
"decoder.block.14.layer.2.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
97 |
+
"decoder.block.14.layer.2.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
98 |
+
"decoder.block.15.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
99 |
+
"decoder.block.15.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
100 |
+
"decoder.block.15.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
101 |
+
"decoder.block.15.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
102 |
+
"decoder.block.15.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
103 |
+
"decoder.block.15.layer.1.EncDecAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
104 |
+
"decoder.block.15.layer.1.EncDecAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
105 |
+
"decoder.block.15.layer.1.EncDecAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
106 |
+
"decoder.block.15.layer.1.EncDecAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
107 |
+
"decoder.block.15.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
108 |
+
"decoder.block.15.layer.2.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
109 |
+
"decoder.block.15.layer.2.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
110 |
+
"decoder.block.15.layer.2.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
111 |
+
"decoder.block.16.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
112 |
+
"decoder.block.16.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
113 |
+
"decoder.block.16.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
114 |
+
"decoder.block.16.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
115 |
+
"decoder.block.16.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
116 |
+
"decoder.block.16.layer.1.EncDecAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
117 |
+
"decoder.block.16.layer.1.EncDecAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
118 |
+
"decoder.block.16.layer.1.EncDecAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
119 |
+
"decoder.block.16.layer.1.EncDecAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
120 |
+
"decoder.block.16.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
121 |
+
"decoder.block.16.layer.2.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
122 |
+
"decoder.block.16.layer.2.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
123 |
+
"decoder.block.16.layer.2.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
124 |
+
"decoder.block.17.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
125 |
+
"decoder.block.17.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
126 |
+
"decoder.block.17.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
127 |
+
"decoder.block.17.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
128 |
+
"decoder.block.17.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
129 |
+
"decoder.block.17.layer.1.EncDecAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
130 |
+
"decoder.block.17.layer.1.EncDecAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
131 |
+
"decoder.block.17.layer.1.EncDecAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
132 |
+
"decoder.block.17.layer.1.EncDecAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
133 |
+
"decoder.block.17.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
134 |
+
"decoder.block.17.layer.2.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
135 |
+
"decoder.block.17.layer.2.DenseReluDense.wo.weight": "pytorch_model-00002-of-00002.bin",
|
136 |
+
"decoder.block.17.layer.2.layer_norm.weight": "pytorch_model-00002-of-00002.bin",
|
137 |
+
"decoder.block.18.layer.0.SelfAttention.k.weight": "pytorch_model-00002-of-00002.bin",
|
138 |
+
"decoder.block.18.layer.0.SelfAttention.o.weight": "pytorch_model-00002-of-00002.bin",
|
139 |
+
"decoder.block.18.layer.0.SelfAttention.q.weight": "pytorch_model-00002-of-00002.bin",
|
140 |
+
"decoder.block.18.layer.0.SelfAttention.v.weight": "pytorch_model-00002-of-00002.bin",
|
141 |
+
"decoder.block.18.layer.0.layer_norm.weight": "pytorch_model-00002-of-00002.bin",
|
142 |
+
"decoder.block.18.layer.1.EncDecAttention.k.weight": "pytorch_model-00002-of-00002.bin",
|
143 |
+
"decoder.block.18.layer.1.EncDecAttention.o.weight": "pytorch_model-00002-of-00002.bin",
|
144 |
+
"decoder.block.18.layer.1.EncDecAttention.q.weight": "pytorch_model-00002-of-00002.bin",
|
145 |
+
"decoder.block.18.layer.1.EncDecAttention.v.weight": "pytorch_model-00002-of-00002.bin",
|
146 |
+
"decoder.block.18.layer.1.layer_norm.weight": "pytorch_model-00002-of-00002.bin",
|
147 |
+
"decoder.block.18.layer.2.DenseReluDense.wi.weight": "pytorch_model-00002-of-00002.bin",
|
148 |
+
"decoder.block.18.layer.2.DenseReluDense.wo.weight": "pytorch_model-00002-of-00002.bin",
|
149 |
+
"decoder.block.18.layer.2.layer_norm.weight": "pytorch_model-00002-of-00002.bin",
|
150 |
+
"decoder.block.19.layer.0.SelfAttention.k.weight": "pytorch_model-00002-of-00002.bin",
|
151 |
+
"decoder.block.19.layer.0.SelfAttention.o.weight": "pytorch_model-00002-of-00002.bin",
|
152 |
+
"decoder.block.19.layer.0.SelfAttention.q.weight": "pytorch_model-00002-of-00002.bin",
|
153 |
+
"decoder.block.19.layer.0.SelfAttention.v.weight": "pytorch_model-00002-of-00002.bin",
|
154 |
+
"decoder.block.19.layer.0.layer_norm.weight": "pytorch_model-00002-of-00002.bin",
|
155 |
+
"decoder.block.19.layer.1.EncDecAttention.k.weight": "pytorch_model-00002-of-00002.bin",
|
156 |
+
"decoder.block.19.layer.1.EncDecAttention.o.weight": "pytorch_model-00002-of-00002.bin",
|
157 |
+
"decoder.block.19.layer.1.EncDecAttention.q.weight": "pytorch_model-00002-of-00002.bin",
|
158 |
+
"decoder.block.19.layer.1.EncDecAttention.v.weight": "pytorch_model-00002-of-00002.bin",
|
159 |
+
"decoder.block.19.layer.1.layer_norm.weight": "pytorch_model-00002-of-00002.bin",
|
160 |
+
"decoder.block.19.layer.2.DenseReluDense.wi.weight": "pytorch_model-00002-of-00002.bin",
|
161 |
+
"decoder.block.19.layer.2.DenseReluDense.wo.weight": "pytorch_model-00002-of-00002.bin",
|
162 |
+
"decoder.block.19.layer.2.layer_norm.weight": "pytorch_model-00002-of-00002.bin",
|
163 |
+
"decoder.block.2.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
164 |
+
"decoder.block.2.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
165 |
+
"decoder.block.2.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
166 |
+
"decoder.block.2.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
167 |
+
"decoder.block.2.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
168 |
+
"decoder.block.2.layer.1.EncDecAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
169 |
+
"decoder.block.2.layer.1.EncDecAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
170 |
+
"decoder.block.2.layer.1.EncDecAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
171 |
+
"decoder.block.2.layer.1.EncDecAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
172 |
+
"decoder.block.2.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
173 |
+
"decoder.block.2.layer.2.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
174 |
+
"decoder.block.2.layer.2.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
175 |
+
"decoder.block.2.layer.2.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
176 |
+
"decoder.block.20.layer.0.SelfAttention.k.weight": "pytorch_model-00002-of-00002.bin",
|
177 |
+
"decoder.block.20.layer.0.SelfAttention.o.weight": "pytorch_model-00002-of-00002.bin",
|
178 |
+
"decoder.block.20.layer.0.SelfAttention.q.weight": "pytorch_model-00002-of-00002.bin",
|
179 |
+
"decoder.block.20.layer.0.SelfAttention.v.weight": "pytorch_model-00002-of-00002.bin",
|
180 |
+
"decoder.block.20.layer.0.layer_norm.weight": "pytorch_model-00002-of-00002.bin",
|
181 |
+
"decoder.block.20.layer.1.EncDecAttention.k.weight": "pytorch_model-00002-of-00002.bin",
|
182 |
+
"decoder.block.20.layer.1.EncDecAttention.o.weight": "pytorch_model-00002-of-00002.bin",
|
183 |
+
"decoder.block.20.layer.1.EncDecAttention.q.weight": "pytorch_model-00002-of-00002.bin",
|
184 |
+
"decoder.block.20.layer.1.EncDecAttention.v.weight": "pytorch_model-00002-of-00002.bin",
|
185 |
+
"decoder.block.20.layer.1.layer_norm.weight": "pytorch_model-00002-of-00002.bin",
|
186 |
+
"decoder.block.20.layer.2.DenseReluDense.wi.weight": "pytorch_model-00002-of-00002.bin",
|
187 |
+
"decoder.block.20.layer.2.DenseReluDense.wo.weight": "pytorch_model-00002-of-00002.bin",
|
188 |
+
"decoder.block.20.layer.2.layer_norm.weight": "pytorch_model-00002-of-00002.bin",
|
189 |
+
"decoder.block.21.layer.0.SelfAttention.k.weight": "pytorch_model-00002-of-00002.bin",
|
190 |
+
"decoder.block.21.layer.0.SelfAttention.o.weight": "pytorch_model-00002-of-00002.bin",
|
191 |
+
"decoder.block.21.layer.0.SelfAttention.q.weight": "pytorch_model-00002-of-00002.bin",
|
192 |
+
"decoder.block.21.layer.0.SelfAttention.v.weight": "pytorch_model-00002-of-00002.bin",
|
193 |
+
"decoder.block.21.layer.0.layer_norm.weight": "pytorch_model-00002-of-00002.bin",
|
194 |
+
"decoder.block.21.layer.1.EncDecAttention.k.weight": "pytorch_model-00002-of-00002.bin",
|
195 |
+
"decoder.block.21.layer.1.EncDecAttention.o.weight": "pytorch_model-00002-of-00002.bin",
|
196 |
+
"decoder.block.21.layer.1.EncDecAttention.q.weight": "pytorch_model-00002-of-00002.bin",
|
197 |
+
"decoder.block.21.layer.1.EncDecAttention.v.weight": "pytorch_model-00002-of-00002.bin",
|
198 |
+
"decoder.block.21.layer.1.layer_norm.weight": "pytorch_model-00002-of-00002.bin",
|
199 |
+
"decoder.block.21.layer.2.DenseReluDense.wi.weight": "pytorch_model-00002-of-00002.bin",
|
200 |
+
"decoder.block.21.layer.2.DenseReluDense.wo.weight": "pytorch_model-00002-of-00002.bin",
|
201 |
+
"decoder.block.21.layer.2.layer_norm.weight": "pytorch_model-00002-of-00002.bin",
|
202 |
+
"decoder.block.22.layer.0.SelfAttention.k.weight": "pytorch_model-00002-of-00002.bin",
|
203 |
+
"decoder.block.22.layer.0.SelfAttention.o.weight": "pytorch_model-00002-of-00002.bin",
|
204 |
+
"decoder.block.22.layer.0.SelfAttention.q.weight": "pytorch_model-00002-of-00002.bin",
|
205 |
+
"decoder.block.22.layer.0.SelfAttention.v.weight": "pytorch_model-00002-of-00002.bin",
|
206 |
+
"decoder.block.22.layer.0.layer_norm.weight": "pytorch_model-00002-of-00002.bin",
|
207 |
+
"decoder.block.22.layer.1.EncDecAttention.k.weight": "pytorch_model-00002-of-00002.bin",
|
208 |
+
"decoder.block.22.layer.1.EncDecAttention.o.weight": "pytorch_model-00002-of-00002.bin",
|
209 |
+
"decoder.block.22.layer.1.EncDecAttention.q.weight": "pytorch_model-00002-of-00002.bin",
|
210 |
+
"decoder.block.22.layer.1.EncDecAttention.v.weight": "pytorch_model-00002-of-00002.bin",
|
211 |
+
"decoder.block.22.layer.1.layer_norm.weight": "pytorch_model-00002-of-00002.bin",
|
212 |
+
"decoder.block.22.layer.2.DenseReluDense.wi.weight": "pytorch_model-00002-of-00002.bin",
|
213 |
+
"decoder.block.22.layer.2.DenseReluDense.wo.weight": "pytorch_model-00002-of-00002.bin",
|
214 |
+
"decoder.block.22.layer.2.layer_norm.weight": "pytorch_model-00002-of-00002.bin",
|
215 |
+
"decoder.block.23.layer.0.SelfAttention.k.weight": "pytorch_model-00002-of-00002.bin",
|
216 |
+
"decoder.block.23.layer.0.SelfAttention.o.weight": "pytorch_model-00002-of-00002.bin",
|
217 |
+
"decoder.block.23.layer.0.SelfAttention.q.weight": "pytorch_model-00002-of-00002.bin",
|
218 |
+
"decoder.block.23.layer.0.SelfAttention.v.weight": "pytorch_model-00002-of-00002.bin",
|
219 |
+
"decoder.block.23.layer.0.layer_norm.weight": "pytorch_model-00002-of-00002.bin",
|
220 |
+
"decoder.block.23.layer.1.EncDecAttention.k.weight": "pytorch_model-00002-of-00002.bin",
|
221 |
+
"decoder.block.23.layer.1.EncDecAttention.o.weight": "pytorch_model-00002-of-00002.bin",
|
222 |
+
"decoder.block.23.layer.1.EncDecAttention.q.weight": "pytorch_model-00002-of-00002.bin",
|
223 |
+
"decoder.block.23.layer.1.EncDecAttention.v.weight": "pytorch_model-00002-of-00002.bin",
|
224 |
+
"decoder.block.23.layer.1.layer_norm.weight": "pytorch_model-00002-of-00002.bin",
|
225 |
+
"decoder.block.23.layer.2.DenseReluDense.wi.weight": "pytorch_model-00002-of-00002.bin",
|
226 |
+
"decoder.block.23.layer.2.DenseReluDense.wo.weight": "pytorch_model-00002-of-00002.bin",
|
227 |
+
"decoder.block.23.layer.2.layer_norm.weight": "pytorch_model-00002-of-00002.bin",
|
228 |
+
"decoder.block.3.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
229 |
+
"decoder.block.3.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
230 |
+
"decoder.block.3.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
231 |
+
"decoder.block.3.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
232 |
+
"decoder.block.3.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
233 |
+
"decoder.block.3.layer.1.EncDecAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
234 |
+
"decoder.block.3.layer.1.EncDecAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
235 |
+
"decoder.block.3.layer.1.EncDecAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
236 |
+
"decoder.block.3.layer.1.EncDecAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
237 |
+
"decoder.block.3.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
238 |
+
"decoder.block.3.layer.2.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
239 |
+
"decoder.block.3.layer.2.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
240 |
+
"decoder.block.3.layer.2.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
241 |
+
"decoder.block.4.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
242 |
+
"decoder.block.4.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
243 |
+
"decoder.block.4.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
244 |
+
"decoder.block.4.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
245 |
+
"decoder.block.4.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
246 |
+
"decoder.block.4.layer.1.EncDecAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
247 |
+
"decoder.block.4.layer.1.EncDecAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
248 |
+
"decoder.block.4.layer.1.EncDecAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
249 |
+
"decoder.block.4.layer.1.EncDecAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
250 |
+
"decoder.block.4.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
251 |
+
"decoder.block.4.layer.2.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
252 |
+
"decoder.block.4.layer.2.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
253 |
+
"decoder.block.4.layer.2.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
254 |
+
"decoder.block.5.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
255 |
+
"decoder.block.5.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
256 |
+
"decoder.block.5.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
257 |
+
"decoder.block.5.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
258 |
+
"decoder.block.5.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
259 |
+
"decoder.block.5.layer.1.EncDecAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
260 |
+
"decoder.block.5.layer.1.EncDecAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
261 |
+
"decoder.block.5.layer.1.EncDecAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
262 |
+
"decoder.block.5.layer.1.EncDecAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
263 |
+
"decoder.block.5.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
264 |
+
"decoder.block.5.layer.2.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
265 |
+
"decoder.block.5.layer.2.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
266 |
+
"decoder.block.5.layer.2.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
267 |
+
"decoder.block.6.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
268 |
+
"decoder.block.6.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
269 |
+
"decoder.block.6.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
270 |
+
"decoder.block.6.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
271 |
+
"decoder.block.6.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
272 |
+
"decoder.block.6.layer.1.EncDecAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
273 |
+
"decoder.block.6.layer.1.EncDecAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
274 |
+
"decoder.block.6.layer.1.EncDecAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
275 |
+
"decoder.block.6.layer.1.EncDecAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
276 |
+
"decoder.block.6.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
277 |
+
"decoder.block.6.layer.2.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
278 |
+
"decoder.block.6.layer.2.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
279 |
+
"decoder.block.6.layer.2.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
280 |
+
"decoder.block.7.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
281 |
+
"decoder.block.7.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
282 |
+
"decoder.block.7.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
283 |
+
"decoder.block.7.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
284 |
+
"decoder.block.7.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
285 |
+
"decoder.block.7.layer.1.EncDecAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
286 |
+
"decoder.block.7.layer.1.EncDecAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
287 |
+
"decoder.block.7.layer.1.EncDecAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
288 |
+
"decoder.block.7.layer.1.EncDecAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
289 |
+
"decoder.block.7.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
290 |
+
"decoder.block.7.layer.2.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
291 |
+
"decoder.block.7.layer.2.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
292 |
+
"decoder.block.7.layer.2.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
293 |
+
"decoder.block.8.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
294 |
+
"decoder.block.8.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
295 |
+
"decoder.block.8.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
296 |
+
"decoder.block.8.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
297 |
+
"decoder.block.8.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
298 |
+
"decoder.block.8.layer.1.EncDecAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
299 |
+
"decoder.block.8.layer.1.EncDecAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
300 |
+
"decoder.block.8.layer.1.EncDecAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
301 |
+
"decoder.block.8.layer.1.EncDecAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
302 |
+
"decoder.block.8.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
303 |
+
"decoder.block.8.layer.2.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
304 |
+
"decoder.block.8.layer.2.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
305 |
+
"decoder.block.8.layer.2.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
306 |
+
"decoder.block.9.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
307 |
+
"decoder.block.9.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
308 |
+
"decoder.block.9.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
309 |
+
"decoder.block.9.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
310 |
+
"decoder.block.9.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
311 |
+
"decoder.block.9.layer.1.EncDecAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
312 |
+
"decoder.block.9.layer.1.EncDecAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
313 |
+
"decoder.block.9.layer.1.EncDecAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
314 |
+
"decoder.block.9.layer.1.EncDecAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
315 |
+
"decoder.block.9.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
316 |
+
"decoder.block.9.layer.2.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
317 |
+
"decoder.block.9.layer.2.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
318 |
+
"decoder.block.9.layer.2.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
319 |
+
"decoder.embed_tokens.weight": "pytorch_model-00001-of-00002.bin",
|
320 |
+
"decoder.final_layer_norm.weight": "pytorch_model-00002-of-00002.bin",
|
321 |
+
"encoder.block.0.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
322 |
+
"encoder.block.0.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
323 |
+
"encoder.block.0.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
324 |
+
"encoder.block.0.layer.0.SelfAttention.relative_attention_bias.weight": "pytorch_model-00001-of-00002.bin",
|
325 |
+
"encoder.block.0.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
326 |
+
"encoder.block.0.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
327 |
+
"encoder.block.0.layer.1.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
328 |
+
"encoder.block.0.layer.1.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
329 |
+
"encoder.block.0.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
330 |
+
"encoder.block.1.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
331 |
+
"encoder.block.1.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
332 |
+
"encoder.block.1.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
333 |
+
"encoder.block.1.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
334 |
+
"encoder.block.1.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
335 |
+
"encoder.block.1.layer.1.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
336 |
+
"encoder.block.1.layer.1.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
337 |
+
"encoder.block.1.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
338 |
+
"encoder.block.10.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
339 |
+
"encoder.block.10.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
340 |
+
"encoder.block.10.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
341 |
+
"encoder.block.10.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
342 |
+
"encoder.block.10.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
343 |
+
"encoder.block.10.layer.1.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
344 |
+
"encoder.block.10.layer.1.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
345 |
+
"encoder.block.10.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
346 |
+
"encoder.block.11.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
347 |
+
"encoder.block.11.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
348 |
+
"encoder.block.11.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
349 |
+
"encoder.block.11.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
350 |
+
"encoder.block.11.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
351 |
+
"encoder.block.11.layer.1.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
352 |
+
"encoder.block.11.layer.1.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
353 |
+
"encoder.block.11.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
354 |
+
"encoder.block.12.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
355 |
+
"encoder.block.12.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
356 |
+
"encoder.block.12.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
357 |
+
"encoder.block.12.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
358 |
+
"encoder.block.12.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
359 |
+
"encoder.block.12.layer.1.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
360 |
+
"encoder.block.12.layer.1.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
361 |
+
"encoder.block.12.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
362 |
+
"encoder.block.13.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
363 |
+
"encoder.block.13.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
364 |
+
"encoder.block.13.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
365 |
+
"encoder.block.13.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
366 |
+
"encoder.block.13.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
367 |
+
"encoder.block.13.layer.1.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
368 |
+
"encoder.block.13.layer.1.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
369 |
+
"encoder.block.13.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
370 |
+
"encoder.block.14.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
371 |
+
"encoder.block.14.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
372 |
+
"encoder.block.14.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
373 |
+
"encoder.block.14.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
374 |
+
"encoder.block.14.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
375 |
+
"encoder.block.14.layer.1.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
376 |
+
"encoder.block.14.layer.1.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
377 |
+
"encoder.block.14.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
378 |
+
"encoder.block.15.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
379 |
+
"encoder.block.15.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
380 |
+
"encoder.block.15.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
381 |
+
"encoder.block.15.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
382 |
+
"encoder.block.15.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
383 |
+
"encoder.block.15.layer.1.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
384 |
+
"encoder.block.15.layer.1.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
385 |
+
"encoder.block.15.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
386 |
+
"encoder.block.16.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
387 |
+
"encoder.block.16.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
388 |
+
"encoder.block.16.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
389 |
+
"encoder.block.16.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
390 |
+
"encoder.block.16.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
391 |
+
"encoder.block.16.layer.1.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
392 |
+
"encoder.block.16.layer.1.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
393 |
+
"encoder.block.16.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
394 |
+
"encoder.block.17.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
395 |
+
"encoder.block.17.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
396 |
+
"encoder.block.17.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
397 |
+
"encoder.block.17.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
398 |
+
"encoder.block.17.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
399 |
+
"encoder.block.17.layer.1.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
400 |
+
"encoder.block.17.layer.1.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
401 |
+
"encoder.block.17.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
402 |
+
"encoder.block.18.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
403 |
+
"encoder.block.18.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
404 |
+
"encoder.block.18.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
405 |
+
"encoder.block.18.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
406 |
+
"encoder.block.18.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
407 |
+
"encoder.block.18.layer.1.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
408 |
+
"encoder.block.18.layer.1.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
409 |
+
"encoder.block.18.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
410 |
+
"encoder.block.19.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
411 |
+
"encoder.block.19.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
412 |
+
"encoder.block.19.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
413 |
+
"encoder.block.19.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
414 |
+
"encoder.block.19.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
415 |
+
"encoder.block.19.layer.1.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
416 |
+
"encoder.block.19.layer.1.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
417 |
+
"encoder.block.19.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
418 |
+
"encoder.block.2.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
419 |
+
"encoder.block.2.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
420 |
+
"encoder.block.2.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
421 |
+
"encoder.block.2.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
422 |
+
"encoder.block.2.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
423 |
+
"encoder.block.2.layer.1.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
424 |
+
"encoder.block.2.layer.1.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
425 |
+
"encoder.block.2.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
426 |
+
"encoder.block.20.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
427 |
+
"encoder.block.20.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
428 |
+
"encoder.block.20.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
429 |
+
"encoder.block.20.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
430 |
+
"encoder.block.20.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
431 |
+
"encoder.block.20.layer.1.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
432 |
+
"encoder.block.20.layer.1.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
433 |
+
"encoder.block.20.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
434 |
+
"encoder.block.21.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
435 |
+
"encoder.block.21.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
436 |
+
"encoder.block.21.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
437 |
+
"encoder.block.21.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
438 |
+
"encoder.block.21.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
439 |
+
"encoder.block.21.layer.1.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
440 |
+
"encoder.block.21.layer.1.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
441 |
+
"encoder.block.21.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
442 |
+
"encoder.block.22.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
443 |
+
"encoder.block.22.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
444 |
+
"encoder.block.22.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
445 |
+
"encoder.block.22.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
446 |
+
"encoder.block.22.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
447 |
+
"encoder.block.22.layer.1.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
448 |
+
"encoder.block.22.layer.1.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
449 |
+
"encoder.block.22.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
450 |
+
"encoder.block.23.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
451 |
+
"encoder.block.23.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
452 |
+
"encoder.block.23.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
453 |
+
"encoder.block.23.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
454 |
+
"encoder.block.23.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
455 |
+
"encoder.block.23.layer.1.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
456 |
+
"encoder.block.23.layer.1.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
457 |
+
"encoder.block.23.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
458 |
+
"encoder.block.3.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
459 |
+
"encoder.block.3.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
460 |
+
"encoder.block.3.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
461 |
+
"encoder.block.3.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
462 |
+
"encoder.block.3.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
463 |
+
"encoder.block.3.layer.1.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
464 |
+
"encoder.block.3.layer.1.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
465 |
+
"encoder.block.3.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
466 |
+
"encoder.block.4.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
467 |
+
"encoder.block.4.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
468 |
+
"encoder.block.4.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
469 |
+
"encoder.block.4.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
470 |
+
"encoder.block.4.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
471 |
+
"encoder.block.4.layer.1.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
472 |
+
"encoder.block.4.layer.1.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
473 |
+
"encoder.block.4.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
474 |
+
"encoder.block.5.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
475 |
+
"encoder.block.5.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
476 |
+
"encoder.block.5.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
477 |
+
"encoder.block.5.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
478 |
+
"encoder.block.5.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
479 |
+
"encoder.block.5.layer.1.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
480 |
+
"encoder.block.5.layer.1.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
481 |
+
"encoder.block.5.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
482 |
+
"encoder.block.6.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
483 |
+
"encoder.block.6.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
484 |
+
"encoder.block.6.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
485 |
+
"encoder.block.6.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
486 |
+
"encoder.block.6.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
487 |
+
"encoder.block.6.layer.1.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
488 |
+
"encoder.block.6.layer.1.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
489 |
+
"encoder.block.6.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
490 |
+
"encoder.block.7.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
491 |
+
"encoder.block.7.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
492 |
+
"encoder.block.7.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
493 |
+
"encoder.block.7.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
494 |
+
"encoder.block.7.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
495 |
+
"encoder.block.7.layer.1.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
496 |
+
"encoder.block.7.layer.1.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
497 |
+
"encoder.block.7.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
498 |
+
"encoder.block.8.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
499 |
+
"encoder.block.8.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
500 |
+
"encoder.block.8.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
501 |
+
"encoder.block.8.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
502 |
+
"encoder.block.8.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
503 |
+
"encoder.block.8.layer.1.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
504 |
+
"encoder.block.8.layer.1.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
505 |
+
"encoder.block.8.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
506 |
+
"encoder.block.9.layer.0.SelfAttention.k.weight": "pytorch_model-00001-of-00002.bin",
|
507 |
+
"encoder.block.9.layer.0.SelfAttention.o.weight": "pytorch_model-00001-of-00002.bin",
|
508 |
+
"encoder.block.9.layer.0.SelfAttention.q.weight": "pytorch_model-00001-of-00002.bin",
|
509 |
+
"encoder.block.9.layer.0.SelfAttention.v.weight": "pytorch_model-00001-of-00002.bin",
|
510 |
+
"encoder.block.9.layer.0.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
511 |
+
"encoder.block.9.layer.1.DenseReluDense.wi.weight": "pytorch_model-00001-of-00002.bin",
|
512 |
+
"encoder.block.9.layer.1.DenseReluDense.wo.weight": "pytorch_model-00001-of-00002.bin",
|
513 |
+
"encoder.block.9.layer.1.layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
514 |
+
"encoder.embed_tokens.weight": "pytorch_model-00001-of-00002.bin",
|
515 |
+
"encoder.final_layer_norm.weight": "pytorch_model-00001-of-00002.bin",
|
516 |
+
"lm_head.weight": "pytorch_model-00002-of-00002.bin",
|
517 |
+
"shared.weight": "pytorch_model-00001-of-00002.bin"
|
518 |
+
}
|
519 |
+
}
|
special_tokens_map.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"eos_token": "</s>", "unk_token": "<unk>", "pad_token": "<pad>", "additional_special_tokens": ["<extra_id_0>", "<extra_id_1>", "<extra_id_2>", "<extra_id_3>", "<extra_id_4>", "<extra_id_5>", "<extra_id_6>", "<extra_id_7>", "<extra_id_8>", "<extra_id_9>", "<extra_id_10>", "<extra_id_11>", "<extra_id_12>", "<extra_id_13>", "<extra_id_14>", "<extra_id_15>", "<extra_id_16>", "<extra_id_17>", "<extra_id_18>", "<extra_id_19>", "<extra_id_20>", "<extra_id_21>", "<extra_id_22>", "<extra_id_23>", "<extra_id_24>", "<extra_id_25>", "<extra_id_26>", "<extra_id_27>", "<extra_id_28>", "<extra_id_29>", "<extra_id_30>", "<extra_id_31>", "<extra_id_32>", "<extra_id_33>", "<extra_id_34>", "<extra_id_35>", "<extra_id_36>", "<extra_id_37>", "<extra_id_38>", "<extra_id_39>", "<extra_id_40>", "<extra_id_41>", "<extra_id_42>", "<extra_id_43>", "<extra_id_44>", "<extra_id_45>", "<extra_id_46>", "<extra_id_47>", "<extra_id_48>", "<extra_id_49>", "<extra_id_50>", "<extra_id_51>", "<extra_id_52>", "<extra_id_53>", "<extra_id_54>", "<extra_id_55>", "<extra_id_56>", "<extra_id_57>", "<extra_id_58>", "<extra_id_59>", "<extra_id_60>", "<extra_id_61>", "<extra_id_62>", "<extra_id_63>", "<extra_id_64>", "<extra_id_65>", "<extra_id_66>", "<extra_id_67>", "<extra_id_68>", "<extra_id_69>", "<extra_id_70>", "<extra_id_71>", "<extra_id_72>", "<extra_id_73>", "<extra_id_74>", "<extra_id_75>", "<extra_id_76>", "<extra_id_77>", "<extra_id_78>", "<extra_id_79>", "<extra_id_80>", "<extra_id_81>", "<extra_id_82>", "<extra_id_83>", "<extra_id_84>", "<extra_id_85>", "<extra_id_86>", "<extra_id_87>", "<extra_id_88>", "<extra_id_89>", "<extra_id_90>", "<extra_id_91>", "<extra_id_92>", "<extra_id_93>", "<extra_id_94>", "<extra_id_95>", "<extra_id_96>", "<extra_id_97>", "<extra_id_98>", "<extra_id_99>"]}
|
spiece.model
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d60acb128cf7b7f2536e8f38a5b18a05535c9e14c7a355904270e15b0945ea86
|
3 |
+
size 791656
|
tokenizer_config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"eos_token": "</s>", "unk_token": "<unk>", "pad_token": "<pad>", "extra_ids": 100, "additional_special_tokens": ["<extra_id_0>", "<extra_id_1>", "<extra_id_2>", "<extra_id_3>", "<extra_id_4>", "<extra_id_5>", "<extra_id_6>", "<extra_id_7>", "<extra_id_8>", "<extra_id_9>", "<extra_id_10>", "<extra_id_11>", "<extra_id_12>", "<extra_id_13>", "<extra_id_14>", "<extra_id_15>", "<extra_id_16>", "<extra_id_17>", "<extra_id_18>", "<extra_id_19>", "<extra_id_20>", "<extra_id_21>", "<extra_id_22>", "<extra_id_23>", "<extra_id_24>", "<extra_id_25>", "<extra_id_26>", "<extra_id_27>", "<extra_id_28>", "<extra_id_29>", "<extra_id_30>", "<extra_id_31>", "<extra_id_32>", "<extra_id_33>", "<extra_id_34>", "<extra_id_35>", "<extra_id_36>", "<extra_id_37>", "<extra_id_38>", "<extra_id_39>", "<extra_id_40>", "<extra_id_41>", "<extra_id_42>", "<extra_id_43>", "<extra_id_44>", "<extra_id_45>", "<extra_id_46>", "<extra_id_47>", "<extra_id_48>", "<extra_id_49>", "<extra_id_50>", "<extra_id_51>", "<extra_id_52>", "<extra_id_53>", "<extra_id_54>", "<extra_id_55>", "<extra_id_56>", "<extra_id_57>", "<extra_id_58>", "<extra_id_59>", "<extra_id_60>", "<extra_id_61>", "<extra_id_62>", "<extra_id_63>", "<extra_id_64>", "<extra_id_65>", "<extra_id_66>", "<extra_id_67>", "<extra_id_68>", "<extra_id_69>", "<extra_id_70>", "<extra_id_71>", "<extra_id_72>", "<extra_id_73>", "<extra_id_74>", "<extra_id_75>", "<extra_id_76>", "<extra_id_77>", "<extra_id_78>", "<extra_id_79>", "<extra_id_80>", "<extra_id_81>", "<extra_id_82>", "<extra_id_83>", "<extra_id_84>", "<extra_id_85>", "<extra_id_86>", "<extra_id_87>", "<extra_id_88>", "<extra_id_89>", "<extra_id_90>", "<extra_id_91>", "<extra_id_92>", "<extra_id_93>", "<extra_id_94>", "<extra_id_95>", "<extra_id_96>", "<extra_id_97>", "<extra_id_98>", "<extra_id_99>"], "model_max_length": 512, "special_tokens_map_file": null, "name_or_path": "t5-base", "tokenizer_class": "T5Tokenizer"}
|