Training in progress, step 1000
Browse files
    	
        .gitignore
    ADDED
    
    | @@ -0,0 +1 @@ | |
|  | 
|  | |
| 1 | 
            +
            checkpoint-*/
         | 
    	
        config.json
    ADDED
    
    | @@ -0,0 +1,182 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "architectures": [
         | 
| 3 | 
            +
                "EncoderDecoderModel"
         | 
| 4 | 
            +
              ],
         | 
| 5 | 
            +
              "decoder": {
         | 
| 6 | 
            +
                "_name_or_path": "gpt2",
         | 
| 7 | 
            +
                "activation_function": "gelu_new",
         | 
| 8 | 
            +
                "add_cross_attention": true,
         | 
| 9 | 
            +
                "architectures": [
         | 
| 10 | 
            +
                  "GPT2LMHeadModel"
         | 
| 11 | 
            +
                ],
         | 
| 12 | 
            +
                "attn_pdrop": 0.1,
         | 
| 13 | 
            +
                "bad_words_ids": null,
         | 
| 14 | 
            +
                "bos_token_id": 50256,
         | 
| 15 | 
            +
                "chunk_size_feed_forward": 0,
         | 
| 16 | 
            +
                "cross_attention_hidden_size": null,
         | 
| 17 | 
            +
                "decoder_start_token_id": null,
         | 
| 18 | 
            +
                "diversity_penalty": 0.0,
         | 
| 19 | 
            +
                "do_sample": false,
         | 
| 20 | 
            +
                "early_stopping": false,
         | 
| 21 | 
            +
                "embd_pdrop": 0.1,
         | 
| 22 | 
            +
                "encoder_no_repeat_ngram_size": 0,
         | 
| 23 | 
            +
                "eos_token_id": 50256,
         | 
| 24 | 
            +
                "finetuning_task": null,
         | 
| 25 | 
            +
                "forced_bos_token_id": null,
         | 
| 26 | 
            +
                "forced_eos_token_id": null,
         | 
| 27 | 
            +
                "id2label": {
         | 
| 28 | 
            +
                  "0": "LABEL_0",
         | 
| 29 | 
            +
                  "1": "LABEL_1"
         | 
| 30 | 
            +
                },
         | 
| 31 | 
            +
                "initializer_range": 0.02,
         | 
| 32 | 
            +
                "is_decoder": true,
         | 
| 33 | 
            +
                "is_encoder_decoder": false,
         | 
| 34 | 
            +
                "label2id": {
         | 
| 35 | 
            +
                  "LABEL_0": 0,
         | 
| 36 | 
            +
                  "LABEL_1": 1
         | 
| 37 | 
            +
                },
         | 
| 38 | 
            +
                "layer_norm_epsilon": 1e-05,
         | 
| 39 | 
            +
                "length_penalty": 1.0,
         | 
| 40 | 
            +
                "max_length": 20,
         | 
| 41 | 
            +
                "min_length": 0,
         | 
| 42 | 
            +
                "model_type": "gpt2",
         | 
| 43 | 
            +
                "n_ctx": 1024,
         | 
| 44 | 
            +
                "n_embd": 768,
         | 
| 45 | 
            +
                "n_head": 12,
         | 
| 46 | 
            +
                "n_inner": null,
         | 
| 47 | 
            +
                "n_layer": 12,
         | 
| 48 | 
            +
                "n_positions": 1024,
         | 
| 49 | 
            +
                "no_repeat_ngram_size": 0,
         | 
| 50 | 
            +
                "num_beam_groups": 1,
         | 
| 51 | 
            +
                "num_beams": 1,
         | 
| 52 | 
            +
                "num_return_sequences": 1,
         | 
| 53 | 
            +
                "output_attentions": false,
         | 
| 54 | 
            +
                "output_hidden_states": false,
         | 
| 55 | 
            +
                "output_scores": false,
         | 
| 56 | 
            +
                "pad_token_id": null,
         | 
| 57 | 
            +
                "prefix": null,
         | 
| 58 | 
            +
                "problem_type": null,
         | 
| 59 | 
            +
                "pruned_heads": {},
         | 
| 60 | 
            +
                "remove_invalid_values": false,
         | 
| 61 | 
            +
                "reorder_and_upcast_attn": false,
         | 
| 62 | 
            +
                "repetition_penalty": 1.0,
         | 
| 63 | 
            +
                "resid_pdrop": 0.1,
         | 
| 64 | 
            +
                "return_dict": true,
         | 
| 65 | 
            +
                "return_dict_in_generate": false,
         | 
| 66 | 
            +
                "scale_attn_by_inverse_layer_idx": false,
         | 
| 67 | 
            +
                "scale_attn_weights": true,
         | 
| 68 | 
            +
                "sep_token_id": null,
         | 
| 69 | 
            +
                "summary_activation": null,
         | 
| 70 | 
            +
                "summary_first_dropout": 0.1,
         | 
| 71 | 
            +
                "summary_proj_to_labels": true,
         | 
| 72 | 
            +
                "summary_type": "cls_index",
         | 
| 73 | 
            +
                "summary_use_proj": true,
         | 
| 74 | 
            +
                "task_specific_params": {
         | 
| 75 | 
            +
                  "text-generation": {
         | 
| 76 | 
            +
                    "do_sample": true,
         | 
| 77 | 
            +
                    "max_length": 50
         | 
| 78 | 
            +
                  }
         | 
| 79 | 
            +
                },
         | 
| 80 | 
            +
                "temperature": 1.0,
         | 
| 81 | 
            +
                "tie_encoder_decoder": false,
         | 
| 82 | 
            +
                "tie_word_embeddings": true,
         | 
| 83 | 
            +
                "tokenizer_class": null,
         | 
| 84 | 
            +
                "top_k": 50,
         | 
| 85 | 
            +
                "top_p": 1.0,
         | 
| 86 | 
            +
                "torch_dtype": null,
         | 
| 87 | 
            +
                "torchscript": false,
         | 
| 88 | 
            +
                "transformers_version": "4.12.0.dev0",
         | 
| 89 | 
            +
                "use_bfloat16": false,
         | 
| 90 | 
            +
                "use_cache": true,
         | 
| 91 | 
            +
                "vocab_size": 50257
         | 
| 92 | 
            +
              },
         | 
