Upload folder using huggingface_hub
Browse files- README.md +48 -0
- adapter_config.json +37 -0
- adapter_model.safetensors +3 -0
- runs/Jan08_10-37-25_r-derek-thomas-autotrain-falcon-v03-poe-fa-swrwkao7-92b51-evuca/events.out.tfevents.1736332725.r-derek-thomas-autotrain-falcon-v03-poe-fa-swrwkao7-92b51-evuca.63.0 +2 -2
- special_tokens_map.json +41 -0
- tokenizer.json +0 -0
- tokenizer_config.json +0 -0
- training_args.bin +3 -0
- training_params.json +49 -0
    	
        README.md
    ADDED
    
    | @@ -0,0 +1,48 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            tags:
         | 
| 3 | 
            +
            - autotrain
         | 
| 4 | 
            +
            - text-generation-inference
         | 
| 5 | 
            +
            - text-generation
         | 
| 6 | 
            +
            - peft
         | 
| 7 | 
            +
            library_name: transformers
         | 
| 8 | 
            +
            base_model: tiiuae/Falcon3-7B-Instruct
         | 
| 9 | 
            +
            widget:
         | 
| 10 | 
            +
              - messages:
         | 
| 11 | 
            +
                  - role: user
         | 
| 12 | 
            +
                    content: What is your favorite condiment?
         | 
| 13 | 
            +
            license: other
         | 
| 14 | 
            +
            datasets:
         | 
| 15 | 
            +
            - derek-thomas/labeled-multiple-choice-explained-falcon-tokenized
         | 
| 16 | 
            +
            ---
         | 
| 17 | 
            +
             | 
| 18 | 
            +
            # Model Trained Using AutoTrain
         | 
| 19 | 
            +
             | 
| 20 | 
            +
            This model was trained using AutoTrain. For more information, please visit [AutoTrain](https://hf.co/docs/autotrain).
         | 
| 21 | 
            +
             | 
| 22 | 
            +
            # Usage
         | 
| 23 | 
            +
             | 
| 24 | 
            +
            ```python
         | 
| 25 | 
            +
             | 
| 26 | 
            +
            from transformers import AutoModelForCausalLM, AutoTokenizer
         | 
| 27 | 
            +
             | 
| 28 | 
            +
            model_path = "PATH_TO_THIS_REPO"
         | 
| 29 | 
            +
             | 
| 30 | 
            +
            tokenizer = AutoTokenizer.from_pretrained(model_path)
         | 
| 31 | 
            +
            model = AutoModelForCausalLM.from_pretrained(
         | 
| 32 | 
            +
                model_path,
         | 
| 33 | 
            +
                device_map="auto",
         | 
| 34 | 
            +
                torch_dtype='auto'
         | 
| 35 | 
            +
            ).eval()
         | 
| 36 | 
            +
             | 
| 37 | 
            +
            # Prompt content: "hi"
         | 
| 38 | 
            +
            messages = [
         | 
| 39 | 
            +
                {"role": "user", "content": "hi"}
         | 
| 40 | 
            +
            ]
         | 
| 41 | 
            +
             | 
| 42 | 
            +
            input_ids = tokenizer.apply_chat_template(conversation=messages, tokenize=True, add_generation_prompt=True, return_tensors='pt')
         | 
| 43 | 
            +
            output_ids = model.generate(input_ids.to('cuda'))
         | 
| 44 | 
            +
            response = tokenizer.decode(output_ids[0][input_ids.shape[1]:], skip_special_tokens=True)
         | 
| 45 | 
            +
             | 
| 46 | 
            +
            # Model response: "Hello! How can I assist you today?"
         | 
| 47 | 
            +
            print(response)
         | 
| 48 | 
            +
            ```
         | 
    	
        adapter_config.json
    ADDED
    
    | @@ -0,0 +1,37 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "alpha_pattern": {},
         | 
| 3 | 
            +
              "auto_mapping": null,
         | 
| 4 | 
            +
              "base_model_name_or_path": "tiiuae/Falcon3-7B-Instruct",
         | 
| 5 | 
            +
              "bias": "none",
         | 
| 6 | 
            +
              "eva_config": null,
         | 
| 7 | 
            +
              "exclude_modules": null,
         | 
| 8 | 
            +
              "fan_in_fan_out": false,
         | 
| 9 | 
            +
              "inference_mode": true,
         | 
| 10 | 
            +
              "init_lora_weights": true,
         | 
| 11 | 
            +
              "layer_replication": null,
         | 
| 12 | 
            +
              "layers_pattern": null,
         | 
| 13 | 
            +
              "layers_to_transform": null,
         | 
| 14 | 
            +
              "loftq_config": {},
         | 
| 15 | 
            +
              "lora_alpha": 32,
         | 
| 16 | 
            +
              "lora_bias": false,
         | 
| 17 | 
            +
              "lora_dropout": 0.05,
         | 
| 18 | 
            +
              "megatron_config": null,
         | 
| 19 | 
            +
              "megatron_core": "megatron.core",
         | 
| 20 | 
            +
              "modules_to_save": null,
         | 
| 21 | 
            +
              "peft_type": "LORA",
         | 
| 22 | 
            +
              "r": 16,
         | 
| 23 | 
            +
              "rank_pattern": {},
         | 
| 24 | 
            +
              "revision": null,
         | 
| 25 | 
            +
              "target_modules": [
         | 
| 26 | 
            +
                "up_proj",
         | 
| 27 | 
            +
                "o_proj",
         | 
| 28 | 
            +
                "down_proj",
         | 
| 29 | 
            +
                "k_proj",
         | 
| 30 | 
            +
                "q_proj",
         | 
| 31 | 
            +
                "gate_proj",
         | 
| 32 | 
            +
                "v_proj"
         | 
| 33 | 
            +
              ],
         | 
| 34 | 
            +
              "task_type": "CAUSAL_LM",
         | 
| 35 | 
            +
              "use_dora": false,
         | 
| 36 | 
            +
              "use_rslora": false
         | 
| 37 | 
            +
            }
         | 
    	
        adapter_model.safetensors
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:70d1e6fa8bc1919aa8c5cbcb6d4fcf8aef4d50bf68aa1bd4e9e17763743a69e1
         | 
