VERSIL91 commited on
Commit
2a83b24
·
verified ·
1 Parent(s): 7ba3bfe

End of training

Browse files
.gitattributes CHANGED
@@ -25,6 +25,7 @@
25
  *.safetensors filter=lfs diff=lfs merge=lfs -text
26
  saved_model/**/* filter=lfs diff=lfs merge=lfs -text
27
  *.tar.* filter=lfs diff=lfs merge=lfs -text
 
28
  *.tflite filter=lfs diff=lfs merge=lfs -text
29
  *.tgz filter=lfs diff=lfs merge=lfs -text
30
  *.wasm filter=lfs diff=lfs merge=lfs -text
 
25
  *.safetensors filter=lfs diff=lfs merge=lfs -text
26
  saved_model/**/* filter=lfs diff=lfs merge=lfs -text
27
  *.tar.* filter=lfs diff=lfs merge=lfs -text
28
+ *.tar filter=lfs diff=lfs merge=lfs -text
29
  *.tflite filter=lfs diff=lfs merge=lfs -text
30
  *.tgz filter=lfs diff=lfs merge=lfs -text
31
  *.wasm filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -1,152 +1,154 @@
1
  ---
2
- pipeline_tag: image-to-text
 
 
3
  tags:
4
- - image-captioning
5
- languages:
6
- - en
7
- license: bsd-3-clause
 
8
  ---
9
 
10
- # BLIP: Bootstrapping Language-Image Pre-training for Unified Vision-Language Understanding and Generation
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
 