| 93 | 
            +
              "decoder_start_token_id": 50256,
         | 
| 94 | 
            +
              "early_stopping": true,
         | 
| 95 | 
            +
              "encoder": {
         | 
| 96 | 
            +
                "_name_or_path": "bert-base-cased",
         | 
| 97 | 
            +
                "add_cross_attention": false,
         | 
| 98 | 
            +
                "architectures": [
         | 
| 99 | 
            +
                  "BertForMaskedLM"
         | 
| 100 | 
            +
                ],
         | 
| 101 | 
            +
                "attention_probs_dropout_prob": 0.1,
         | 
| 102 | 
            +
                "bad_words_ids": null,
         | 
| 103 | 
            +
                "bos_token_id": null,
         | 
| 104 | 
            +
                "chunk_size_feed_forward": 0,
         | 
| 105 | 
            +
                "classifier_dropout": null,
         | 
| 106 | 
            +
                "cross_attention_hidden_size": null,
         | 
| 107 | 
            +
                "decoder_start_token_id": null,
         | 
| 108 | 
            +
                "diversity_penalty": 0.0,
         | 
| 109 | 
            +
                "do_sample": false,
         | 
| 110 | 
            +
                "early_stopping": false,
         | 
| 111 | 
            +
                "encoder_no_repeat_ngram_size": 0,
         | 
| 112 | 
            +
                "eos_token_id": null,
         | 
| 113 | 
            +
                "finetuning_task": null,
         | 
| 114 | 
            +
                "forced_bos_token_id": null,
         | 
| 115 | 
            +
                "forced_eos_token_id": null,
         | 
| 116 | 
            +
                "gradient_checkpointing": false,
         | 
| 117 | 
            +
                "hidden_act": "gelu",
         | 
| 118 | 
            +
                "hidden_dropout_prob": 0.1,
         | 
| 119 | 
            +
                "hidden_size": 768,
         | 
| 120 | 
            +
                "id2label": {
         | 
| 121 | 
            +
                  "0": "LABEL_0",
         | 
| 122 | 
            +
                  "1": "LABEL_1"
         | 
| 123 | 
            +
                },
         | 
| 124 | 
            +
                "initializer_range": 0.02,
         | 
| 125 | 
            +
                "intermediate_size": 3072,
         | 
| 126 | 
            +
                "is_decoder": false,
         | 
| 127 | 
            +
                "is_encoder_decoder": false,
         | 
| 128 | 
            +
                "label2id": {
         | 
| 129 | 
            +
                  "LABEL_0": 0,
         | 
| 130 | 
            +
                  "LABEL_1": 1
         | 
| 131 | 
            +
                },
         | 
| 132 | 
            +
                "layer_norm_eps": 1e-12,
         | 
| 133 | 
            +
                "length_penalty": 1.0,
         | 
| 134 | 
            +
                "max_length": 20,
         | 
| 135 | 
            +
                "max_position_embeddings": 512,
         | 
| 136 | 
            +
                "min_length": 0,
         | 
| 137 | 
            +
                "model_type": "bert",
         | 
| 138 | 
            +
                "no_repeat_ngram_size": 0,
         | 
| 139 | 
            +
                "num_attention_heads": 12,
         | 
| 140 | 
            +
                "num_beam_groups": 1,
         | 
| 141 | 
            +
                "num_beams": 1,
         | 
| 142 | 
            +
                "num_hidden_layers": 12,
         | 
| 143 | 
            +
                "num_return_sequences": 1,
         | 
| 144 | 
            +
                "output_attentions": false,
         | 
| 145 | 
            +
                "output_hidden_states": false,
         | 
| 146 | 
            +
                "output_scores": false,
         | 
| 147 | 
            +
                "pad_token_id": 0,
         | 
| 148 | 
            +
                "position_embedding_type": "absolute",
         | 
| 149 | 
            +
                "prefix": null,
         | 
| 150 | 
            +
                "problem_type": null,
         | 
| 151 | 
            +
                "pruned_heads": {},
         | 
| 152 | 
            +
                "remove_invalid_values": false,
         | 
| 153 | 
            +
                "repetition_penalty": 1.0,
         | 
| 154 | 
            +
                "return_dict": true,
         | 
| 155 | 
            +
                "return_dict_in_generate": false,
         | 
| 156 | 
            +
                "sep_token_id": null,
         | 
| 157 | 
            +
                "task_specific_params": null,
         | 
| 158 | 
            +
                "temperature": 1.0,
         | 
| 159 | 
            +
                "tie_encoder_decoder": false,
         | 
| 160 | 
            +
                "tie_word_embeddings": true,
         | 
| 161 | 
            +
                "tokenizer_class": null,
         | 
| 162 | 
            +
                "top_k": 50,
         | 
| 163 | 
            +
                "top_p": 1.0,
         | 
| 164 | 
            +
                "torch_dtype": null,
         | 
| 165 | 
            +
                "torchscript": false,
         | 
| 166 | 
            +
                "transformers_version": "4.12.0.dev0",
         | 
| 167 | 
            +
                "type_vocab_size": 2,
         | 
| 168 | 
            +
                "use_bfloat16": false,
         | 
| 169 | 
            +
                "use_cache": true,
         | 
| 170 | 
            +
                "vocab_size": 28996
         | 
| 171 | 
            +
              },
         | 
