End of training
Browse files- README.md +71 -0
- config.json +39 -0
- generation_config.json +7 -0
- merges.txt +0 -0
- model.safetensors +3 -0
- runs/Dec27_05-39-30_8a41c2e7b8da/events.out.tfevents.1735278199.8a41c2e7b8da.444.0 +3 -0
- special_tokens_map.json +28 -0
- tokenizer.json +0 -0
- tokenizer_config.json +155 -0
- training_args.bin +3 -0
- vocab.json +0 -0
    	
        README.md
    ADDED
    
    | @@ -0,0 +1,71 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            base_model: HuggingFaceTB/SmolLM2-135M-Instruct
         | 
| 3 | 
            +
            library_name: transformers
         | 
| 4 | 
            +
            model_name: SmolLM2-FT-DPO
         | 
| 5 | 
            +
            tags:
         | 
| 6 | 
            +
            - generated_from_trainer
         | 
| 7 | 
            +
            - smol-course
         | 
| 8 | 
            +
            - module_1
         | 
| 9 | 
            +
            - trl
         | 
| 10 | 
            +
            - dpo
         | 
| 11 | 
            +
            licence: license
         | 
| 12 | 
            +
            ---
         | 
| 13 | 
            +
             | 
| 14 | 
            +
            # Model Card for SmolLM2-FT-DPO
         | 
| 15 | 
            +
             | 