12
- Model card for image captioning pretrained on COCO dataset - base architecture (with ViT base backbone).
13
-
14
- | ![BLIP.gif](https://cdn-uploads.huggingface.co/production/uploads/1670928184033-62441d1d9fdefb55a0b7d12c.gif) |
15
- |:--:|
16
- | <b> Pull figure from BLIP official repo | Image source: https://github.com/salesforce/BLIP </b>|
17
-
18
- ## TL;DR
19
-
20
- Authors from the [paper](https://arxiv.org/abs/2201.12086) write in the abstract:
21
-
22
- *Vision-Language Pre-training (VLP) has advanced the performance for many vision-language tasks. However, most existing pre-trained models only excel in either understanding-based tasks or generation-based tasks. Furthermore, performance improvement has been largely achieved by scaling up the dataset with noisy image-text pairs collected from the web, which is a suboptimal source of supervision. In this paper, we propose BLIP, a new VLP framework which transfers flexibly to both vision-language understanding and generation tasks. BLIP effectively utilizes the noisy web data by bootstrapping the captions, where a captioner generates synthetic captions and a filter removes the noisy ones. We achieve state-of-the-art results on a wide range of vision-language tasks, such as image-text retrieval (+2.7% in average recall@1), image captioning (+2.8% in CIDEr), and VQA (+1.6% in VQA score). BLIP also demonstrates strong generalization ability when directly transferred to videolanguage tasks in a zero-shot manner. Code, models, and datasets are released.*
23
-
24
- ## Usage
25
-
26
- You can use this model for conditional and un-conditional image captioning
27
-
28
- ### Using the Pytorch model
29
-
30
- #### Running the model on CPU
31
-
32
- <details>
33
- <summary> Click to expand </summary>
34
-
35
- ```python
36
- import requests
37
- from PIL import Image
38
- from transformers import BlipProcessor, BlipForConditionalGeneration
39
-
40
- processor = BlipProcessor.from_pretrained("Salesforce/blip-image-captioning-base")
41
- model = BlipForConditionalGeneration.from_pretrained("Salesforce/blip-image-captioning-base")
42
-
43
- img_url = 'https://storage.googleapis.com/sfr-vision-language-research/BLIP/demo.jpg'
44
- raw_image = Image.open(requests.get(img_url, stream=True).raw).convert('RGB')
45
-
46
- # conditional image captioning
47
- text = "a photography of"
48
- inputs = processor(raw_image, text, return_tensors="pt")
49
-
50
- out = model.generate(**inputs)
51
- print(processor.decode(out[0], skip_special_tokens=True))
52
- # >>> a photography of a woman and her dog
53
-
54
- # unconditional image captioning
55
- inputs = processor(raw_image, return_tensors="pt")
56
-
57
- out = model.generate(**inputs)
58
- print(processor.decode(out[0], skip_special_tokens=True))
59
- >>> a woman sitting on the beach with her dog
60
  ```
61
- </details>
62
-
63
- #### Running the model on GPU
64
-
65
- ##### In full precision
66
 
67
- <details>
68
- <summary> Click to expand </summary>
69
 
70
- ```python
71
- import requests
72
- from PIL import Image
73
- from transformers import BlipProcessor, BlipForConditionalGeneration
74
 
75
- processor = BlipProcessor.from_pretrained("Salesforce/blip-image-captioning-base")
76
- model = BlipForConditionalGeneration.from_pretrained("Salesforce/blip-image-captioning-base").to("cuda")
 
77
 
78
- img_url = 'https://storage.googleapis.com/sfr-vision-language-research/BLIP/demo.jpg'
79
- raw_image = Image.open(requests.get(img_url, stream=True).raw).convert('RGB')
80
 
81
- # conditional image captioning
82
- text = "a photography of"
83
- inputs = processor(raw_image, text, return_tensors="pt").to("cuda")
84
 
85
- out = model.generate(**inputs)
86
- print(processor.decode(out[0], skip_special_tokens=True))
87
- # >>> a photography of a woman and her dog
88
 
89
- # unconditional image captioning
90
- inputs = processor(raw_image, return_tensors="pt").to("cuda")
91
 
92
- out = model.generate(**inputs)
93
- print(processor.decode(out[0], skip_special_tokens=True))
94
- >>> a woman sitting on the beach with her dog
95
- ```
96
- </details>
97
-
98
- ##### In half precision (`float16`)
99
-
100
- <details>
101
- <summary> Click to expand </summary>
102
 
103
- ```python
104
- import torch
105
- import requests
106
- from PIL import Image
107
- from transformers import BlipProcessor, BlipForConditionalGeneration
108
 
109
- processor = BlipProcessor.from_pretrained("Salesforce/blip-image-captioning-base")
110
- model = BlipForConditionalGeneration.from_pretrained("Salesforce/blip-image-captioning-base", torch_dtype=torch.float16).to("cuda")
111
 
112
- img_url = 'https://storage.googleapis.com/sfr-vision-language-research/BLIP/demo.jpg'
113
- raw_image = Image.open(requests.get(img_url, stream=True).raw).convert('RGB')
114
 
115
- # conditional image captioning
116
- text = "a photography of"
117
- inputs = processor(raw_image, text, return_tensors="pt").to("cuda", torch.float16)
 
 
 
 
 
 
 
 
118
 
119
- out = model.generate(**inputs)
120
- print(processor.decode(out[0], skip_special_tokens=True))
121
- # >>> a photography of a woman and her dog
122
 
123
- # unconditional image captioning
124
- inputs = processor(raw_image, return_tensors="pt").to("cuda", torch.float16)
 
 
 
 
 
 
125
 
126
- out = model.generate(**inputs)
127
- print(processor.decode(out[0], skip_special_tokens=True))
128
- >>> a woman sitting on the beach with her dog
129
- ```
130
- </details>
131
 
132
- ## BibTex and citation info
133
 
134
- ```
135
- @misc{https://doi.org/10.48550/arxiv.2201.12086,
136
- doi = {10.48550/ARXIV.2201.12086},
137
-
138
- url = {https://arxiv.org/abs/2201.12086},
139
-
140
- author = {Li, Junnan and Li, Dongxu and Xiong, Caiming and Hoi, Steven},
141
-
142
- keywords = {Computer Vision and Pattern Recognition (cs.CV), FOS: Computer and information sciences, FOS: Computer and information sciences},
143
-
144
- title = {BLIP: Bootstrapping Language-Image Pre-training for Unified Vision-Language Understanding and Generation},
145
-
146
- publisher = {arXiv},
147
-
148
- year = {2022},
149
-
150
- copyright = {Creative Commons Attribution 4.0 International}
151
- }
152
- ```
 
1
  ---
2
+ library_name: peft
3
+ license: apache-2.0
4
+ base_model: unsloth/mistral-7b-instruct-v0.2
5
  tags:
6
+ - axolotl
7
+ - generated_from_trainer
8
+ model-index:
9
+ - name: bbdecd00-d8b9-464e-9454-e600bc6d1772
10
+ results: []
11
  ---
12
 
13
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
14
+ should probably proofread and complete it, then remove this comment. -->
15
+
16
+ [<img src="https://raw.githubusercontent.com/axolotl-ai-cloud/axolotl/main/image/axolotl-badge-web.png" alt="Built with Axolotl" width="200" height="32"/>](https://github.com/axolotl-ai-cloud/axolotl)
17
+ <details><summary>See axolotl config</summary>
18
+
19
+ axolotl version: `0.4.1`
20
+ ```yaml
21
+ adapter: lora
22
+ base_model: unsloth/mistral-7b-instruct-v0.2
23
+ bf16: auto
24
+ chat_template: llama3
25
+ dataset_prepared_path: null
26
+ datasets:
27
+ - data_files:
28
+ - 424a669f72441b3b_train_data.json
29
+ ds_type: json
30
+ format: custom
31
+ path: /workspace/input_data/424a669f72441b3b_train_data.json
32
+ type:
33
+ field_input: intent
34
+ field_instruction: instruction
35
+ field_output: response
36
+ format: '{instruction} {input}'
37
+ no_input_format: '{instruction}'
38
+ system_format: '{system}'
39
+ system_prompt: ''
40
+ debug: null
41
+ deepspeed: null
42
+ early_stopping_patience: null
43
+ eval_max_new_tokens: 128
44
+ eval_table_size: null
45
+ evals_per_epoch: 5
46
+ flash_attention: true
47
+ fp16: null
48
+ fsdp: null
49
+ fsdp_config: null
50
+ gradient_accumulation_steps: 4
51
+ gradient_checkpointing: false
52
+ group_by_length: false
53
+ hub_model_id: duyphu/bbdecd00-d8b9-464e-9454-e600bc6d1772
54
+ hub_repo: null
55
+ hub_strategy: checkpoint
56
+ hub_token: null
57
+ learning_rate: 0.0001
58
+ load_in_4bit: false
59
+ load_in_8bit: false
60
+ local_rank: null
61
+ logging_steps: 5
62
+ lora_alpha: 16
63
+ lora_dropout: 0.05
64
+ lora_fan_in_fan_out: null
65
+ lora_model_dir: null
66
+ lora_r: 8
67
+ lora_target_linear: true
68
+ lr_scheduler: cosine
69
+ max_steps: 50
70
+ micro_batch_size: 2
71
+ mlflow_experiment_name: /tmp/424a669f72441b3b_train_data.json
72
+ model_type: AutoModelForCausalLM
73
+ num_epochs: 1
74
+ optimizer: adamw_bnb_8bit
75
+ output_dir: miner_id_24
76
+ pad_to_sequence_len: true
77
+ resume_from_checkpoint: null
78
+ s2_attention: null
79
+ sample_packing: false
80
+ saves_per_epoch: 4
81
+ sequence_len: 512
82
+ strict: false
83
+ tf32: false
84
+ tokenizer_type: AutoTokenizer
85
+ train_on_inputs: false
86
+ trust_remote_code: true
87
+ val_set_size: 0.05
88
+ wandb_entity: null
89
+ wandb_mode: online
90
+ wandb_name: bbdecd00-d8b9-464e-9454-e600bc6d1772
91
+ wandb_project: Gradients-On-Demand
92
+ wandb_run: your_name
93
+ wandb_runid: bbdecd00-d8b9-464e-9454-e600bc6d1772
94
+ warmup_steps: 10
95
+ weight_decay: 0.0
96
+ xformers_attention: null
97
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  ```
 
 
 
 
 
99
 
100
+ </details><br>
 
101
 
102
+ # bbdecd00-d8b9-464e-9454-e600bc6d1772
 
 
 
103
 
104
+ This model is a fine-tuned version of [unsloth/mistral-7b-instruct-v0.2](https://huggingface.co/unsloth/mistral-7b-instruct-v0.2) on the None dataset.
105
+ It achieves the following results on the evaluation set:
106
+ - Loss: 0.5076
107
 
108
+ ## Model description
 
109
 
110
+ More information needed
 
 
111
 
112
+ ## Intended uses & limitations
 
 
113
 
114
+ More information needed
 
115
 
116
+ ## Training and evaluation data
 
 
 
 
 
 
 
 
 
117
 
118
+ More information needed
 
 
 
 
119
 
120
+ ## Training procedure
 
121
 
122
+ ### Training hyperparameters
 
123
 
124
+ The following hyperparameters were used during training:
125
+ - learning_rate: 0.0001
126
+ - train_batch_size: 2
127
+ - eval_batch_size: 2
128
+ - seed: 42
129
+ - gradient_accumulation_steps: 4
130
+ - total_train_batch_size: 8
131
+ - optimizer: Use OptimizerNames.ADAMW_BNB with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
132
+ - lr_scheduler_type: cosine
133
+ - lr_scheduler_warmup_steps: 10
134
+ - training_steps: 50
135
 
136
+ ### Training results
 
 
137
 
138
+ | Training Loss | Epoch | Step | Validation Loss |
139
+ |:-------------:|:------:|:----:|:---------------:|
140
+ | No log | 0.0000 | 1 | 0.6332 |
141
+ | 2.2524 | 0.0004 | 10 | 0.5776 |
142
+ | 2.1579 | 0.0008 | 20 | 0.5359 |
143
+ | 2.0424 | 0.0013 | 30 | 0.5147 |
144
+ | 1.8087 | 0.0017 | 40 | 0.5086 |
145
+ | 1.9481 | 0.0021 | 50 | 0.5076 |
146
 
 
 
 
 
 
147
 
148
+ ### Framework versions
149
 
150
+ - PEFT 0.13.2
151
+ - Transformers 4.46.0
152
+ - Pytorch 2.5.0+cu124
153
+ - Datasets 3.0.1
154
+ - Tokenizers 0.20.1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adapter_config.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "unsloth/mistral-7b-instruct-v0.2",
5
+ "bias": "none",
6
+ "fan_in_fan_out": null,
7
+ "inference_mode": true,
8
+ "init_lora_weights": true,
9
+ "layer_replication": null,
10
+ "layers_pattern": null,
11
+ "layers_to_transform": null,
12
+ "loftq_config": {},
13
+ "lora_alpha": 16,
14
+ "lora_dropout": 0.05,
15
+ "megatron_config": null,
16
+ "megatron_core": "megatron.core",
17
+ "modules_to_save": null,
18
+ "peft_type": "LORA",
19
+ "r": 8,
20
+ "rank_pattern": {},
21
+ "revision": null,
22
+ "target_modules": [
23
+ "up_proj",
24
+ "v_proj",
25
+ "q_proj",
26
+ "k_proj",
27
+ "down_proj",
28
+ "o_proj",
29
+ "gate_proj"
30
+ ],
31
+ "task_type": "CAUSAL_LM",
32
+ "use_dora": false,
33
+ "use_rslora": false
34
+ }
adapter_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b10395c2efc64d435af4f240a6c350d8f177e7189c5d3266f1e702c2e2034e8b
3
+ size 84047370
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f24c3cfbb258d2bc717c08ad327df0af70fcc1a91839f617d146fde5842385d
3
+ size 83945296
config.json CHANGED
@@ -1,169 +1,30 @@
1
  {
2
- "_commit_hash": null,
 
3
  "architectures": [
4
- "BlipForConditionalGeneration"
5
  ],
6
- "image_text_hidden_size": 256,
7
- "initializer_factor": 1.0,
8
- "logit_scale_init_value": 2.6592,
9
- "model_type": "blip",
10
- "projection_dim": 512,
11
- "text_config": {
12
- "_name_or_path": "",
13
- "add_cross_attention": false,
14
- "architectures": null,
15
- "attention_probs_dropout_prob": 0.0,
16
- "bad_words_ids": null,
17
- "begin_suppress_tokens": null,
18
- "bos_token_id": 30522,
19
- "chunk_size_feed_forward": 0,
20
- "cross_attention_hidden_size": null,
21
- "decoder_start_token_id": null,
22
- "diversity_penalty": 0.0,
23
- "do_sample": false,
24
- "early_stopping": false,
25
- "encoder_no_repeat_ngram_size": 0,
26
- "eos_token_id": 2,
27
- "exponential_decay_length_penalty": null,
28
- "finetuning_task": null,
29
- "forced_bos_token_id": null,
30
- "forced_eos_token_id": null,
31
- "hidden_act": "gelu",
32
- "hidden_dropout_prob": 0.0,
33
- "hidden_size": 768,
34
- "id2label": {
35
- "0": "LABEL_0",
36
- "1": "LABEL_1"
37
- },
38
- "initializer_factor": 1.0,
39
- "initializer_range": 0.02,
40
- "intermediate_size": 3072,
41
- "is_decoder": true,
42
- "is_encoder_decoder": false,
43
- "label2id": {
44
- "LABEL_0": 0,
45
- "LABEL_1": 1
46
- },
47
- "layer_norm_eps": 1e-12,
48
- "length_penalty": 1.0,
49
- "max_length": 20,
50
- "max_position_embeddings": 512,
51
- "min_length": 0,
52
- "model_type": "blip_text_model",
53
- "no_repeat_ngram_size": 0,
54
- "num_attention_heads": 12,
55
- "num_beam_groups": 1,
56
- "num_beams": 1,
57
- "num_hidden_layers": 12,
58
- "num_return_sequences": 1,
59
- "output_attentions": false,
60
- "output_hidden_states": false,
61
- "output_scores": false,
62
- "pad_token_id": 0,
63
- "prefix": null,
64
- "problem_type": null,
65
- "projection_dim": 768,
66
- "pruned_heads": {},
67
- "remove_invalid_values": false,
68
- "repetition_penalty": 1.0,
69
- "return_dict": true,
70
- "return_dict_in_generate": false,
71
- "sep_token_id": 102,
72
- "suppress_tokens": null,
73
- "task_specific_params": null,
74
- "temperature": 1.0,
75
- "tf_legacy_loss": false,
76
- "tie_encoder_decoder": false,
77
- "tie_word_embeddings": true,
78
- "tokenizer_class": null,
79
- "top_k": 50,
80
- "top_p": 1.0,
81
- "torch_dtype": null,
82
- "torchscript": false,
83
- "transformers_version": "4.26.0.dev0",
84
- "typical_p": 1.0,
85
- "use_bfloat16": false,
86
- "use_cache": true,
87
- "vocab_size": 30524
88
- },
89
- "torch_dtype": "float32",
90
- "transformers_version": null,
91
- "vision_config": {
92
- "_name_or_path": "",
93
- "add_cross_attention": false,
94
- "architectures": null,
95
- "attention_dropout": 0.0,
96
- "bad_words_ids": null,
97
- "begin_suppress_tokens": null,
98
- "bos_token_id": null,
99
- "chunk_size_feed_forward": 0,
100
- "cross_attention_hidden_size": null,
101
- "decoder_start_token_id": null,
102
- "diversity_penalty": 0.0,
103
- "do_sample": false,
104
- "dropout": 0.0,
105
- "early_stopping": false,
106
- "encoder_no_repeat_ngram_size": 0,
107
- "eos_token_id": null,
108
- "exponential_decay_length_penalty": null,
109
- "finetuning_task": null,
110
- "forced_bos_token_id": null,
111
- "forced_eos_token_id": null,
112
- "hidden_act": "gelu",
113
- "hidden_size": 768,
114
- "id2label": {
115
- "0": "LABEL_0",
116
- "1": "LABEL_1"
117
- },
118
- "image_size": 384,
119
- "initializer_factor": 1.0,
120
- "initializer_range": 0.02,
121
- "intermediate_size": 3072,
122
- "is_decoder": false,
123
- "is_encoder_decoder": false,
124
- "label2id": {
125
- "LABEL_0": 0,
126
- "LABEL_1": 1
127
- },
128
- "layer_norm_eps": 1e-05,
129
- "length_penalty": 1.0,
130
- "max_length": 20,
131
- "min_length": 0,
132
- "model_type": "blip_vision_model",
133
- "no_repeat_ngram_size": 0,
134
- "num_attention_heads": 12,
135
- "num_beam_groups": 1,
136
- "num_beams": 1,
137
- "num_channels": 3,
138
- "num_hidden_layers": 12,
139
- "num_return_sequences": 1,
140
- "output_attentions": false,
141
- "output_hidden_states": false,
142
- "output_scores": false,
143
- "pad_token_id": null,
144
- "patch_size": 16,
145
- "prefix": null,
146
- "problem_type": null,
147
- "projection_dim": 512,
148
- "pruned_heads": {},
149
- "remove_invalid_values": false,
150
- "repetition_penalty": 1.0,
151
- "return_dict": true,
152
- "return_dict_in_generate": false,
153
- "sep_token_id": null,
154
- "suppress_tokens": null,
155
- "task_specific_params": null,
156
- "temperature": 1.0,
157
- "tf_legacy_loss": false,
158
- "tie_encoder_decoder": false,
159
- "tie_word_embeddings": true,
160
- "tokenizer_class": null,
161
- "top_k": 50,
162
- "top_p": 1.0,
163
- "torch_dtype": null,
164
- "torchscript": false,
165
- "transformers_version": "4.26.0.dev0",
166
- "typical_p": 1.0,
167
- "use_bfloat16": false
168
- }
169
  }
 
1
  {
2
+ "_attn_implementation_autoset": true,
3
+ "_name_or_path": "unsloth/mistral-7b-instruct-v0.2",
4
  "architectures": [
5
+ "MistralForCausalLM"
6
  ],
7
+ "attention_dropout": 0.0,
8
+ "bos_token_id": 1,
9
+ "eos_token_id": 2,
10
+ "head_dim": 128,
11
+ "hidden_act": "silu",
12
+ "hidden_size": 4096,
13
+ "initializer_range": 0.02,
14
+ "intermediate_size": 14336,
15
+ "max_position_embeddings": 32768,
16
+ "model_type": "mistral",
17
+ "num_attention_heads": 32,
18
+ "num_hidden_layers": 32,
19
+ "num_key_value_heads": 8,
20
+ "pad_token_id": 0,
21
+ "rms_norm_eps": 1e-05,
22
+ "rope_theta": 1000000.0,
23
+ "sliding_window": null,
24
+ "tie_word_embeddings": false,
25
+ "torch_dtype": "bfloat16",
26
+ "transformers_version": "4.46.0",
27
+ "unsloth_version": "2024.9",
28
+ "use_cache": false,
29
+ "vocab_size": 32000
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  }
last-checkpoint/README.md ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: unsloth/mistral-7b-instruct-v0.2
3
+ library_name: peft
4
+ ---
5
+
6
+ # Model Card for Model ID
7
+
8
+ <!-- Provide a quick summary of what the model is/does. -->
9
+
10
+
11
+
12
+ ## Model Details
13
+
14
+ ### Model Description
15
+
16
+ <!-- Provide a longer summary of what this model is. -->
17
+
18
+
19
+
20
+ - **Developed by:** [More Information Needed]
21
+ - **Funded by [optional]:** [More Information Needed]
22
+ - **Shared by [optional]:** [More Information Needed]
23
+ - **Model type:** [More Information Needed]
24
+ - **Language(s) (NLP):** [More Information Needed]
25
+ - **License:** [More Information Needed]
26
+ - **Finetuned from model [optional]:** [More Information Needed]
27
+
28
+ ### Model Sources [optional]
29
+
30
+ <!-- Provide the basic links for the model. -->
31
+
32
+ - **Repository:** [More Information Needed]
33
+ - **Paper [optional]:** [More Information Needed]
34
+ - **Demo [optional]:** [More Information Needed]
35
+
36
+ ## Uses
37
+
38
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
39
+
40
+ ### Direct Use
41
+
42
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
43
+
44
+ [More Information Needed]
45
+
46
+ ### Downstream Use [optional]
47
+
48
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
49
+
50
+ [More Information Needed]
51
+
52
+ ### Out-of-Scope Use
53
+
54
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
55
+
56
+ [More Information Needed]
57
+
58
+ ## Bias, Risks, and Limitations
59
+
60
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
61
+
62
+ [More Information Needed]
63
+
64
+ ### Recommendations
65
+
66
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
67
+
68
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
69
+
70
+ ## How to Get Started with the Model
71
+
72
+ Use the code below to get started with the model.
73
+
74
+ [More Information Needed]
75
+
76
+ ## Training Details
77
+
78
+ ### Training Data
79
+
80
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
81
+
82
+ [More Information Needed]
83
+
84
+ ### Training Procedure
85
+
86
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
87
+
88
+ #### Preprocessing [optional]
89
+
90
+ [More Information Needed]
91
+
92
+
93
+ #### Training Hyperparameters
94
+
95
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
96
+
97
+ #### Speeds, Sizes, Times [optional]
98
+
99
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
100
+
101
+ [More Information Needed]
102
+
103
+ ## Evaluation
104
+
105
+ <!-- This section describes the evaluation protocols and provides the results. -->
106
+
107
+ ### Testing Data, Factors & Metrics
108
+
109
+ #### Testing Data
110
+
111
+ <!-- This should link to a Dataset Card if possible. -->
112
+
113
+ [More Information Needed]
114
+
115
+ #### Factors
116
+
117
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
118
+
119
+ [More Information Needed]
120
+
121
+ #### Metrics
122
+
123
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
124
+
125
+ [More Information Needed]
126
+
127
+ ### Results
128
+
129
+ [More Information Needed]
130
+
131
+ #### Summary
132
+
133
+
134
+
135
+ ## Model Examination [optional]
136
+
137
+ <!-- Relevant interpretability work for the model goes here -->
138
+
139
+ [More Information Needed]
140
+
141
+ ## Environmental Impact
142
+
143
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
144
+
145
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
146
+
147
+ - **Hardware Type:** [More Information Needed]
148
+ - **Hours used:** [More Information Needed]
149
+ - **Cloud Provider:** [More Information Needed]
150
+ - **Compute Region:** [More Information Needed]
151
+ - **Carbon Emitted:** [More Information Needed]
152
+
153
+ ## Technical Specifications [optional]
154
+
155
+ ### Model Architecture and Objective
156
+
157
+ [More Information Needed]
158
+
159
+ ### Compute Infrastructure
160
+
161
+ [More Information Needed]
162
+
163
+ #### Hardware
164
+
165
+ [More Information Needed]
166
+
167
+ #### Software
168
+
169
+ [More Information Needed]
170
+
171
+ ## Citation [optional]
172
+
173
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
174
+
175
+ **BibTeX:**
176
+
177
+ [More Information Needed]
178
+
179
+ **APA:**
180
+
181
+ [More Information Needed]
182
+
183
+ ## Glossary [optional]
184
+
185
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
186
+
187
+ [More Information Needed]
188
+
189
+ ## More Information [optional]
190
+
191
+ [More Information Needed]
192
+
193
+ ## Model Card Authors [optional]
194
+
195
+ [More Information Needed]
196
+
197
+ ## Model Card Contact
198
+
199
+ [More Information Needed]
200
+ ### Framework versions
201
+
202
+ - PEFT 0.13.2
last-checkpoint/adapter_config.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "unsloth/mistral-7b-instruct-v0.2",
5
+ "bias": "none",
6
+ "fan_in_fan_out": null,
7
+ "inference_mode": true,
8
+ "init_lora_weights": true,
9
+ "layer_replication": null,
10
+ "layers_pattern": null,
11
+ "layers_to_transform": null,
12
+ "loftq_config": {},
13
+ "lora_alpha": 16,
14
+ "lora_dropout": 0.05,
15
+ "megatron_config": null,
16
+ "megatron_core": "megatron.core",
17
+ "modules_to_save": null,
18
+ "peft_type": "LORA",
19
+ "r": 8,
20
+ "rank_pattern": {},
21
+ "revision": null,
22
+ "target_modules": [
23
+ "up_proj",
24
+ "v_proj",
25
+ "q_proj",
26
+ "k_proj",
27
+ "down_proj",
28
+ "o_proj",
29
+ "gate_proj"
30
+ ],
31
+ "task_type": "CAUSAL_LM",
32
+ "use_dora": false,
33
+ "use_rslora": false
34
+ }
last-checkpoint/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f24c3cfbb258d2bc717c08ad327df0af70fcc1a91839f617d146fde5842385d
3
+ size 83945296
last-checkpoint/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:057b5f2a11de48a8e21286097ed5865bed1e9be2cce0353edae1f05693c00c95
3
+ size 43122580
last-checkpoint/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f16b181bbe413099cfca1ccdbe07d5a9a6db31431c5d5e02c8e1ec9e64e7035a
3
+ size 14244
last-checkpoint/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b1df0528620c07325b8faa7567e59b0c1e86a1f1ee6af1245a69c6c0463fe4e2
3
+ size 1064
last-checkpoint/special_tokens_map.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "<unk>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "unk_token": {
24
+ "content": "<unk>",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ }
30
+ }
last-checkpoint/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
last-checkpoint/tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dadfd56d766715c61d2ef780a525ab43b8e6da4de6865bda3d95fdef5e134055
3
+ size 493443
last-checkpoint/tokenizer_config.json ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "add_prefix_space": null,
5
+ "added_tokens_decoder": {
6
+ "0": {
7
+ "content": "<unk>",
8
+ "lstrip": false,
9
+ "normalized": false,
10
+ "rstrip": false,
11
+ "single_word": false,
12
+ "special": true
13
+ },
14
+ "1": {
15
+ "content": "<s>",
16
+ "lstrip": false,
17
+ "normalized": false,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": true
21
+ },
22
+ "2": {
23
+ "content": "</s>",
24
+ "lstrip": false,
25
+ "normalized": false,
26
+ "rstrip": false,
27
+ "single_word": false,
28
+ "special": true
29
+ }
30
+ },
31
+ "additional_special_tokens": [],
32
+ "bos_token": "<s>",
33
+ "chat_template": "{% if not add_generation_prompt is defined %}{% set add_generation_prompt = false %}{% endif %}{% set loop_messages = messages %}{% for message in loop_messages %}{% set content = '<|start_header_id|>' + message['role'] + '<|end_header_id|>\n\n'+ message['content'] | trim + '<|eot_id|>' %}{% if loop.index0 == 0 %}{% set content = bos_token + content %}{% endif %}{{ content }}{% endfor %}{% if add_generation_prompt %}{{ '<|start_header_id|>assistant<|end_header_id|>\n\n' }}{% endif %}",
34
+ "clean_up_tokenization_spaces": false,
35
+ "eos_token": "</s>",
36
+ "legacy": false,
37
+ "model_max_length": 1000000000000000019884624838656,
38
+ "pad_token": "<unk>",
39
+ "padding_side": "left",
40
+ "sp_model_kwargs": {},
41
+ "spaces_between_special_tokens": false,
42
+ "tokenizer_class": "LlamaTokenizer",
43
+ "unk_token": "<unk>",
44
+ "use_default_system_prompt": false
45
+ }
last-checkpoint/trainer_state.json ADDED
@@ -0,0 +1,151 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": null,
3
+ "best_model_checkpoint": null,
4
+ "epoch": 0.00210737052842316,
5
+ "eval_steps": 10,
6
+ "global_step": 50,
7
+ "is_hyper_param_search": false,
8
+ "is_local_process_zero": true,
9
+ "is_world_process_zero": true,
10
+ "log_history": [
11
+ {
12
+ "epoch": 4.21474105684632e-05,
13
+ "eval_loss": 0.6331943273544312,
14
+ "eval_runtime": 1127.3109,
15
+ "eval_samples_per_second": 8.862,
16
+ "eval_steps_per_second": 4.431,
17
+ "step": 1
18
+ },
19
+ {
20
+ "epoch": 0.000210737052842316,
21
+ "grad_norm": 4.398820400238037,
22
+ "learning_rate": 5e-05,
23
+ "loss": 2.8283,
24
+ "step": 5
25
+ },
26
+ {
27
+ "epoch": 0.000421474105684632,
28
+ "grad_norm": 3.8103866577148438,
29
+ "learning_rate": 0.0001,
30
+ "loss": 2.2524,
31
+ "step": 10
32
+ },
33
+ {
34
+ "epoch": 0.000421474105684632,
35
+ "eval_loss": 0.5776350498199463,
36
+ "eval_runtime": 1131.3004,
37
+ "eval_samples_per_second": 8.831,
38
+ "eval_steps_per_second": 4.415,
39
+ "step": 10
40
+ },
41
+ {
42
+ "epoch": 0.000632211158526948,
43
+ "grad_norm": 3.405839204788208,
44
+ "learning_rate": 9.619397662556435e-05,
45
+ "loss": 2.2289,
46
+ "step": 15
47
+ },
48
+ {
49
+ "epoch": 0.000842948211369264,
50
+ "grad_norm": 2.9374308586120605,
51
+ "learning_rate": 8.535533905932738e-05,
52
+ "loss": 2.1579,
53
+ "step": 20
54
+ },
55
+ {
56
+ "epoch": 0.000842948211369264,
57
+ "eval_loss": 0.5359046459197998,
58
+ "eval_runtime": 1133.2705,
59
+ "eval_samples_per_second": 8.815,
60
+ "eval_steps_per_second": 4.408,
61
+ "step": 20
62
+ },
63
+ {
64
+ "epoch": 0.00105368526421158,
65
+ "grad_norm": 3.117830276489258,
66
+ "learning_rate": 6.91341716182545e-05,
67
+ "loss": 1.9743,
68
+ "step": 25
69
+ },
70
+ {
71
+ "epoch": 0.001264422317053896,
72
+ "grad_norm": 3.5818986892700195,
73
+ "learning_rate": 5e-05,
74
+ "loss": 2.0424,
75
+ "step": 30
76
+ },
77
+ {
78
+ "epoch": 0.001264422317053896,
79
+ "eval_loss": 0.5147128701210022,
80
+ "eval_runtime": 1132.2037,
81
+ "eval_samples_per_second": 8.824,
82
+ "eval_steps_per_second": 4.412,
83
+ "step": 30
84
+ },
85
+ {
86
+ "epoch": 0.001475159369896212,
87
+ "grad_norm": 3.088940382003784,
88
+ "learning_rate": 3.086582838174551e-05,
89
+ "loss": 2.0867,
90
+ "step": 35
91
+ },
92
+ {
93
+ "epoch": 0.001685896422738528,
94
+ "grad_norm": 2.9631552696228027,
95
+ "learning_rate": 1.4644660940672627e-05,
96
+ "loss": 1.8087,
97
+ "step": 40
98
+ },
99
+ {
100
+ "epoch": 0.001685896422738528,
101
+ "eval_loss": 0.5086004734039307,
102
+ "eval_runtime": 1133.9336,
103
+ "eval_samples_per_second": 8.81,
104
+ "eval_steps_per_second": 4.405,
105
+ "step": 40
106
+ },
107
+ {
108
+ "epoch": 0.001896633475580844,
109
+ "grad_norm": 3.090548038482666,
110
+ "learning_rate": 3.8060233744356633e-06,
111
+ "loss": 2.2553,
112
+ "step": 45
113
+ },
114
+ {
115
+ "epoch": 0.00210737052842316,
116
+ "grad_norm": 3.1793596744537354,
117
+ "learning_rate": 0.0,
118
+ "loss": 1.9481,
119
+ "step": 50
120
+ },
121
+ {
122
+ "epoch": 0.00210737052842316,
123
+ "eval_loss": 0.5075772404670715,
124
+ "eval_runtime": 1131.3867,
125
+ "eval_samples_per_second": 8.83,
126
+ "eval_steps_per_second": 4.415,
127
+ "step": 50
128
+ }
129
+ ],
130
+ "logging_steps": 5,
131
+ "max_steps": 50,
132
+ "num_input_tokens_seen": 0,
133
+ "num_train_epochs": 1,
134
+ "save_steps": 13,
135
+ "stateful_callbacks": {
136
+ "TrainerControl": {
137
+ "args": {
138
+ "should_epoch_stop": false,
139
+ "should_evaluate": false,
140
+ "should_log": false,
141
+ "should_save": true,
142
+ "should_training_stop": true
143
+ },
144
+ "attributes": {}
145
+ }
146
+ },
147
+ "total_flos": 1.708853041299456e+16,
148
+ "train_batch_size": 2,
149
+ "trial_name": null,
150
+ "trial_params": null
151
+ }
last-checkpoint/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e54d6da192478432de773967107b1ddd0b051ecbe5cb42ca145bc39daa07375a
3
+ size 6776
special_tokens_map.json CHANGED
@@ -1,7 +1,30 @@
1
  {
2
- "cls_token": "[CLS]",
3
- "mask_token": "[MASK]",
4
- "pad_token": "[PAD]",
5
- "sep_token": "[SEP]",
6
- "unk_token": "[UNK]"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  }
 