| 172 | 
            +
              "is_encoder_decoder": true,
         | 
| 173 | 
            +
              "length_penalty": 2.0,
         | 
| 174 | 
            +
              "max_length": 64,
         | 
| 175 | 
            +
              "model_type": "encoder-decoder",
         | 
| 176 | 
            +
              "no_repeat_ngram_size": 3,
         | 
| 177 | 
            +
              "num_beams": 4,
         | 
| 178 | 
            +
              "pad_token_id": 50256,
         | 
| 179 | 
            +
              "torch_dtype": "float32",
         | 
| 180 | 
            +
              "transformers_version": null,
         | 
| 181 | 
            +
              "vocab_size": 28996
         | 
| 182 | 
            +
            }
         | 
    	
        pytorch_model.bin
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:fdf211109b62818d8fd2fd92f282054892162b0350adcf8a3c021e9b38aba591
         | 
| 3 | 
            +
            size 1069829993
         | 
    	
        runs/Dec16_01-34-21_0c1793d5e019/1639618504.1060195/events.out.tfevents.1639618504.0c1793d5e019.2544.1
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:939dbe04797aa9f0ea39f9f8decfdef21ae981130d7fd9d7196728a7a49a60f0
         | 
| 3 | 
            +
            size 4784
         | 
    	
        runs/Dec16_01-34-21_0c1793d5e019/events.out.tfevents.1639618504.0c1793d5e019.2544.0
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:5dd7547d68c6a6bb14c2d95cdc95a657b1ab8bbcfdf5ed1c459dca643d7d66db
         | 
| 3 | 
            +
            size 7543
         | 
    	
        training_args.bin
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:fd87a18b5a07325e1d9788c7d464a776bb3ef71e4cb4a577fb32a60b8a353b11
         | 
| 3 | 
            +
            size 2991
         | 