| 16 | 
            +
            This model is a fine-tuned version of [HuggingFaceTB/SmolLM2-135M-Instruct](https://huggingface.co/HuggingFaceTB/SmolLM2-135M-Instruct).
         | 
| 17 | 
            +
            It has been trained using [TRL](https://github.com/huggingface/trl).
         | 
| 18 | 
            +
             | 
| 19 | 
            +
            ## Quick start
         | 
| 20 | 
            +
             | 
| 21 | 
            +
            ```python
         | 
| 22 | 
            +
            from transformers import pipeline
         | 
| 23 | 
            +
             | 
| 24 | 
            +
            question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
         | 
| 25 | 
            +
            generator = pipeline("text-generation", model="mathur-exe/SmolLM2-FT-DPO", device="cuda")
         | 
| 26 | 
            +
            output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
         | 
| 27 | 
            +
            print(output["generated_text"])
         | 
| 28 | 
            +
            ```
         | 
| 29 | 
            +
             | 
| 30 | 
            +
            ## Training procedure
         | 
| 31 | 
            +
             | 
| 32 | 
            +
            [<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="150" height="24"/>](https://wandb.ai/gym/huggingface/runs/sxafd5da) 
         | 
| 33 | 
            +
             | 
| 34 | 
            +
             | 
| 35 | 
            +
            This model was trained with DPO, a method introduced in [Direct Preference Optimization: Your Language Model is Secretly a Reward Model](https://huggingface.co/papers/2305.18290).
         | 
| 36 | 
            +
             | 
| 37 | 
            +
            ### Framework versions
         | 
| 38 | 
            +
             | 
| 39 | 
            +
            - TRL: 0.13.0
         | 
| 40 | 
            +
            - Transformers: 4.47.1
         | 
| 41 | 
            +
            - Pytorch: 2.5.1+cu121
         | 
| 42 | 
            +
            - Datasets: 3.2.0
         | 
| 43 | 
            +
            - Tokenizers: 0.21.0
         | 
| 44 | 
            +
             | 
| 45 | 
            +
            ## Citations
         | 
| 46 | 
            +
             | 
| 47 | 
            +
            Cite DPO as:
         | 
| 48 | 
            +
             | 
| 49 | 
            +
            ```bibtex
         | 
| 50 | 
            +
            @inproceedings{rafailov2023direct,
         | 
| 51 | 
            +
                title        = {{Direct Preference Optimization: Your Language Model is Secretly a Reward Model}},
         | 
| 52 | 
            +
                author       = {Rafael Rafailov and Archit Sharma and Eric Mitchell and Christopher D. Manning and Stefano Ermon and Chelsea Finn},
         | 
| 53 | 
            +
                year         = 2023,
         | 
| 54 | 
            +
                booktitle    = {Advances in Neural Information Processing Systems 36: Annual Conference on Neural Information Processing Systems 2023, NeurIPS 2023, New Orleans, LA, USA, December 10 - 16, 2023},
         | 
| 55 | 
            +
                url          = {http://papers.nips.cc/paper_files/paper/2023/hash/a85b405ed65c6477a4fe8302b5e06ce7-Abstract-Conference.html},
         | 
| 56 | 
            +
                editor       = {Alice Oh and Tristan Naumann and Amir Globerson and Kate Saenko and Moritz Hardt and Sergey Levine},
         | 
| 57 | 
            +
            }
         | 
| 58 | 
            +
            ```
         | 
| 59 | 
            +
             | 
| 60 | 
            +
            Cite TRL as:
         | 
| 61 | 
            +
                
         | 
| 62 | 
            +
            ```bibtex
         | 
| 63 | 
            +
            @misc{vonwerra2022trl,
         | 
| 64 | 
            +
            	title        = {{TRL: Transformer Reinforcement Learning}},
         | 
| 65 | 
            +
            	author       = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallouédec},
         | 
| 66 | 
            +
            	year         = 2020,
         | 
| 67 | 
            +
            	journal      = {GitHub repository},
         | 
| 68 | 
            +
            	publisher    = {GitHub},
         | 
| 69 | 
            +
            	howpublished = {\url{https://github.com/huggingface/trl}}
         | 
| 70 | 
            +
            }
         | 
| 71 | 
            +
            ```
         | 
    	
        config.json
    ADDED
    
    | @@ -0,0 +1,39 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "_name_or_path": "HuggingFaceTB/SmolLM2-135M-Instruct",
         | 
| 3 | 
            +
              "architectures": [
         | 
| 4 | 
            +
                "LlamaForCausalLM"
         | 
| 5 | 
            +
              ],
         | 
| 6 | 
            +
              "attention_bias": false,
         | 
| 7 | 
            +
              "attention_dropout": 0.0,
         | 
| 8 | 
            +
              "bos_token_id": 1,
         | 
| 9 | 
            +
              "eos_token_id": 2,
         | 
| 10 | 
            +
              "head_dim": 64,
         | 
| 11 | 
            +
              "hidden_act": "silu",
         | 
| 12 | 
            +
              "hidden_size": 576,
         | 
| 13 | 
            +
              "initializer_range": 0.041666666666666664,
         | 
| 14 | 
            +
              "intermediate_size": 1536,
         | 
| 15 | 
            +
              "is_llama_config": true,
         | 
| 16 | 
            +
              "max_position_embeddings": 8192,
         | 
| 17 | 
            +
              "mlp_bias": false,
         | 
| 18 | 
            +
              "model_type": "llama",
         | 
| 19 | 
            +
              "num_attention_heads": 9,
         | 
| 20 | 
            +
              "num_hidden_layers": 30,
         | 
| 21 | 
            +
              "num_key_value_heads": 3,
         | 
| 22 | 
            +
              "pad_token_id": 2,
         | 
| 23 | 
            +
              "pretraining_tp": 1,
         | 
| 24 | 
            +
              "rms_norm_eps": 1e-05,
         | 
| 25 | 
            +
              "rope_interleaved": false,
         | 
| 26 | 
            +
              "rope_scaling": null,
         | 
| 27 | 
            +
              "rope_theta": 100000,
         | 
| 28 | 
            +
              "tie_word_embeddings": true,
         | 
| 29 | 
            +
              "torch_dtype": "float32",
         | 
| 30 | 
            +
              "transformers.js_config": {
         | 
| 31 | 
            +
                "kv_cache_dtype": {
         | 
| 32 | 
            +
                  "fp16": "float16",
         | 
| 33 | 
            +
                  "q4f16": "float16"
         | 
| 34 | 
            +
                }
         | 
| 35 | 
            +
              },
         | 
| 36 | 
            +
              "transformers_version": "4.47.1",
         | 
| 37 | 
            +
              "use_cache": false,
         | 
| 38 | 
            +
              "vocab_size": 49152
         | 
| 39 | 
            +
            }
         | 
    	
        generation_config.json
    ADDED
    
    | @@ -0,0 +1,7 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "_from_model_config": true,
         | 
| 3 | 
            +
              "bos_token_id": 1,
         | 
| 4 | 
            +
              "eos_token_id": 2,
         | 
| 5 | 
            +
              "pad_token_id": 2,
         | 
| 6 | 
            +
              "transformers_version": "4.47.1"
         | 
| 7 | 
            +
            }
         | 
    	
        merges.txt
    ADDED
    
    | The diff for this file is too large to render. 
		See raw diff | 
|  | 
    	
        model.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:34dc79ee5d67c9faca7a013a289e3bde45f7319ed58dfe9d91915b7f5b3d4395
         | 
| 3 | 
            +
            size 538090408
         | 
    	
        runs/Dec27_05-39-30_8a41c2e7b8da/events.out.tfevents.1735278199.8a41c2e7b8da.444.0
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:47cc8c329c6fcea4735e920fdbbf555732826a5b0d3d22cd53f4f9a01ea21f9c
         | 
| 3 | 
            +
            size 142686
         | 
    	
        special_tokens_map.json
    ADDED
    
    | @@ -0,0 +1,28 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "additional_special_tokens": [
         | 
| 3 | 
            +
                "<|im_start|>",
         | 
| 4 | 
            +
                "<|im_end|>"
         | 
| 5 | 
            +
              ],
         | 
| 6 | 
            +
              "bos_token": {
         | 
| 7 | 
            +
                "content": "<|im_start|>",
         | 
| 8 | 
            +
                "lstrip": false,
         | 
| 9 | 
            +
                "normalized": false,
         | 
| 10 | 
            +
                "rstrip": false,
         | 
| 11 | 
            +
                "single_word": false
         | 
| 12 | 
            +
              },
         | 
| 13 | 
            +
              "eos_token": {
         | 
| 14 | 
            +
                "content": "<|im_end|>",
         | 
| 15 | 
            +
                "lstrip": false,
         | 
| 16 | 
            +
                "normalized": false,
         | 
| 17 | 
            +
                "rstrip": false,
         | 
| 18 | 
            +
                "single_word": false
         | 
| 19 | 
            +
              },
         | 
| 20 | 
            +
              "pad_token": "<|im_end|>",
         | 
| 21 | 
            +
              "unk_token": {
         | 
| 22 | 
            +
                "content": "<|endoftext|>",
         | 
| 23 | 
            +
                "lstrip": false,
         | 
| 24 | 
            +
                "normalized": false,
         | 
| 25 | 
            +
                "rstrip": false,
         | 
| 26 | 
            +
                "single_word": false
         | 
| 27 | 
            +
              }
         | 
| 28 | 
            +
            }
         | 
    	
        tokenizer.json
    ADDED
    
    | The diff for this file is too large to render. 
		See raw diff | 
|  | 
    	
        tokenizer_config.json
    ADDED
    
    | @@ -0,0 +1,155 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "add_prefix_space": false,
         | 
| 3 | 
            +
              "added_tokens_decoder": {
         | 
| 4 | 
            +
                "0": {
         | 
| 5 | 
            +
                  "content": "<|endoftext|>",
         | 
| 6 | 
            +
                  "lstrip": false,
         | 
| 7 | 
            +
                  "normalized": false,
         | 
| 8 | 
            +
                  "rstrip": false,
         | 
| 9 | 
            +
                  "single_word": false,
         | 
| 10 | 
            +
                  "special": true
         | 
| 11 | 
            +
                },
         | 
| 12 | 
            +
                "1": {
         | 
| 13 | 
            +
                  "content": "<|im_start|>",
         | 
| 14 | 
            +
                  "lstrip": false,
         | 
| 15 | 
            +
                  "normalized": false,
         | 
| 16 | 
            +
                  "rstrip": false,
         | 
| 17 | 
            +
                  "single_word": false,
         | 
| 18 | 
            +
                  "special": true
         | 
| 19 | 
            +
                },
         | 
| 20 | 
            +
                "2": {
         | 
| 21 | 
            +
                  "content": "<|im_end|>",
         | 
| 22 | 
            +
                  "lstrip": false,
         | 
| 23 | 
            +
                  "normalized": false,
         | 
| 24 | 
            +
                  "rstrip": false,
         | 
| 25 | 
            +
                  "single_word": false,
         | 
| 26 | 
            +
                  "special": true
         | 
| 27 | 
            +
                },
         | 
| 28 | 
            +
                "3": {
         | 
| 29 | 
            +
                  "content": "<repo_name>",
         | 
| 30 | 
            +
                  "lstrip": false,
         | 
| 31 | 
            +
                  "normalized": false,
         | 
| 32 | 
            +
                  "rstrip": false,
         | 
| 33 | 
            +
                  "single_word": false,
         | 
| 34 | 
            +
                  "special": true
         | 
| 35 | 
            +
                },
         | 
| 36 | 
            +
                "4": {
         | 
| 37 | 
            +
                  "content": "<reponame>",
         | 
| 38 | 
            +
                  "lstrip": false,
         | 
| 39 | 
            +
                  "normalized": false,
         | 
| 40 | 
            +
                  "rstrip": false,
         | 
| 41 | 
            +
                  "single_word": false,
         | 
| 42 | 
            +
                  "special": true
         | 
| 43 | 
            +
                },
         | 
| 44 | 
            +
                "5": {
         | 
| 45 | 
            +
                  "content": "<file_sep>",
         | 
| 46 | 
            +
                  "lstrip": false,
         | 
| 47 | 
            +
                  "normalized": false,
         | 
| 48 | 
            +
                  "rstrip": false,
         | 
| 49 | 
            +
                  "single_word": false,
         | 
| 50 | 
            +
                  "special": true
         | 
| 51 | 
            +
                },
         | 
| 52 | 
            +
                "6": {
         | 
| 53 | 
            +
                  "content": "<filename>",
         | 
| 54 | 
            +
                  "lstrip": false,
         | 
| 55 | 
            +
                  "normalized": false,
         | 
| 56 | 
            +
                  "rstrip": false,
         | 
| 57 | 
            +
                  "single_word": false,
         | 
| 58 | 
            +
                  "special": true
         | 
| 59 | 
            +
                },
         | 
| 60 | 
            +
                "7": {
         | 
| 61 | 
            +
                  "content": "<gh_stars>",
         | 
| 62 | 
            +
                  "lstrip": false,
         | 
| 63 | 
            +
                  "normalized": false,
         | 
| 64 | 
            +
                  "rstrip": false,
         | 
| 65 | 
            +
                  "single_word": false,
         | 
| 66 | 
            +
                  "special": true
         | 
| 67 | 
            +
                },
         | 
| 68 | 
            +
                "8": {
         | 
| 69 | 
            +
                  "content": "<issue_start>",
         | 
| 70 | 
            +
                  "lstrip": false,
         | 
| 71 | 
            +
                  "normalized": false,
         | 
| 72 | 
            +
                  "rstrip": false,
         | 
| 73 | 
            +
                  "single_word": false,
         | 
| 74 | 
            +
                  "special": true
         | 
| 75 | 
            +
                },
         | 
| 76 | 
            +
                "9": {
         | 
| 77 | 
            +
                  "content": "<issue_comment>",
         | 
| 78 | 
            +
                  "lstrip": false,
         | 
| 79 | 
            +
                  "normalized": false,
         | 
| 80 | 
            +
                  "rstrip": false,
         | 
| 81 | 
            +
                  "single_word": false,
         | 
| 82 | 
            +
                  "special": true
         | 
| 83 | 
            +
                },
         | 
| 84 | 
            +
                "10": {
         | 
| 85 | 
            +
                  "content": "<issue_closed>",
         | 
| 86 | 
            +
                  "lstrip": false,
         | 
| 87 | 
            +
                  "normalized": false,
         | 
| 88 | 
            +
                  "rstrip": false,
         | 
| 89 | 
            +
                  "single_word": false,
         | 
| 90 | 
            +
                  "special": true
         | 
| 91 | 
            +
                },
         | 
| 92 | 
            +
                "11": {
         | 
| 93 | 
            +
                  "content": "<jupyter_start>",
         | 
| 94 | 
            +
                  "lstrip": false,
         | 
| 95 | 
            +
                  "normalized": false,
         | 
| 96 | 
            +
                  "rstrip": false,
         | 
| 97 | 
            +
                  "single_word": false,
         | 
| 98 | 
            +
                  "special": true
         | 
| 99 | 
            +
                },
         | 
| 100 | 
            +
                "12": {
         | 
| 101 | 
            +
                  "content": "<jupyter_text>",
         | 
| 102 | 
            +
                  "lstrip": false,
         | 
| 103 | 
            +
                  "normalized": false,
         | 
| 104 | 
            +
                  "rstrip": false,
         | 
| 105 | 
            +
                  "single_word": false,
         | 
| 106 | 
            +
                  "special": true
         | 
| 107 | 
            +
                },
         | 
| 108 | 
            +
                "13": {
         | 
| 109 | 
            +
                  "content": "<jupyter_code>",
         | 
| 110 | 
            +
                  "lstrip": false,
         | 
| 111 | 
            +
                  "normalized": false,
         | 
| 112 | 
            +
                  "rstrip": false,
         | 
| 113 | 
            +
                  "single_word": false,
         | 
| 114 | 
            +
                  "special": true
         | 
| 115 | 
            +
                },
         | 
| 116 | 
            +
                "14": {
         | 
| 117 | 
            +
                  "content": "<jupyter_output>",
         | 
| 118 | 
            +
                  "lstrip": false,
         | 
| 119 | 
            +
                  "normalized": false,
         | 
| 120 | 
            +
                  "rstrip": false,
         | 
| 121 | 
            +
                  "single_word": false,
         | 
| 122 | 
            +
                  "special": true
         | 
| 123 | 
            +
                },
         | 
| 124 | 
            +
                "15": {
         | 
| 125 | 
            +
                  "content": "<jupyter_script>",
         | 
| 126 | 
            +
                  "lstrip": false,
         | 
| 127 | 
            +
                  "normalized": false,
         | 
| 128 | 
            +
                  "rstrip": false,
         | 
| 129 | 
            +
                  "single_word": false,
         | 
| 130 | 
            +
                  "special": true
         | 
| 131 | 
            +
                },
         | 
| 132 | 
            +
                "16": {
         | 
| 133 | 
            +
                  "content": "<empty_output>",
         | 
| 134 | 
            +
                  "lstrip": false,
         | 
| 135 | 
            +
                  "normalized": false,
         | 
| 136 | 
            +
                  "rstrip": false,
         | 
| 137 | 
            +
                  "single_word": false,
         | 
| 138 | 
            +
                  "special": true
         | 
| 139 | 
            +
                }
         | 
| 140 | 
            +
              },
         | 
| 141 | 
            +
              "additional_special_tokens": [
         | 
| 142 | 
            +
                "<|im_start|>",
         | 
| 143 | 
            +
                "<|im_end|>"
         | 
| 144 | 
            +
              ],
         | 
| 145 | 
            +
              "bos_token": "<|im_start|>",
         | 
| 146 | 
            +
              "chat_template": "{% for message in messages %}{% if loop.first and messages[0]['role'] != 'system' %}{{ '<|im_start|>system\nYou are a helpful AI assistant named SmolLM, trained by Hugging Face<|im_end|>\n' }}{% endif %}{{'<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>' + '\n'}}{% endfor %}{% if add_generation_prompt %}{{ '<|im_start|>assistant\n' }}{% endif %}",
         | 
| 147 | 
            +
              "clean_up_tokenization_spaces": false,
         | 
| 148 | 
            +
              "eos_token": "<|im_end|>",
         | 
| 149 | 
            +
              "extra_special_tokens": {},
         | 
| 150 | 
            +
              "model_max_length": 2048,
         | 
| 151 | 
            +
              "pad_token": "<|im_end|>",
         | 
| 152 | 
            +
              "tokenizer_class": "GPT2Tokenizer",
         | 
| 153 | 
            +
              "unk_token": "<|endoftext|>",
         | 
| 154 | 
            +
              "vocab_size": 49152
         | 
| 155 | 
            +
            }
         | 
    	
        training_args.bin
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:a9968aa0c54186d42b9f5320d22aad62ac560db0e362c9c0ae202bde787f3dc9
         | 
| 3 | 
            +
            size 6264
         | 
    	
        vocab.json
    ADDED
    
    | The diff for this file is too large to render. 
		See raw diff | 
|  |