1
  {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "<unk>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "unk_token": {
24
+ "content": "<unk>",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ }
30
  }
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
 
tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dadfd56d766715c61d2ef780a525ab43b8e6da4de6865bda3d95fdef5e134055
3
+ size 493443
tokenizer_config.json CHANGED
@@ -1,21 +1,45 @@
1
  {
2
- "cls_token": "[CLS]",
3
- "do_basic_tokenize": true,
4
- "do_lower_case": true,
5
- "mask_token": "[MASK]",
6
- "model_max_length": 512,
7
- "name_or_path": "bert-base-uncased",
8
- "never_split": null,
9
- "pad_token": "[PAD]",
10
- "processor_class": "BlipProcessor",
11
- "sep_token": "[SEP]",
12
- "special_tokens_map_file": null,
13
- "strip_accents": null,
14
- "tokenize_chinese_chars": true,
15
- "tokenizer_class": "BertTokenizer",
16
- "unk_token": "[UNK]",
17
- "model_input_names": [
18
- "input_ids",
19
- "attention_mask"
20
- ]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  }
 
1
  {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "add_prefix_space": null,
5
+ "added_tokens_decoder": {
6
+ "0": {
7
+ "content": "<unk>",
8
+ "lstrip": false,
9
+ "normalized": false,
10
+ "rstrip": false,
11
+ "single_word": false,
12
+ "special": true
13
+ },
14
+ "1": {
15
+ "content": "<s>",
16
+ "lstrip": false,
17
+ "normalized": false,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": true
21
+ },
22
+ "2": {
23
+ "content": "</s>",
24
+ "lstrip": false,
25
+ "normalized": false,
26
+ "rstrip": false,
27
+ "single_word": false,
28
+ "special": true
29
+ }
30
+ },
31
+ "additional_special_tokens": [],
32
+ "bos_token": "<s>",
33
+ "chat_template": "{% if not add_generation_prompt is defined %}{% set add_generation_prompt = false %}{% endif %}{% set loop_messages = messages %}{% for message in loop_messages %}{% set content = '<|start_header_id|>' + message['role'] + '<|end_header_id|>\n\n'+ message['content'] | trim + '<|eot_id|>' %}{% if loop.index0 == 0 %}{% set content = bos_token + content %}{% endif %}{{ content }}{% endfor %}{% if add_generation_prompt %}{{ '<|start_header_id|>assistant<|end_header_id|>\n\n' }}{% endif %}",
34
+ "clean_up_tokenization_spaces": false,
35
+ "eos_token": "</s>",
36
+ "legacy": false,
37
+ "model_max_length": 1000000000000000019884624838656,
38
+ "pad_token": "<unk>",
39
+ "padding_side": "left",
40
+ "sp_model_kwargs": {},
41
+ "spaces_between_special_tokens": false,
42
+ "tokenizer_class": "LlamaTokenizer",
43
+ "unk_token": "<unk>",
44
+ "use_default_system_prompt": false
45
  }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e54d6da192478432de773967107b1ddd0b051ecbe5cb42ca145bc39daa07375a
3
+ size 6776