Training in progress, epoch 0
Browse files- adapter_config.json +4 -4
- adapter_model.safetensors +1 -1
- added_tokens.json +0 -1
- chat_template.json +1 -1
- runs/Apr12_00-35-33_atl1-1-01-006-24-0.pace.gatech.edu/events.out.tfevents.1744432537.atl1-1-01-006-24-0.pace.gatech.edu.2820555.0 +3 -0
- runs/Apr12_19-13-20_atl1-1-01-006-24-0.pace.gatech.edu/events.out.tfevents.1744499611.atl1-1-01-006-24-0.pace.gatech.edu.3499472.0 +3 -0
- special_tokens_map.json +0 -9
- tokenizer.json +2 -2
- tokenizer_config.json +1 -12
- training_args.bin +1 -1
    	
        adapter_config.json
    CHANGED
    
    | @@ -26,13 +26,13 @@ | |
| 26 | 
             
              "rank_pattern": {},
         | 
| 27 | 
             
              "revision": null,
         | 
| 28 | 
             
              "target_modules": [
         | 
| 29 | 
            -
                " | 
| 30 | 
             
                "o_proj",
         | 
|  | |
|  | |
| 31 | 
             
                "v_proj",
         | 
| 32 | 
            -
                "q_proj",
         | 
| 33 | 
             
                "gate_proj",
         | 
| 34 | 
            -
                " | 
| 35 | 
            -
                "k_proj"
         | 
| 36 | 
             
              ],
         | 
| 37 | 
             
              "task_type": "CAUSAL_LM",
         | 
| 38 | 
             
              "use_dora": false,
         | 
|  | |
| 26 | 
             
              "rank_pattern": {},
         | 
| 27 | 
             
              "revision": null,
         | 
| 28 | 
             
              "target_modules": [
         | 
| 29 | 
            +
                "k_proj",
         | 
| 30 | 
             
                "o_proj",
         | 
| 31 | 
            +
                "up_proj",
         | 
| 32 | 
            +
                "down_proj",
         | 
| 33 | 
             
                "v_proj",
         | 
|  | |
| 34 | 
             
                "gate_proj",
         | 
| 35 | 
            +
                "q_proj"
         | 
|  | |
| 36 | 
             
              ],
         | 
| 37 | 
             
              "task_type": "CAUSAL_LM",
         | 
| 38 | 
             
              "use_dora": false,
         | 
    	
        adapter_model.safetensors
    CHANGED
    
    | @@ -1,3 +1,3 @@ | |
| 1 | 
             
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            -
            oid sha256: | 
| 3 | 
             
            size 2815626616
         | 
|  | |
| 1 | 
             
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:f84a2e9a1f5d8fd54c94bb329d868cb9f1d1f598008607e33ade1c830f43cf88
         | 
| 3 | 
             
            size 2815626616
         | 
    	
        added_tokens.json
    CHANGED
    
    | @@ -1,4 +1,3 @@ | |
| 1 | 
             
            {
         | 
| 2 | 
            -
              "<image>": 262145,
         | 
| 3 | 
             
              "<image_soft_token>": 262144
         | 
| 4 | 
             
            }
         | 
|  | |
| 1 | 
             
            {
         | 
|  | |
| 2 | 
             
              "<image_soft_token>": 262144
         | 
| 3 | 
             
            }
         | 
    	
        chat_template.json
    CHANGED
    
    | @@ -1,3 +1,3 @@ | |
| 1 | 
             
            {
         | 
| 2 | 
            -
              "chat_template": "{ | 
| 3 | 
             
            }
         | 