| 3 | 
            +
            size 177130872
         | 
    	
        runs/Jan08_10-37-25_r-derek-thomas-autotrain-falcon-v03-poe-fa-swrwkao7-92b51-evuca/events.out.tfevents.1736332725.r-derek-thomas-autotrain-falcon-v03-poe-fa-swrwkao7-92b51-evuca.63.0
    CHANGED
    
    | @@ -1,3 +1,3 @@ | |
| 1 | 
             
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            -
            oid sha256: | 
| 3 | 
            -
            size  | 
|  | |
| 1 | 
             
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:4f5fb46bef41133fa42e14654e894d8bf65930313e3a158b60f29bbffd6acc82
         | 
| 3 | 
            +
            size 12869
         | 
    	
        special_tokens_map.json
    ADDED
    
    | @@ -0,0 +1,41 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "additional_special_tokens": [
         | 
| 3 | 
            +
                ">>TITLE<<",
         | 
| 4 | 
            +
                ">>ABSTRACT<<",
         | 
| 5 | 
            +
                ">>INTRODUCTION<<",
         | 
| 6 | 
            +
                ">>SUMMARY<<",
         | 
| 7 | 
            +
                ">>COMMENT<<",
         | 
| 8 | 
            +
                ">>ANSWER<<",
         | 
| 9 | 
            +
                ">>QUESTION<<",
         | 
| 10 | 
            +
                ">>DOMAIN<<",
         | 
| 11 | 
            +
                ">>EMAIL_ADDRESS<<",
         | 
| 12 | 
            +
                ">>IP_ADDRESS<<",
         | 
| 13 | 
            +
                "<|startoftext|>",
         | 
| 14 | 
            +
                ">>IP_ADDRESS_0<<",
         | 
| 15 | 
            +
                ">>IP_ADDRESS_1<<",
         | 
| 16 | 
            +
                ">>IP_ADDRESS_2<<",
         | 
| 17 | 
            +
                ">>IP_ADDRESS_3<<",
         | 
| 18 | 
            +
                ">>IP_ADDRESS_4<<",
         | 
| 19 | 
            +
                ">>IP_ADDRESS_5<<",
         | 
| 20 | 
            +
                ">>IP_ADDRESS_6<<",
         | 
| 21 | 
            +
                ">>IP_ADDRESS_7<<",
         | 
| 22 | 
            +
                ">>IP_ADDRESS_8<<",
         | 
| 23 | 
            +
                ">>IP_ADDRESS_9<<",
         | 
| 24 | 
            +
                ">>PASSWORD<<",
         | 
| 25 | 
            +
                ">>KEY<<"
         | 
| 26 | 
            +
              ],
         | 
