wei
commited on
Commit
·
15f0b0c
1
Parent(s):
6ef3c6d
Update from weiding
Browse files- README.md +7 -0
- config.json +30 -0
- pytorch_model.bin +3 -0
- t5_base_config.json +29 -0
- t5_small_config.json +29 -0
- tokenizer_config.json +1 -0
README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- summarization
|
| 4 |
+
widget:
|
| 5 |
+
- text: "func ( pr * Progress ) needSnapshotAbort ( ) bool { return pr . State == ProgressStateSnapshot && pr . Match >= pr . PendingSnapshot }"
|
| 6 |
+
|
| 7 |
+
---
|
config.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"T5Model"
|
| 4 |
+
],
|
| 5 |
+
"d_ff": 3072,
|
| 6 |
+
"d_kv": 64,
|
| 7 |
+
"d_model": 768,
|
| 8 |
+
"decoder_start_token_id": 0,
|
| 9 |
+
"dropout_rate": 0.1,
|
| 10 |
+
"eos_token_id": 1,
|
| 11 |
+
"initializer_factor": 1.0,
|
| 12 |
+
"is_encoder_decoder": true,
|
| 13 |
+
"layer_norm_epsilon": 1e-06,
|
| 14 |
+
"model_type": "t5",
|
| 15 |
+
"n_positions": 512,
|
| 16 |
+
"num_decoder_layers": 12,
|
| 17 |
+
"num_heads": 12,
|
| 18 |
+
"num_layers": 12,
|
| 19 |
+
"output_past": true,
|
| 20 |
+
"pad_token_id": 0,
|
| 21 |
+
"relative_attention_num_buckets": 32,
|
| 22 |
+
"task_specific_params": {
|
| 23 |
+
"summarization": {
|
| 24 |
+
"max_length": 512,
|
| 25 |
+
"num_beams": 4,
|
| 26 |
+
"prefix": "function documentation generation go: "
|
| 27 |
+
}
|
| 28 |
+
},
|
| 29 |
+
"vocab_size": 32128
|
| 30 |
+
}
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f8972b64b08594d7d1540503fd85b9cf9e5405e0cdbb8db58dc2405e6bf1fb19
|
| 3 |
+
size 891734137
|
t5_base_config.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"T5WithLMHeadModel"
|
| 4 |
+
],
|
| 5 |
+
"d_ff": 3072,
|
| 6 |
+
"d_kv": 64,
|
| 7 |
+
"d_model": 768,
|
| 8 |
+
"decoder_start_token_id": 0,
|
| 9 |
+
"dropout_rate": 0.1,
|
| 10 |
+
"eos_token_id": 1,
|
| 11 |
+
"initializer_factor": 1.0,
|
| 12 |
+
"is_encoder_decoder": true,
|
| 13 |
+
"layer_norm_epsilon": 1e-06,
|
| 14 |
+
"model_type": "t5",
|
| 15 |
+
"n_positions": 512,
|
| 16 |
+
"num_heads": 12,
|
| 17 |
+
"num_layers": 12,
|
| 18 |
+
"output_past": true,
|
| 19 |
+
"pad_token_id": 0,
|
| 20 |
+
"relative_attention_num_buckets": 32,
|
| 21 |
+
"task_specific_params": {
|
| 22 |
+
"summarization": {
|
| 23 |
+
"max_length": 512,
|
| 24 |
+
"num_beams": 4,
|
| 25 |
+
"prefix": "function documentation generation go: "
|
| 26 |
+
}
|
| 27 |
+
},
|
| 28 |
+
"vocab_size": 32128
|
| 29 |
+
}
|
t5_small_config.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"T5WithLMHeadModel"
|
| 4 |
+
],
|
| 5 |
+
"d_ff": 2048,
|
| 6 |
+
"d_kv": 64,
|
| 7 |
+
"d_model": 512,
|
| 8 |
+
"decoder_start_token_id": 0,
|
| 9 |
+
"dropout_rate": 0.1,
|
| 10 |
+
"eos_token_id": 1,
|
| 11 |
+
"initializer_factor": 1.0,
|
| 12 |
+
"is_encoder_decoder": true,
|
| 13 |
+
"layer_norm_epsilon": 1e-06,
|
| 14 |
+
"model_type": "t5",
|
| 15 |
+
"n_positions": 512,
|
| 16 |
+
"num_heads": 8,
|
| 17 |
+
"num_layers": 6,
|
| 18 |
+
"output_past": true,
|
| 19 |
+
"pad_token_id": 0,
|
| 20 |
+
"relative_attention_num_buckets": 32,
|
| 21 |
+
"task_specific_params": {
|
| 22 |
+
"summarization": {
|
| 23 |
+
"max_length": 512,
|
| 24 |
+
"num_beams": 4,
|
| 25 |
+
"prefix": "function documentation generation go: "
|
| 26 |
+
}
|
| 27 |
+
},
|
| 28 |
+
"vocab_size": 32128
|
| 29 |
+
}
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"do_lower_case": false}
|