|  | |
| 1 | 
             
            {
         | 
| 2 | 
            +
              "chat_template": "{{ bos_token }}\n{%- if messages[0]['role'] == 'system' -%}\n    {%- if messages[0]['content'] is string -%}\n        {%- set first_user_prefix = messages[0]['content'] + '\n\n' -%}\n    {%- else -%}\n        {%- set first_user_prefix = messages[0]['content'][0]['text'] + '\n\n' -%}\n    {%- endif -%}\n    {%- set loop_messages = messages[1:] -%}\n{%- else -%}\n    {%- set first_user_prefix = \"\" -%}\n    {%- set loop_messages = messages -%}\n{%- endif -%}\n{%- for message in loop_messages -%}\n    {%- if (message['role'] == 'user') != (loop.index0 % 2 == 0) -%}\n        {{ raise_exception(\"Conversation roles must alternate user/assistant/user/assistant/...\") }}\n    {%- endif -%}\n    {%- if (message['role'] == 'assistant') -%}\n        {%- set role = \"model\" -%}\n    {%- else -%}\n        {%- set role = message['role'] -%}\n    {%- endif -%}\n    {{ '<start_of_turn>' + role + '\n' + (first_user_prefix if loop.first else \"\") }}\n    {%- if message['content'] is string -%}\n        {{ message['content'] | trim }}\n    {%- elif message['content'] is iterable -%}\n        {%- for item in message['content'] -%}\n            {%- if item['type'] == 'image' -%}\n                {{ '<start_of_image>' }}\n            {%- elif item['type'] == 'text' -%}\n                {{ item['text'] | trim }}\n            {%- endif -%}\n        {%- endfor -%}\n    {%- else -%}\n        {{ raise_exception(\"Invalid content type\") }}\n    {%- endif -%}\n    {{ '<end_of_turn>\n' }}\n{%- endfor -%}\n{%- if add_generation_prompt -%}\n    {{'<start_of_turn>model\n'}}\n{%- endif -%}\n"
         | 
| 3 | 
             
            }
         | 
    	
        runs/Apr12_00-35-33_atl1-1-01-006-24-0.pace.gatech.edu/events.out.tfevents.1744432537.atl1-1-01-006-24-0.pace.gatech.edu.2820555.0
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:730b4a57ac24030e347a569c058e8cf8b04066f395bc74009cf14b4b30787c3b
         | 
| 3 | 
            +
            size 7981
         | 
    	
        runs/Apr12_19-13-20_atl1-1-01-006-24-0.pace.gatech.edu/events.out.tfevents.1744499611.atl1-1-01-006-24-0.pace.gatech.edu.3499472.0
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:acad793ff2a54d72a152378367b1cad32337bcbd8bd5bb6ee6f91ecd2af05043
         | 
| 3 | 
            +
            size 7312
         | 
    	
        special_tokens_map.json
    CHANGED
    
    | @@ -1,13 +1,4 @@ | |
| 1 | 
             
            {
         | 
| 2 | 
            -
              "additional_special_tokens": [
         | 
| 3 | 
            -
                {
         | 
| 4 | 
            -
                  "content": "<image>",
         | 
| 5 | 
            -
                  "lstrip": false,
         | 
| 6 | 
            -
                  "normalized": false,
         | 
| 7 | 
            -
                  "rstrip": false,
         | 
| 8 | 
            -
                  "single_word": false
         | 
| 9 | 
            -
                }
         | 
| 10 | 
            -
              ],
         | 
| 11 | 
             
              "boi_token": "<start_of_image>",
         | 
| 12 | 
             
              "bos_token": {
         | 
| 13 | 
             
                "content": "<bos>",
         | 
|  | |
| 1 | 
             
            {
         | 
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
| 2 | 
             
              "boi_token": "<start_of_image>",
         | 
| 3 | 
             
              "bos_token": {
         | 
| 4 | 
             
                "content": "<bos>",
         | 
    	
        tokenizer.json
    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:d786405177734910d7a3db625c2826640964a0b4e5cdbbd70620ae3313a01bef
         | 
| 3 | 
            +
            size 33384722
         | 
    	
        tokenizer_config.json
    CHANGED
    
    | @@ -51321,22 +51321,11 @@ | |
| 51321 | 
             
                  "rstrip": false,
         | 
| 51322 | 
             
                  "single_word": false,
         | 
| 51323 | 
             
                  "special": true
         | 
| 51324 | 
            -
                },
         | 
| 51325 | 
            -
                "262145": {
         | 
| 51326 | 
            -
                  "content": "<image>",
         | 
| 51327 | 
            -
                  "lstrip": false,
         | 
| 51328 | 
            -
                  "normalized": false,
         | 
| 51329 | 
            -
                  "rstrip": false,
         | 
| 51330 | 
            -
                  "single_word": false,
         | 
| 51331 | 
            -
                  "special": true
         | 
| 51332 | 
             
                }
         | 
| 51333 | 
             
              },
         | 
| 51334 | 
            -
              "additional_special_tokens": [
         | 
| 51335 | 
            -
                "<image>"
         | 
| 51336 | 
            -
              ],
         | 
| 51337 | 
             
              "boi_token": "<start_of_image>",
         | 
| 51338 | 
             
              "bos_token": "<bos>",
         | 
| 51339 | 
            -
              "chat_template": "{ | 
| 51340 | 
             
              "clean_up_tokenization_spaces": false,
         | 
| 51341 | 
             
              "eoi_token": "<end_of_image>",
         | 
| 51342 | 
             
              "eos_token": "<eos>",
         | 
|  | |
| 51321 | 
             
                  "rstrip": false,
         | 
| 51322 | 
             
                  "single_word": false,
         | 
| 51323 | 
             
                  "special": true
         | 
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
| 51324 | 
             
                }
         | 
| 51325 | 
             
              },
         | 
