Upload folder using huggingface_hub
Browse files- bird/codet5-base/run_1/mid-e11-s1000/config.json +71 -0
- bird/codet5-base/run_1/mid-e11-s1000/generation_config.json +9 -0
- bird/codet5-base/run_1/mid-e11-s1000/model.safetensors +3 -0
- bird/codet5-base/run_1/mid-e11-s1000/tokenizer.json +0 -0
- bird/codet5-base/run_1/mid-e11-s1000/tokenizer_config.json +17 -0
- bird/codet5-base/run_1/mid-e11-s1000/training_state.pt +3 -0
bird/codet5-base/run_1/mid-e11-s1000/config.json
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"T5ForConditionalGeneration"
|
| 4 |
+
],
|
| 5 |
+
"bos_token_id": 1,
|
| 6 |
+
"classifier_dropout": 0.0,
|
| 7 |
+
"d_ff": 3072,
|
| 8 |
+
"d_kv": 64,
|
| 9 |
+
"d_model": 768,
|
| 10 |
+
"decoder_start_token_id": 0,
|
| 11 |
+
"dense_act_fn": "relu",
|
| 12 |
+
"dropout_rate": 0.1,
|
| 13 |
+
"dtype": "float32",
|
| 14 |
+
"eos_token_id": 2,
|
| 15 |
+
"feed_forward_proj": "relu",
|
| 16 |
+
"gradient_checkpointing": false,
|
| 17 |
+
"id2label": {
|
| 18 |
+
"0": "LABEL_0"
|
| 19 |
+
},
|
| 20 |
+
"initializer_factor": 1.0,
|
| 21 |
+
"is_decoder": false,
|
| 22 |
+
"is_encoder_decoder": true,
|
| 23 |
+
"is_gated_act": false,
|
| 24 |
+
"label2id": {
|
| 25 |
+
"LABEL_0": 0
|
| 26 |
+
},
|
| 27 |
+
"layer_norm_epsilon": 1e-06,
|
| 28 |
+
"model_type": "t5",
|
| 29 |
+
"n_positions": 512,
|
| 30 |
+
"num_decoder_layers": 12,
|
| 31 |
+
"num_heads": 12,
|
| 32 |
+
"num_layers": 12,
|
| 33 |
+
"output_past": true,
|
| 34 |
+
"pad_token_id": 0,
|
| 35 |
+
"relative_attention_max_distance": 128,
|
| 36 |
+
"relative_attention_num_buckets": 32,
|
| 37 |
+
"scale_decoder_outputs": true,
|
| 38 |
+
"task_specific_params": {
|
| 39 |
+
"summarization": {
|
| 40 |
+
"early_stopping": true,
|
| 41 |
+
"length_penalty": 2.0,
|
| 42 |
+
"max_length": 200,
|
| 43 |
+
"min_length": 30,
|
| 44 |
+
"no_repeat_ngram_size": 3,
|
| 45 |
+
"num_beams": 4,
|
| 46 |
+
"prefix": "summarize: "
|
| 47 |
+
},
|
| 48 |
+
"translation_en_to_de": {
|
| 49 |
+
"early_stopping": true,
|
| 50 |
+
"max_length": 300,
|
| 51 |
+
"num_beams": 4,
|
| 52 |
+
"prefix": "translate English to German: "
|
| 53 |
+
},
|
| 54 |
+
"translation_en_to_fr": {
|
| 55 |
+
"early_stopping": true,
|
| 56 |
+
"max_length": 300,
|
| 57 |
+
"num_beams": 4,
|
| 58 |
+
"prefix": "translate English to French: "
|
| 59 |
+
},
|
| 60 |
+
"translation_en_to_ro": {
|
| 61 |
+
"early_stopping": true,
|
| 62 |
+
"max_length": 300,
|
| 63 |
+
"num_beams": 4,
|
| 64 |
+
"prefix": "translate English to Romanian: "
|
| 65 |
+
}
|
| 66 |
+
},
|
| 67 |
+
"tie_word_embeddings": true,
|
| 68 |
+
"transformers_version": "5.0.0",
|
| 69 |
+
"use_cache": true,
|
| 70 |
+
"vocab_size": 32100
|
| 71 |
+
}
|
bird/codet5-base/run_1/mid-e11-s1000/generation_config.json
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_from_model_config": true,
|
| 3 |
+
"bos_token_id": 1,
|
| 4 |
+
"decoder_start_token_id": 0,
|
| 5 |
+
"eos_token_id": 2,
|
| 6 |
+
"pad_token_id": 0,
|
| 7 |
+
"transformers_version": "5.0.0",
|
| 8 |
+
"use_cache": true
|
| 9 |
+
}
|
bird/codet5-base/run_1/mid-e11-s1000/model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:def668d2744d1a2eed7d7dab31e781e8689eec93ddce23fd20c3a9c17d7792ff
|
| 3 |
+
size 1187392592
|
bird/codet5-base/run_1/mid-e11-s1000/tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
bird/codet5-base/run_1/mid-e11-s1000/tokenizer_config.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"backend": "tokenizers",
|
| 4 |
+
"bos_token": "<s>",
|
| 5 |
+
"cls_token": "<s>",
|
| 6 |
+
"eos_token": "</s>",
|
| 7 |
+
"errors": "replace",
|
| 8 |
+
"extra_special_tokens": [],
|
| 9 |
+
"is_local": true,
|
| 10 |
+
"mask_token": "<mask>",
|
| 11 |
+
"model_max_length": 512,
|
| 12 |
+
"pad_token": "<pad>",
|
| 13 |
+
"sep_token": "</s>",
|
| 14 |
+
"tokenizer_class": "RobertaTokenizer",
|
| 15 |
+
"trim_offsets": true,
|
| 16 |
+
"unk_token": "<unk>"
|
| 17 |
+
}
|
bird/codet5-base/run_1/mid-e11-s1000/training_state.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:da8ab81f1fa18a15600791a61965f28b8e4ae91bafca82b2696494c7e22c8f77
|
| 3 |
+
size 2177727446
|