| 27 | 
            +
              "eos_token": {
         | 
| 28 | 
            +
                "content": "<|endoftext|>",
         | 
| 29 | 
            +
                "lstrip": false,
         | 
| 30 | 
            +
                "normalized": false,
         | 
| 31 | 
            +
                "rstrip": false,
         | 
| 32 | 
            +
                "single_word": false
         | 
| 33 | 
            +
              },
         | 
| 34 | 
            +
              "pad_token": {
         | 
| 35 | 
            +
                "content": "<|pad|>",
         | 
| 36 | 
            +
                "lstrip": false,
         | 
| 37 | 
            +
                "normalized": false,
         | 
| 38 | 
            +
                "rstrip": false,
         | 
| 39 | 
            +
                "single_word": false
         | 
| 40 | 
            +
              }
         | 
| 41 | 
            +
            }
         | 
    	
        tokenizer.json
    ADDED
    
    | The diff for this file is too large to render. 
		See raw diff | 
|  | 
    	
        tokenizer_config.json
    ADDED
    
    | The diff for this file is too large to render. 
		See raw diff | 
|  | 
    	
        training_args.bin
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:6490a5f31a46e9f3a10d9617930269ed8f18c2c841d6bbd9fb25d6dd253d1c5c
         | 
| 3 | 
            +
            size 5688
         | 
    	
        training_params.json
    ADDED
    
    | @@ -0,0 +1,49 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
                "model": "tiiuae/Falcon3-7B-Instruct",
         | 
| 3 | 
            +
                "project_name": "falcon-v03-poe-FA",
         | 
| 4 | 
            +
                "data_path": "derek-thomas/labeled-multiple-choice-explained-falcon-tokenized",
         | 
| 5 | 
            +
                "train_split": "train",
         | 
| 6 | 
            +
                "valid_split": null,
         | 
| 7 | 
            +
                "add_eos_token": true,
         | 
| 8 | 
            +
                "block_size": 512,
         | 
| 9 | 
            +
                "model_max_length": 1500,
         | 
| 10 | 
            +
                "padding": "right",
         | 
| 11 | 
            +
                "trainer": "sft",
         | 
| 12 | 
            +
                "use_flash_attention_2": false,
         | 
| 13 | 
            +
                "log": "tensorboard",
         | 
| 14 | 
            +
                "disable_gradient_checkpointing": false,
         | 
| 15 | 
            +
                "logging_steps": -1,
         | 
| 16 | 
            +
                "eval_strategy": "epoch",
         | 
| 17 | 
            +
                "save_total_limit": 1,
         | 
| 18 | 
            +
                "auto_find_batch_size": false,
         | 
| 19 | 
            +
                "mixed_precision": "bf16",
         | 
| 20 | 
            +
                "lr": 3e-07,
         | 
| 21 | 
            +
                "epochs": 4,
         | 
| 22 | 
            +
                "batch_size": 1,
         | 
| 23 | 
            +
                "warmup_ratio": 0.1,
         | 
| 24 | 
            +
                "gradient_accumulation": 8,
         | 
| 25 | 
            +
                "optimizer": "adamw_torch",
         | 
| 26 | 
            +
                "scheduler": "linear",
         | 
| 27 | 
            +
                "weight_decay": 0.0,
         | 
| 28 | 
            +
                "max_grad_norm": 1.0,
         | 
| 29 | 
            +
                "seed": 42,
         | 
| 30 | 
            +
                "chat_template": "tokenizer",
         | 
| 31 | 
            +
                "quantization": "int4",
         | 
| 32 | 
            +
                "target_modules": "all-linear",
         | 
| 33 | 
            +
                "merge_adapter": false,
         | 
| 34 | 
            +
                "peft": true,
         | 
| 35 | 
            +
                "lora_r": 16,
         | 
| 36 | 
            +
                "lora_alpha": 32,
         | 
| 37 | 
            +
                "lora_dropout": 0.05,
         | 
| 38 | 
            +
                "model_ref": null,
         | 
| 39 | 
            +
                "dpo_beta": 0.1,
         | 
| 40 | 
            +
                "max_prompt_length": 128,
         | 
| 41 | 
            +
                "max_completion_length": null,
         | 
| 42 | 
            +
                "prompt_text_column": null,
         | 
| 43 | 
            +
                "text_column": "conversation_FA",
         | 
| 44 | 
            +
                "rejected_text_column": null,
         | 
| 45 | 
            +
                "push_to_hub": true,
         | 
| 46 | 
            +
                "username": "derek-thomas",
         | 
| 47 | 
            +
                "unsloth": false,
         | 
| 48 | 
            +
                "distributed_backend": null
         | 
| 49 | 
            +
            }
         | 