|  | |
|  | |
|  | |
| 51326 | 
             
              "boi_token": "<start_of_image>",
         | 
| 51327 | 
             
              "bos_token": "<bos>",
         | 
| 51328 | 
            +
              "chat_template": "{{ bos_token }}\n{%- if messages[0]['role'] == 'system' -%}\n    {%- if messages[0]['content'] is string -%}\n        {%- set first_user_prefix = messages[0]['content'] + '\n\n' -%}\n    {%- else -%}\n        {%- set first_user_prefix = messages[0]['content'][0]['text'] + '\n\n' -%}\n    {%- endif -%}\n    {%- set loop_messages = messages[1:] -%}\n{%- else -%}\n    {%- set first_user_prefix = \"\" -%}\n    {%- set loop_messages = messages -%}\n{%- endif -%}\n{%- for message in loop_messages -%}\n    {%- if (message['role'] == 'user') != (loop.index0 % 2 == 0) -%}\n        {{ raise_exception(\"Conversation roles must alternate user/assistant/user/assistant/...\") }}\n    {%- endif -%}\n    {%- if (message['role'] == 'assistant') -%}\n        {%- set role = \"model\" -%}\n    {%- else -%}\n        {%- set role = message['role'] -%}\n    {%- endif -%}\n    {{ '<start_of_turn>' + role + '\n' + (first_user_prefix if loop.first else \"\") }}\n    {%- if message['content'] is string -%}\n        {{ message['content'] | trim }}\n    {%- elif message['content'] is iterable -%}\n        {%- for item in message['content'] -%}\n            {%- if item['type'] == 'image' -%}\n                {{ '<start_of_image>' }}\n            {%- elif item['type'] == 'text' -%}\n                {{ item['text'] | trim }}\n            {%- endif -%}\n        {%- endfor -%}\n    {%- else -%}\n        {{ raise_exception(\"Invalid content type\") }}\n    {%- endif -%}\n    {{ '<end_of_turn>\n' }}\n{%- endfor -%}\n{%- if add_generation_prompt -%}\n    {{'<start_of_turn>model\n'}}\n{%- endif -%}\n",
         | 
| 51329 | 
             
              "clean_up_tokenization_spaces": false,
         | 
| 51330 | 
             
              "eoi_token": "<end_of_image>",
         | 
| 51331 | 
             
              "eos_token": "<eos>",
         | 
    	
        training_args.bin
    CHANGED
    
    | @@ -1,3 +1,3 @@ | |
| 1 | 
             
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            -
            oid sha256: | 
| 3 | 
             
            size 5688
         | 
|  | |
| 1 | 
             
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:0ad99fa227a7ab66b3723d26e73579872b0e740dde6def088c273fb51ef7b1f3
         | 
| 3 | 
             
            size 5688
         |