Initial model upload
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- .gitattributes +1 -0
- checkpoint-20-merged/added_tokens.json +16 -0
- checkpoint-20-merged/chat_template.json +3 -0
- checkpoint-20-merged/config.json +48 -0
- checkpoint-20-merged/configuration.json +5 -0
- checkpoint-20-merged/generation_config.json +11 -0
- checkpoint-20-merged/infer_result/20241209-115720.jsonl +1 -0
- checkpoint-20-merged/infer_result/20241209-122144.jsonl +3 -0
- checkpoint-20-merged/infer_result/20241209-122630.jsonl +3 -0
- checkpoint-20-merged/infer_result/20241209-122914.jsonl +2 -0
- checkpoint-20-merged/merges.txt +0 -0
- checkpoint-20-merged/model.safetensors +3 -0
- checkpoint-20-merged/preprocessor_config.json +19 -0
- checkpoint-20-merged/sft_args.json +273 -0
- checkpoint-20-merged/special_tokens_map.json +31 -0
- checkpoint-20-merged/tokenizer.json +3 -0
- checkpoint-20-merged/tokenizer_config.json +144 -0
- checkpoint-20-merged/vocab.json +0 -0
- checkpoint-20/README.md +202 -0
- checkpoint-20/adapter_config.json +26 -0
- checkpoint-20/adapter_model.safetensors +3 -0
- checkpoint-20/additional_config.json +1 -0
- checkpoint-20/configuration.json +14 -0
- checkpoint-20/generation_config.json +11 -0
- checkpoint-20/optimizer.pt +3 -0
- checkpoint-20/rng_state.pth +3 -0
- checkpoint-20/scheduler.pt +3 -0
- checkpoint-20/sft_args.json +273 -0
- checkpoint-20/trainer_state.json +140 -0
- checkpoint-20/training_args.bin +3 -0
- images/eval_logits_chosen.png +0 -0
- images/eval_logits_rejected.png +0 -0
- images/eval_logps_chosen.png +0 -0
- images/eval_logps_rejected.png +0 -0
- images/eval_loss.png +0 -0
- images/eval_nll_loss.png +0 -0
- images/eval_rewards_accuracies.png +0 -0
- images/eval_rewards_chosen.png +0 -0
- images/eval_rewards_margins.png +0 -0
- images/eval_rewards_rejected.png +0 -0
- images/eval_runtime.png +0 -0
- images/eval_samples_per_second.png +0 -0
- images/eval_steps_per_second.png +0 -0
- images/train_epoch.png +0 -0
- images/train_grad_norm.png +0 -0
- images/train_learning_rate.png +0 -0
- images/train_logits_chosen.png +0 -0
- images/train_logits_rejected.png +0 -0
- images/train_logps_chosen.png +0 -0
- images/train_logps_rejected.png +0 -0
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
checkpoint-20-merged/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
checkpoint-20-merged/added_tokens.json
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"<|box_end|>": 151649,
|
3 |
+
"<|box_start|>": 151648,
|
4 |
+
"<|endoftext|>": 151643,
|
5 |
+
"<|im_end|>": 151645,
|
6 |
+
"<|im_start|>": 151644,
|
7 |
+
"<|image_pad|>": 151655,
|
8 |
+
"<|object_ref_end|>": 151647,
|
9 |
+
"<|object_ref_start|>": 151646,
|
10 |
+
"<|quad_end|>": 151651,
|
11 |
+
"<|quad_start|>": 151650,
|
12 |
+
"<|video_pad|>": 151656,
|
13 |
+
"<|vision_end|>": 151653,
|
14 |
+
"<|vision_pad|>": 151654,
|
15 |
+
"<|vision_start|>": 151652
|
16 |
+
}
|
checkpoint-20-merged/chat_template.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"chat_template": "{% set image_count = namespace(value=0) %}{% set video_count = namespace(value=0) %}{% for message in messages %}{% if loop.first and message['role'] != 'system' %}<|im_start|>system\nYou are a helpful assistant.<|im_end|>\n{% endif %}<|im_start|>{{ message['role'] }}\n{% if message['content'] is string %}{{ message['content'] }}<|im_end|>\n{% else %}{% for content in message['content'] %}{% if content['type'] == 'image' or 'image' in content or 'image_url' in content %}{% set image_count.value = image_count.value + 1 %}{% if add_vision_id %}Picture {{ image_count.value }}: {% endif %}<|vision_start|><|image_pad|><|vision_end|>{% elif content['type'] == 'video' or 'video' in content %}{% set video_count.value = video_count.value + 1 %}{% if add_vision_id %}Video {{ video_count.value }}: {% endif %}<|vision_start|><|video_pad|><|vision_end|>{% elif 'text' in content %}{{ content['text'] }}{% endif %}{% endfor %}<|im_end|>\n{% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant\n{% endif %}"
|
3 |
+
}
|
checkpoint-20-merged/config.json
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "/home/ec2-user/.cache/modelscope/hub/qwen/Qwen2-VL-2B-Instruct",
|
3 |
+
"architectures": [
|
4 |
+
"Qwen2VLForConditionalGeneration"
|
5 |
+
],
|
6 |
+
"attention_dropout": 0.0,
|
7 |
+
"bos_token_id": 151643,
|
8 |
+
"eos_token_id": 151645,
|
9 |
+
"hidden_act": "silu",
|
10 |
+
"hidden_size": 1536,
|
11 |
+
"image_token_id": 151655,
|
12 |
+
"initializer_range": 0.02,
|
13 |
+
"intermediate_size": 8960,
|
14 |
+
"max_position_embeddings": 32768,
|
15 |
+
"max_window_layers": 28,
|
16 |
+
"model_type": "qwen2_vl",
|
17 |
+
"num_attention_heads": 12,
|
18 |
+
"num_hidden_layers": 28,
|
19 |
+
"num_key_value_heads": 2,
|
20 |
+
"rms_norm_eps": 1e-06,
|
21 |
+
"rope_scaling": {
|
22 |
+
"mrope_section": [
|
23 |
+
16,
|
24 |
+
24,
|
25 |
+
24
|
26 |
+
],
|
27 |
+
"rope_type": "default",
|
28 |
+
"type": "default"
|
29 |
+
},
|
30 |
+
"rope_theta": 1000000.0,
|
31 |
+
"sliding_window": 32768,
|
32 |
+
"tie_word_embeddings": true,
|
33 |
+
"torch_dtype": "bfloat16",
|
34 |
+
"transformers_version": "4.47.0",
|
35 |
+
"use_cache": true,
|
36 |
+
"use_sliding_window": false,
|
37 |
+
"video_token_id": 151656,
|
38 |
+
"vision_config": {
|
39 |
+
"hidden_size": 1536,
|
40 |
+
"in_chans": 3,
|
41 |
+
"model_type": "qwen2_vl",
|
42 |
+
"spatial_patch_size": 14
|
43 |
+
},
|
44 |
+
"vision_end_token_id": 151653,
|
45 |
+
"vision_start_token_id": 151652,
|
46 |
+
"vision_token_id": 151654,
|
47 |
+
"vocab_size": 151936
|
48 |
+
}
|
checkpoint-20-merged/configuration.json
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"framework": "pytorch",
|
3 |
+
"task": "image-text-to-text",
|
4 |
+
"allow_remote": true
|
5 |
+
}
|
checkpoint-20-merged/generation_config.json
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token_id": 151643,
|
3 |
+
"do_sample": true,
|
4 |
+
"eos_token_id": 151645,
|
5 |
+
"max_new_tokens": 2048,
|
6 |
+
"pad_token_id": 151643,
|
7 |
+
"temperature": 0.01,
|
8 |
+
"top_k": 1,
|
9 |
+
"top_p": 0.001,
|
10 |
+
"transformers_version": "4.47.0"
|
11 |
+
}
|
checkpoint-20-merged/infer_result/20241209-115720.jsonl
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"system": "You are a helpful assistant.", "query": "<image>### Task Extract data from medical invoice images with 100% accuracy. Do not infer, guess, or modify any values. ---### Field Extraction #### **Header Information** - **Claim No.:** Extract exact text after \"Claim No. :\". - **Invoice No.:** Extract complete string after \"Invoice No. :\". Ensure underscores are included (e.g., `NC30334314_1`). - **AK No.:** Extract exact text after \"AK No. :\". - **Invoice Date:** Extract full date after \"Invoice Dt :\". - **Organization:** Extract complete name after \"Organization :\" with original case. - **Category, Entitlement, Gender:** Extract exact text after respective labels. - **Address:** Extract all lines under \"Address :\" with line breaks. - **Policy Number, Service Date:** Extract respective values as displayed. - **Consultant:** Extract full name after \"Consultant :\". - **Auth No's:** Extract exact text after \"Auth No's :\". - **ICD Codes:** Extract code and description after \"ICD Codes :\". #### **Service Details Table** For each row, extract: - Date of Service, Procedure Code, Description, Provider, Rx No., Units, Rate, and Amount. Preserve original formats, including decimals. #### **Financial Summary** Extract numeric values with decimals: - Total Charges, Patient/Insurance Responsibilities, Adjustments, Final Claim Total. ---### Validation 1. Confirm all data matches source image exactly. 2. Verify dates, numeric values, and field calculations. 3. Maintain original text case, punctuation, and spacing. 4. Ensure numeric totals align with service amounts. **Special Cases:** - **Provider Name:** Must match exactly, 10 characters (e.g., `HASSSALI00`). Verify against source for `0`/`O`, `1`/`l` ambiguities. - **Invoice No.:** Include underscores; no truncation. ---### Output Format Return results in this JSON structure: ```json{ \"basicInfo\": { \"claimNumber\": \"\", \"invoiceNumber\": \"\", \"invoiceDate\": \"\", \"akNumber\": \"\", \"organization\": \"\", \"category\": \"\", \"entitlement\": \"\", \"gender\": \"\", \"address\": \"\", \"policyNumber\": \"\", \"admitServiceDate\": \"\", \"consultant\": \"\", \"authNumber\": \"\", \"icdCodes\": [] }, \"services\": [ { \"category\": \"\", \"dateOfService\": \"\", \"procedureCode\": \"\", \"description\": \"\", \"provider\": \"\", \"requisitionNumber\": \"\", \"units\": \"\", \"rate\": \"\", \"amount\": \"\" } ], \"financialSummary\": { \"claimTotalCharges\": \"\", \"patientResponsibilities\": \"\", \"insuranceResponsibilities\": \"\", \"adjustments\": \"\", \"claimTotal\": \"\" }}```---### Quality Checks 1. Verify required fields are present. 2. Check for text truncation or extra spaces. 3. Confirm calculations and consistent date formats. ", "response": "```json\n{\n \"basicInfo\": {\n \"claimNumber\": \"\",\n \"invoiceNumber\": \"\",\n \"invoiceDate\": \"\",\n \"akNumber\": \"\",\n \"organization\": \"\",\n \"category\": \"\",\n \"entitlement\": \"\",\n \"gender\": \"\",\n \"address\": \"\",\n \"policyNumber\": \"\",\n \"admitServiceDate\": \"\",\n \"consultant\": \"\",\n \"authNumber\": \"\",\n \"icdCodes\": []\n },\n \"services\": [\n {\n \"category\": \"\",\n \"dateOfService\": \"\",\n \"procedureCode\": \"\",\n \"description\": \"\",\n \"provider\": \"\",\n \"requisitionNumber\": \"\",\n \"units\": \"\",\n \"rate\": \"\",\n \"amount\": \"\"\n }\n ],\n \"financialSummary\": {\n \"claimTotalCharges\": \"\",\n \"patientResponsibilities\": \"\",\n \"insuranceResponsibilities\": \"\",\n \"adjustments\": \"\",\n \"claimTotal\": \"\"\n }\n}\n```", "history": [], "images": ["/home/ec2-user/testing/AGA KHAN HOSPITAL_page_43.png"]}
|
checkpoint-20-merged/infer_result/20241209-122144.jsonl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
{"system": "You are a helpful assistant.", "query": "You are a medical invoice data extraction assistant. Extract information accurately and precisely to JSON format.", "response": "Sure, I can help you with that. Please provide me with the medical invoice data that you want me to extract.", "history": []}
|
2 |
+
{"system": "You are a helpful assistant.", "query": "<image>\\n\\n### Task\\nExtract data from medical invoice images with 100% accuracy. Do not infer, guess, or modify any values.\\n\\n---\\n\\n### Field Extraction\\n**Header Information**\\n- **Claim No.:** Extract exact text after \\\"Claim No. :\\\".\\n- **Invoice No.:** Extract complete string after \\\"Invoice No. :\\\". Ensure underscores are included (e.g., `NC30334314_1`).\\n- **AK No.:** Extract exact text after \\\"AK No. :\\\".\\n- **Invoice Date:** Extract full date after \\\"Invoice Dt :\\\".\\n- **Organization:** Extract complete name after \\\"Organization :\\\" with original case.\\n- **Category, Entitlement, Gender:** Extract exact text after respective labels.\\n- **Address:** Extract all lines under \\\"Address :\\\" with line breaks.\\n- **Policy Number, Service Date:** Extract respective values as displayed.\\n- **Consultant:** Extract full name after \\\"Consultant :\\\".\\n- **Auth No's:** Extract exact text after \\\"Auth No's :\\\".\\n- **ICD Codes:** Extract code and description after \\\"ICD Codes :\\\".\\n\\n**Service Details Table**\\nFor each row, extract:\\n- Date of Service, Procedure Code, Description, Provider, Rx No., Units, Rate, and Amount. Preserve original formats, including decimals.\\n\\n**Financial Summary**\\nExtract numeric values with decimals:\\n- Total Charges, Patient/Insurance Responsibilities, Adjustments, Final Claim Total.\\n\\n---\\n\\n### Validation\\n1. Confirm all data matches source image exactly.\\n2. Verify dates, numeric values, and field calculations.\\n3. Maintain original text case, punctuation, and spacing.\\n4. Ensure numeric totals align with service amounts.\\n\\n**Special Cases:**\\n- **Provider Name:** Must match exactly, 10 characters (e.g., `HASSSALI00`). Verify against source for `0`/`O`, `1`/`l` ambiguities.\\n- **Invoice No.:** Include underscores; no truncation.\\n\\n---\\n\\n### Output Format\\nReturn results in this JSON structure:\\n```json\\n{\\n \\\"basicInfo\\\": {\\n \\\"claimNumber\\\": \\\"\\\",\\n \\\"invoiceNumber\\\": \\\"\\\",\\n \\\"invoiceDate\\\": \\\"\\\",\\n \\\"akNumber\\\": \\\"\\\",\\n \\\"organization\\\": \\\"\\\",\\n \\\"category\\\": \\\"\\\",\\n \\\"entitlement\\\": \\\"\\\",\\n \\\"gender\\\": \\\"\\\",\\n \\\"address\\\": \\\"\\\",\\n \\\"policyNumber\\\": \\\"\\\",\\n \\\"admitServiceDate\\\": \\\"\\\",\\n \\\"consultant\\\": \\\"\\\",\\n \\\"authNumber\\\": \\\"\\\", \\n \\\"icdCodes\\\": []\\n },\\n \\\"services\\\": [\\n {\\n \\\"category\\\": \\\"\\\",\\n \\\"dateOfService\\\": \\\"\\\",\\n \\\"procedureCode\\\": \\\"\\\",\\n \\\"description\\\": \\\"\\\",\\n \\\"provider\\\": \\\"\\\",\\n \\\"requisitionNumber\\\": \\\"\\\",\\n \\\"units\\\": \\\"\\\",\\n \\\"rate\\\": \\\"\\\",\\n \\\"amount\\\": \\\"\\\"\\n }\\n ],\\n \\\"financialSummary\\\": {\\n \\\"claimTotalCharges\\\": \\\"\\\",\\n \\\"patientResponsibilities\\\": \\\"\\\",\\n \\\"insuranceResponsibilities\\\": \\\"\\\",\\n \\\"adjustments\\\": \\\"\\\",\\n \\\"claimTotal\\\": \\\"\\\"\\n }\\n }\\n```\\n\\n---\\n\\n### Quality Checks\\n1. Verify required fields are present.\\n2. Check for text truncation or extra spaces.\\n3. Confirm calculations and consistent date formats.", "response": "```json\n{\n \"basicInfo\": {\n \"claimNumber\": \"NCE6982133\",\n \"invoiceNumber\": \"NC30334314_1\",\n \"invoiceDate\": \"12/06/24\",\n \"akNumber\": \"AK02170824\",\n \"organization\": \"BUPA INTERNATIONAL\",\n \"category\": \"AMBULATORY OFFICE VISIT\",\n \"entitlement\": \"BUPA MEMBERS DIRECT BILLING C/O BUPA\",\n \"gender\": \"M\",\n \"address\": \"00100 NBI 047 KENYA 00100\",\n \"policyNumber\": \"\",\n \"admitServiceDate\": \"12/06/24 11:48\",\n \"consultant\": \"HASSANALI, SALIM HATI\",\n \"authNumber\": \"\",\n \"icdCodes\": [\n {\n \"category\": \"J45.20\",\n \"description\": \"MILD INTERMITTENT ASTHMA, UNCO\",\n \"requisitionNumber\": \"R10.13\",\n \"units\": \"1\",\n \"rate\": \"5,250.00\",\n \"amount\": \"5,250.00\"\n }\n ]\n },\n \"services\": [\n {\n \"category\": \"\",\n \"dateOfService\": \"\",\n \"procedureCode\": \"\",\n \"description\": \"\",\n \"provider\": \"\",\n \"requisitionNumber\": \"\",\n \"units\": \"\",\n \"rate\": \"\",\n \"amount\": \"\"\n }\n ],\n \"financialSummary\": {\n \"claimTotalCharges\": \"5,250.00\",\n \"patientResponsibilities\": \"0.00\",\n \"insuranceResponsibilities\": \"0.00\",\n \"adjustments\": \"0.00\",\n \"claimTotal\": \"5,250.00\"\n }\n}\n```", "history": [["You are a medical invoice data extraction assistant. Extract information accurately and precisely to JSON format.", "Sure, I can help you with that. Please provide me with the medical invoice data that you want me to extract."]], "images": ["/home/ec2-user/training/AGA KHAN HOSPITAL_page_1.png"]}
|
3 |
+
{"system": "You are a helpful assistant.", "query": "You are a medical invoice data extraction assistant. Extract information accurately and precisely to JSON format.", "response": "Sure, I can help you with that. Please provide me with the medical invoice data that you want me to extract.", "history": [["You are a medical invoice data extraction assistant. Extract information accurately and precisely to JSON format.", "Sure, I can help you with that. Please provide me with the medical invoice data that you want me to extract."], ["<image>\\n\\n### Task\\nExtract data from medical invoice images with 100% accuracy. Do not infer, guess, or modify any values.\\n\\n---\\n\\n### Field Extraction\\n**Header Information**\\n- **Claim No.:** Extract exact text after \\\"Claim No. :\\\".\\n- **Invoice No.:** Extract complete string after \\\"Invoice No. :\\\". Ensure underscores are included (e.g., `NC30334314_1`).\\n- **AK No.:** Extract exact text after \\\"AK No. :\\\".\\n- **Invoice Date:** Extract full date after \\\"Invoice Dt :\\\".\\n- **Organization:** Extract complete name after \\\"Organization :\\\" with original case.\\n- **Category, Entitlement, Gender:** Extract exact text after respective labels.\\n- **Address:** Extract all lines under \\\"Address :\\\" with line breaks.\\n- **Policy Number, Service Date:** Extract respective values as displayed.\\n- **Consultant:** Extract full name after \\\"Consultant :\\\".\\n- **Auth No's:** Extract exact text after \\\"Auth No's :\\\".\\n- **ICD Codes:** Extract code and description after \\\"ICD Codes :\\\".\\n\\n**Service Details Table**\\nFor each row, extract:\\n- Date of Service, Procedure Code, Description, Provider, Rx No., Units, Rate, and Amount. Preserve original formats, including decimals.\\n\\n**Financial Summary**\\nExtract numeric values with decimals:\\n- Total Charges, Patient/Insurance Responsibilities, Adjustments, Final Claim Total.\\n\\n---\\n\\n### Validation\\n1. Confirm all data matches source image exactly.\\n2. Verify dates, numeric values, and field calculations.\\n3. Maintain original text case, punctuation, and spacing.\\n4. Ensure numeric totals align with service amounts.\\n\\n**Special Cases:**\\n- **Provider Name:** Must match exactly, 10 characters (e.g., `HASSSALI00`). Verify against source for `0`/`O`, `1`/`l` ambiguities.\\n- **Invoice No.:** Include underscores; no truncation.\\n\\n---\\n\\n### Output Format\\nReturn results in this JSON structure:\\n```json\\n{\\n \\\"basicInfo\\\": {\\n \\\"claimNumber\\\": \\\"\\\",\\n \\\"invoiceNumber\\\": \\\"\\\",\\n \\\"invoiceDate\\\": \\\"\\\",\\n \\\"akNumber\\\": \\\"\\\",\\n \\\"organization\\\": \\\"\\\",\\n \\\"category\\\": \\\"\\\",\\n \\\"entitlement\\\": \\\"\\\",\\n \\\"gender\\\": \\\"\\\",\\n \\\"address\\\": \\\"\\\",\\n \\\"policyNumber\\\": \\\"\\\",\\n \\\"admitServiceDate\\\": \\\"\\\",\\n \\\"consultant\\\": \\\"\\\",\\n \\\"authNumber\\\": \\\"\\\", \\n \\\"icdCodes\\\": []\\n },\\n \\\"services\\\": [\\n {\\n \\\"category\\\": \\\"\\\",\\n \\\"dateOfService\\\": \\\"\\\",\\n \\\"procedureCode\\\": \\\"\\\",\\n \\\"description\\\": \\\"\\\",\\n \\\"provider\\\": \\\"\\\",\\n \\\"requisitionNumber\\\": \\\"\\\",\\n \\\"units\\\": \\\"\\\",\\n \\\"rate\\\": \\\"\\\",\\n \\\"amount\\\": \\\"\\\"\\n }\\n ],\\n \\\"financialSummary\\\": {\\n \\\"claimTotalCharges\\\": \\\"\\\",\\n \\\"patientResponsibilities\\\": \\\"\\\",\\n \\\"insuranceResponsibilities\\\": \\\"\\\",\\n \\\"adjustments\\\": \\\"\\\",\\n \\\"claimTotal\\\": \\\"\\\"\\n }\\n }\\n```\\n\\n---\\n\\n### Quality Checks\\n1. Verify required fields are present.\\n2. Check for text truncation or extra spaces.\\n3. Confirm calculations and consistent date formats.", "```json\n{\n \"basicInfo\": {\n \"claimNumber\": \"NCE6982133\",\n \"invoiceNumber\": \"NC30334314_1\",\n \"invoiceDate\": \"12/06/24\",\n \"akNumber\": \"AK02170824\",\n \"organization\": \"BUPA INTERNATIONAL\",\n \"category\": \"AMBULATORY OFFICE VISIT\",\n \"entitlement\": \"BUPA MEMBERS DIRECT BILLING C/O BUPA\",\n \"gender\": \"M\",\n \"address\": \"00100 NBI 047 KENYA 00100\",\n \"policyNumber\": \"\",\n \"admitServiceDate\": \"12/06/24 11:48\",\n \"consultant\": \"HASSANALI, SALIM HATI\",\n \"authNumber\": \"\",\n \"icdCodes\": [\n {\n \"category\": \"J45.20\",\n \"description\": \"MILD INTERMITTENT ASTHMA, UNCO\",\n \"requisitionNumber\": \"R10.13\",\n \"units\": \"1\",\n \"rate\": \"5,250.00\",\n \"amount\": \"5,250.00\"\n }\n ]\n },\n \"services\": [\n {\n \"category\": \"\",\n \"dateOfService\": \"\",\n \"procedureCode\": \"\",\n \"description\": \"\",\n \"provider\": \"\",\n \"requisitionNumber\": \"\",\n \"units\": \"\",\n \"rate\": \"\",\n \"amount\": \"\"\n }\n ],\n \"financialSummary\": {\n \"claimTotalCharges\": \"5,250.00\",\n \"patientResponsibilities\": \"0.00\",\n \"insuranceResponsibilities\": \"0.00\",\n \"adjustments\": \"0.00\",\n \"claimTotal\": \"5,250.00\"\n }\n}\n```"]], "images": ["/home/ec2-user/training/AGA KHAN HOSPITAL_page_1.png"]}
|
checkpoint-20-merged/infer_result/20241209-122630.jsonl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
{"system": "You are a helpful assistant.", "query": "You are a medical invoice data extraction assistant. Extract information accurately and precisely to JSON format.", "response": "Sure, I can help you with that. Please provide me with the medical invoice data that you want me to extract.", "history": []}
|
2 |
+
{"system": "You are a helpful assistant.", "query": "<image>\\n\\n### Task\\nExtract data from medical invoice images with 100% accuracy. Do not infer, guess, or modify any values.\\n\\n---\\n\\n### Field Extraction\\n**Header Information**\\n- **Claim No.:** Extract exact text after \\\"Claim No. :\\\".\\n- **Invoice No.:** Extract complete string after \\\"Invoice No. :\\\". Ensure underscores are included (e.g., `NC30334314_1`).\\n- **AK No.:** Extract exact text after \\\"AK No. :\\\".\\n- **Invoice Date:** Extract full date after \\\"Invoice Dt :\\\".\\n- **Organization:** Extract complete name after \\\"Organization :\\\" with original case.\\n- **Category, Entitlement, Gender:** Extract exact text after respective labels.\\n- **Address:** Extract all lines under \\\"Address :\\\" with line breaks.\\n- **Policy Number, Service Date:** Extract respective values as displayed.\\n- **Consultant:** Extract full name after \\\"Consultant :\\\".\\n- **Auth No's:** Extract exact text after \\\"Auth No's :\\\".\\n- **ICD Codes:** Extract code and description after \\\"ICD Codes :\\\".\\n\\n**Service Details Table**\\nFor each row, extract:\\n- Date of Service, Procedure Code, Description, Provider, Rx No., Units, Rate, and Amount. Preserve original formats, including decimals.\\n\\n**Financial Summary**\\nExtract numeric values with decimals:\\n- Total Charges, Patient/Insurance Responsibilities, Adjustments, Final Claim Total.\\n\\n---\\n\\n### Validation\\n1. Confirm all data matches source image exactly.\\n2. Verify dates, numeric values, and field calculations.\\n3. Maintain original text case, punctuation, and spacing.\\n4. Ensure numeric totals align with service amounts.\\n\\n**Special Cases:**\\n- **Provider Name:** Must match exactly, 10 characters (e.g., `HASSSALI00`). Verify against source for `0`/`O`, `1`/`l` ambiguities.\\n- **Invoice No.:** Include underscores; no truncation.\\n\\n---\\n\\n### Output Format\\nReturn results in this JSON structure:\\n```json\\n{\\n \\\"basicInfo\\\": {\\n \\\"claimNumber\\\": \\\"\\\",\\n \\\"invoiceNumber\\\": \\\"\\\",\\n \\\"invoiceDate\\\": \\\"\\\",\\n \\\"akNumber\\\": \\\"\\\",\\n \\\"organization\\\": \\\"\\\",\\n \\\"category\\\": \\\"\\\",\\n \\\"entitlement\\\": \\\"\\\",\\n \\\"gender\\\": \\\"\\\",\\n \\\"address\\\": \\\"\\\",\\n \\\"policyNumber\\\": \\\"\\\",\\n \\\"admitServiceDate\\\": \\\"\\\",\\n \\\"consultant\\\": \\\"\\\",\\n \\\"authNumber\\\": \\\"\\\", \\n \\\"icdCodes\\\": []\\n },\\n \\\"services\\\": [\\n {\\n \\\"category\\\": \\\"\\\",\\n \\\"dateOfService\\\": \\\"\\\",\\n \\\"procedureCode\\\": \\\"\\\",\\n \\\"description\\\": \\\"\\\",\\n \\\"provider\\\": \\\"\\\",\\n \\\"requisitionNumber\\\": \\\"\\\",\\n \\\"units\\\": \\\"\\\",\\n \\\"rate\\\": \\\"\\\",\\n \\\"amount\\\": \\\"\\\"\\n }\\n ],\\n \\\"financialSummary\\\": {\\n \\\"claimTotalCharges\\\": \\\"\\\",\\n \\\"patientResponsibilities\\\": \\\"\\\",\\n \\\"insuranceResponsibilities\\\": \\\"\\\",\\n \\\"adjustments\\\": \\\"\\\",\\n \\\"claimTotal\\\": \\\"\\\"\\n }\\n }\\n```\\n\\n---\\n\\n### Quality Checks\\n1. Verify required fields are present.\\n2. Check for text truncation or extra spaces.\\n3. Confirm calculations and consistent date formats.", "response": "```json\n{\n \"basicInfo\": {\n \"claimNumber\": \"UHE6970794\",\n \"invoiceNumber\": \"UH283634582_2\",\n \"invoiceDate\": \"12/06/24\",\n \"akNumber\": \"AK01951093\",\n \"organization\": \"BUPA INTERNATIONAL\",\n \"category\": \"EMERGENCY\",\n \"entitlement\": \"BUPA MEMBERS DIRECT BILLING C/O BUPA\",\n \"gender\": \"M\",\n \"address\": \"00100 NRB 047 KENYA 00100\",\n \"policyNumber\": \"\",\n \"admitServiceDate\": \"12/06/24 10:20\",\n \"consultant\": \"\",\n \"authNumber\": \"\",\n \"icdCodes\": []\n },\n \"services\": [\n {\n \"category\": \"\",\n \"dateOfService\": \"\",\n \"procedureCode\": \"\",\n \"description\": \"\",\n \"provider\": \"\",\n \"requisitionNumber\": \"\",\n \"units\": \"\",\n \"rate\": \"\",\n \"amount\": \"\"\n }\n ],\n \"financialSummary\": {\n \"claimTotalCharges\": \"3,470.00\",\n \"patientResponsibilities\": \"0.00\",\n \"insuranceResponsibilities\": \"0.00\",\n \"adjustments\": \"0.00\",\n \"claimTotal\": \"3,470.00\"\n }\n}\n```", "history": [["You are a medical invoice data extraction assistant. Extract information accurately and precisely to JSON format.", "Sure, I can help you with that. Please provide me with the medical invoice data that you want me to extract."]], "images": ["/home/ec2-user/testing/AGA KHAN HOSPITAL_page_47.png"]}
|
3 |
+
{"system": "You are a helpful assistant.", "query": "/home/ec2-user/testing/AGA KHAN HOSPITAL_page_53.png", "response": "I'm sorry, but as an AI language model, I don't have the capability to directly access or analyze images. However, I can help you with the extraction of information from the image you provided. Please upload the image, and I'll do my best to extract the relevant data.", "history": [["You are a medical invoice data extraction assistant. Extract information accurately and precisely to JSON format.", "Sure, I can help you with that. Please provide me with the medical invoice data that you want me to extract."], ["<image>\\n\\n### Task\\nExtract data from medical invoice images with 100% accuracy. Do not infer, guess, or modify any values.\\n\\n---\\n\\n### Field Extraction\\n**Header Information**\\n- **Claim No.:** Extract exact text after \\\"Claim No. :\\\".\\n- **Invoice No.:** Extract complete string after \\\"Invoice No. :\\\". Ensure underscores are included (e.g., `NC30334314_1`).\\n- **AK No.:** Extract exact text after \\\"AK No. :\\\".\\n- **Invoice Date:** Extract full date after \\\"Invoice Dt :\\\".\\n- **Organization:** Extract complete name after \\\"Organization :\\\" with original case.\\n- **Category, Entitlement, Gender:** Extract exact text after respective labels.\\n- **Address:** Extract all lines under \\\"Address :\\\" with line breaks.\\n- **Policy Number, Service Date:** Extract respective values as displayed.\\n- **Consultant:** Extract full name after \\\"Consultant :\\\".\\n- **Auth No's:** Extract exact text after \\\"Auth No's :\\\".\\n- **ICD Codes:** Extract code and description after \\\"ICD Codes :\\\".\\n\\n**Service Details Table**\\nFor each row, extract:\\n- Date of Service, Procedure Code, Description, Provider, Rx No., Units, Rate, and Amount. Preserve original formats, including decimals.\\n\\n**Financial Summary**\\nExtract numeric values with decimals:\\n- Total Charges, Patient/Insurance Responsibilities, Adjustments, Final Claim Total.\\n\\n---\\n\\n### Validation\\n1. Confirm all data matches source image exactly.\\n2. Verify dates, numeric values, and field calculations.\\n3. Maintain original text case, punctuation, and spacing.\\n4. Ensure numeric totals align with service amounts.\\n\\n**Special Cases:**\\n- **Provider Name:** Must match exactly, 10 characters (e.g., `HASSSALI00`). Verify against source for `0`/`O`, `1`/`l` ambiguities.\\n- **Invoice No.:** Include underscores; no truncation.\\n\\n---\\n\\n### Output Format\\nReturn results in this JSON structure:\\n```json\\n{\\n \\\"basicInfo\\\": {\\n \\\"claimNumber\\\": \\\"\\\",\\n \\\"invoiceNumber\\\": \\\"\\\",\\n \\\"invoiceDate\\\": \\\"\\\",\\n \\\"akNumber\\\": \\\"\\\",\\n \\\"organization\\\": \\\"\\\",\\n \\\"category\\\": \\\"\\\",\\n \\\"entitlement\\\": \\\"\\\",\\n \\\"gender\\\": \\\"\\\",\\n \\\"address\\\": \\\"\\\",\\n \\\"policyNumber\\\": \\\"\\\",\\n \\\"admitServiceDate\\\": \\\"\\\",\\n \\\"consultant\\\": \\\"\\\",\\n \\\"authNumber\\\": \\\"\\\", \\n \\\"icdCodes\\\": []\\n },\\n \\\"services\\\": [\\n {\\n \\\"category\\\": \\\"\\\",\\n \\\"dateOfService\\\": \\\"\\\",\\n \\\"procedureCode\\\": \\\"\\\",\\n \\\"description\\\": \\\"\\\",\\n \\\"provider\\\": \\\"\\\",\\n \\\"requisitionNumber\\\": \\\"\\\",\\n \\\"units\\\": \\\"\\\",\\n \\\"rate\\\": \\\"\\\",\\n \\\"amount\\\": \\\"\\\"\\n }\\n ],\\n \\\"financialSummary\\\": {\\n \\\"claimTotalCharges\\\": \\\"\\\",\\n \\\"patientResponsibilities\\\": \\\"\\\",\\n \\\"insuranceResponsibilities\\\": \\\"\\\",\\n \\\"adjustments\\\": \\\"\\\",\\n \\\"claimTotal\\\": \\\"\\\"\\n }\\n }\\n```\\n\\n---\\n\\n### Quality Checks\\n1. Verify required fields are present.\\n2. Check for text truncation or extra spaces.\\n3. Confirm calculations and consistent date formats.", "```json\n{\n \"basicInfo\": {\n \"claimNumber\": \"UHE6970794\",\n \"invoiceNumber\": \"UH283634582_2\",\n \"invoiceDate\": \"12/06/24\",\n \"akNumber\": \"AK01951093\",\n \"organization\": \"BUPA INTERNATIONAL\",\n \"category\": \"EMERGENCY\",\n \"entitlement\": \"BUPA MEMBERS DIRECT BILLING C/O BUPA\",\n \"gender\": \"M\",\n \"address\": \"00100 NRB 047 KENYA 00100\",\n \"policyNumber\": \"\",\n \"admitServiceDate\": \"12/06/24 10:20\",\n \"consultant\": \"\",\n \"authNumber\": \"\",\n \"icdCodes\": []\n },\n \"services\": [\n {\n \"category\": \"\",\n \"dateOfService\": \"\",\n \"procedureCode\": \"\",\n \"description\": \"\",\n \"provider\": \"\",\n \"requisitionNumber\": \"\",\n \"units\": \"\",\n \"rate\": \"\",\n \"amount\": \"\"\n }\n ],\n \"financialSummary\": {\n \"claimTotalCharges\": \"3,470.00\",\n \"patientResponsibilities\": \"0.00\",\n \"insuranceResponsibilities\": \"0.00\",\n \"adjustments\": \"0.00\",\n \"claimTotal\": \"3,470.00\"\n }\n}\n```"]], "images": ["/home/ec2-user/testing/AGA KHAN HOSPITAL_page_47.png"]}
|
checkpoint-20-merged/infer_result/20241209-122914.jsonl
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
{"system": "You are a helpful assistant.", "query": "You are a medical invoice data extraction assistant. Extract information accurately and precisely to JSON format.", "response": "Sure, I can help you with that. Please provide me with the medical invoice data that you want me to extract.", "history": []}
|
2 |
+
{"system": "You are a helpful assistant.", "query": "<image>\\n\\n### Task\\nExtract data from medical invoice images with 100% accuracy. Do not infer, guess, or modify any values.\\n\\n---\\n\\n### Field Extraction\\n**Header Information**\\n- **Claim No.:** Extract exact text after \\\"Claim No. :\\\".\\n- **Invoice No.:** Extract complete string after \\\"Invoice No. :\\\". Ensure underscores are included (e.g., `NC30334314_1`).\\n- **AK No.:** Extract exact text after \\\"AK No. :\\\".\\n- **Invoice Date:** Extract full date after \\\"Invoice Dt :\\\".\\n- **Organization:** Extract complete name after \\\"Organization :\\\" with original case.\\n- **Category, Entitlement, Gender:** Extract exact text after respective labels.\\n- **Address:** Extract all lines under \\\"Address :\\\" with line breaks.\\n- **Policy Number, Service Date:** Extract respective values as displayed.\\n- **Consultant:** Extract full name after \\\"Consultant :\\\".\\n- **Auth No's:** Extract exact text after \\\"Auth No's :\\\".\\n- **ICD Codes:** Extract code and description after \\\"ICD Codes :\\\".\\n\\n**Service Details Table**\\nFor each row, extract:\\n- Date of Service, Procedure Code, Description, Provider, Rx No., Units, Rate, and Amount. Preserve original formats, including decimals.\\n\\n**Financial Summary**\\nExtract numeric values with decimals:\\n- Total Charges, Patient/Insurance Responsibilities, Adjustments, Final Claim Total.\\n\\n---\\n\\n### Validation\\n1. Confirm all data matches source image exactly.\\n2. Verify dates, numeric values, and field calculations.\\n3. Maintain original text case, punctuation, and spacing.\\n4. Ensure numeric totals align with service amounts.\\n\\n**Special Cases:**\\n- **Provider Name:** Must match exactly, 10 characters (e.g., `HASSSALI00`). Verify against source for `0`/`O`, `1`/`l` ambiguities.\\n- **Invoice No.:** Include underscores; no truncation.\\n\\n---\\n\\n### Output Format\\nReturn results in this JSON structure:\\n```json\\n{\\n \\\"basicInfo\\\": {\\n \\\"claimNumber\\\": \\\"\\\",\\n \\\"invoiceNumber\\\": \\\"\\\",\\n \\\"invoiceDate\\\": \\\"\\\",\\n \\\"akNumber\\\": \\\"\\\",\\n \\\"organization\\\": \\\"\\\",\\n \\\"category\\\": \\\"\\\",\\n \\\"entitlement\\\": \\\"\\\",\\n \\\"gender\\\": \\\"\\\",\\n \\\"address\\\": \\\"\\\",\\n \\\"policyNumber\\\": \\\"\\\",\\n \\\"admitServiceDate\\\": \\\"\\\",\\n \\\"consultant\\\": \\\"\\\",\\n \\\"authNumber\\\": \\\"\\\", \\n \\\"icdCodes\\\": []\\n },\\n \\\"services\\\": [\\n {\\n \\\"category\\\": \\\"\\\",\\n \\\"dateOfService\\\": \\\"\\\",\\n \\\"procedureCode\\\": \\\"\\\",\\n \\\"description\\\": \\\"\\\",\\n \\\"provider\\\": \\\"\\\",\\n \\\"requisitionNumber\\\": \\\"\\\",\\n \\\"units\\\": \\\"\\\",\\n \\\"rate\\\": \\\"\\\",\\n \\\"amount\\\": \\\"\\\"\\n }\\n ],\\n \\\"financialSummary\\\": {\\n \\\"claimTotalCharges\\\": \\\"\\\",\\n \\\"patientResponsibilities\\\": \\\"\\\",\\n \\\"insuranceResponsibilities\\\": \\\"\\\",\\n \\\"adjustments\\\": \\\"\\\",\\n \\\"claimTotal\\\": \\\"\\\"\\n }\\n }\\n```\\n\\n---\\n\\n### Quality Checks\\n1. Verify required fields are present.\\n2. Check for text truncation or extra spaces.\\n3. Confirm calculations and consistent date formats.", "response": "```json\n{\n \"basicInfo\": {\n \"claimNumber\": \"NCE6952481\",\n \"invoiceNumber\": \"NC30300785_1\",\n \"invoiceDate\": \"12/06/24\",\n \"akNumber\": \"AK02839815\",\n \"organization\": \"BUPA INTERNATIONAL\",\n \"category\": \"AMBULATORY OFFICE VISIT\",\n \"entitlement\": \"BUPA MEMBERS DIRECT BILLING C/O BUPA\",\n \"gender\": \"F\",\n \"address\": \"Nairobi GPO\\n047\\nKENYA\\n00100\",\n \"policyNumber\": \"\",\n \"admitServiceDate\": \"12/06/24 09:31\",\n \"consultant\": \"OTIDO,SAMUEL\",\n \"icdCodes\": [\n {\n \"code\": \"R05.3\",\n \"description\": \"CHRONIC COUGH\"\n },\n {\n \"code\": \"J45.20\",\n \"description\": \"MILD INTERMITTENT ASTHMA, UNCO\"\n },\n {\n \"code\": \"L20.9\",\n \"description\": \"ATOPIC DERMATITIS, UNSPECIFIED\"\n },\n {\n \"code\": \"J30.9\",\n \"description\": \"ALLERGIC RHINITIS, UNSPECIFIED\"\n },\n {\n \"code\": \"H10.13\",\n \"description\": \"ACUTE ATOPIC CONJUNCTIVITIS, B\"\n }\n ]\n },\n \"services\": [\n {\n \"category\": \"\",\n \"dateOfService\": \"\",\n \"procedureCode\": \"\",\n \"description\": \"\",\n \"provider\": \"\",\n \"requisitionNumber\": \"\",\n \"units\": \"\",\n \"rate\": \"\",\n \"amount\": \"\"\n }\n ],\n \"financialSummary\": {\n \"claimTotalCharges\": \"5,250.00\",\n \"patientResponsibilities\": \"0.00\",\n \"insuranceResponsibilities\": \"0.00\",\n \"adjustments\": \"0.00\",\n \"claimTotal\": \"5,250.00\"\n }\n}\n```", "history": [["You are a medical invoice data extraction assistant. Extract information accurately and precisely to JSON format.", "Sure, I can help you with that. Please provide me with the medical invoice data that you want me to extract."]], "images": ["/home/ec2-user/testing/AGA KHAN HOSPITAL_page_53.png"]}
|
checkpoint-20-merged/merges.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
checkpoint-20-merged/model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7f74c2b149fb96ea22a774754ce1459494f8a4d43227681a2d41068c437990fe
|
3 |
+
size 4418050848
|
checkpoint-20-merged/preprocessor_config.json
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"min_pixels": 3136,
|
3 |
+
"max_pixels": 12845056,
|
4 |
+
"patch_size": 14,
|
5 |
+
"temporal_patch_size": 2,
|
6 |
+
"merge_size": 2,
|
7 |
+
"image_mean": [
|
8 |
+
0.48145466,
|
9 |
+
0.4578275,
|
10 |
+
0.40821073
|
11 |
+
],
|
12 |
+
"image_std": [
|
13 |
+
0.26862954,
|
14 |
+
0.26130258,
|
15 |
+
0.27577711
|
16 |
+
],
|
17 |
+
"image_processor_type": "Qwen2VLImageProcessor",
|
18 |
+
"processor_class": "Qwen2VLProcessor"
|
19 |
+
}
|
checkpoint-20-merged/sft_args.json
ADDED
@@ -0,0 +1,273 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"model_type": "qwen2-vl-2b-instruct",
|
3 |
+
"model_id_or_path": "qwen/Qwen2-VL-2B-Instruct",
|
4 |
+
"model_revision": "master",
|
5 |
+
"full_determinism": false,
|
6 |
+
"sft_type": "full",
|
7 |
+
"freeze_parameters": [],
|
8 |
+
"freeze_vit": false,
|
9 |
+
"freeze_parameters_ratio": 0.0,
|
10 |
+
"additional_trainable_parameters": [],
|
11 |
+
"tuner_backend": "peft",
|
12 |
+
"template_type": "qwen2-vl",
|
13 |
+
"output_dir": "/home/ec2-user/output/qwen2-vl-2b-instruct/v0-20241209-111947",
|
14 |
+
"add_output_dir_suffix": true,
|
15 |
+
"ddp_backend": null,
|
16 |
+
"ddp_find_unused_parameters": null,
|
17 |
+
"ddp_broadcast_buffers": null,
|
18 |
+
"ddp_timeout": 1800,
|
19 |
+
"seed": 42,
|
20 |
+
"resume_from_checkpoint": null,
|
21 |
+
"resume_only_model": false,
|
22 |
+
"ignore_data_skip": false,
|
23 |
+
"dtype": "bf16",
|
24 |
+
"packing": false,
|
25 |
+
"train_backend": "transformers",
|
26 |
+
"tp": 1,
|
27 |
+
"pp": 1,
|
28 |
+
"min_lr": null,
|
29 |
+
"sequence_parallel": false,
|
30 |
+
"model_kwargs": {},
|
31 |
+
"loss_name": null,
|
32 |
+
"dataset": [
|
33 |
+
"/home/ec2-user/train.jsonl"
|
34 |
+
],
|
35 |
+
"val_dataset": [
|
36 |
+
"/home/ec2-user/val.jsonl"
|
37 |
+
],
|
38 |
+
"dataset_seed": 42,
|
39 |
+
"dataset_test_ratio": 0.0,
|
40 |
+
"use_loss_scale": false,
|
41 |
+
"loss_scale_config_path": "/opt/conda/envs/old/lib/python3.10/site-packages/swift/llm/agent/default_loss_scale_config.json",
|
42 |
+
"system": null,
|
43 |
+
"tools_prompt": "react_en",
|
44 |
+
"max_length": 2048,
|
45 |
+
"truncation_strategy": "delete",
|
46 |
+
"check_dataset_strategy": "none",
|
47 |
+
"streaming": false,
|
48 |
+
"streaming_val_size": 0,
|
49 |
+
"streaming_buffer_size": 16384,
|
50 |
+
"model_name": [
|
51 |
+
null,
|
52 |
+
null
|
53 |
+
],
|
54 |
+
"model_author": [
|
55 |
+
null,
|
56 |
+
null
|
57 |
+
],
|
58 |
+
"quant_method": null,
|
59 |
+
"quantization_bit": 0,
|
60 |
+
"hqq_axis": 0,
|
61 |
+
"hqq_dynamic_config_path": null,
|
62 |
+
"bnb_4bit_comp_dtype": "bf16",
|
63 |
+
"bnb_4bit_quant_type": "nf4",
|
64 |
+
"bnb_4bit_use_double_quant": true,
|
65 |
+
"bnb_4bit_quant_storage": null,
|
66 |
+
"rescale_image": -1,
|
67 |
+
"target_modules": "^(model)(?!.*(lm_head|output|emb|wte|shared)).*",
|
68 |
+
"target_regex": null,
|
69 |
+
"modules_to_save": [],
|
70 |
+
"lora_rank": 8,
|
71 |
+
"lora_alpha": 32,
|
72 |
+
"lora_dropout": 0.05,
|
73 |
+
"lora_bias_trainable": "none",
|
74 |
+
"lora_dtype": null,
|
75 |
+
"lora_lr_ratio": null,
|
76 |
+
"use_rslora": false,
|
77 |
+
"use_dora": false,
|
78 |
+
"init_lora_weights": true,
|
79 |
+
"fourier_n_frequency": 2000,
|
80 |
+
"fourier_scaling": 300.0,
|
81 |
+
"rope_scaling": null,
|
82 |
+
"boft_block_size": 4,
|
83 |
+
"boft_block_num": 0,
|
84 |
+
"boft_n_butterfly_factor": 1,
|
85 |
+
"boft_dropout": 0.0,
|
86 |
+
"vera_rank": 256,
|
87 |
+
"vera_projection_prng_key": 0,
|
88 |
+
"vera_dropout": 0.0,
|
89 |
+
"vera_d_initial": 0.1,
|
90 |
+
"adapter_act": "gelu",
|
91 |
+
"adapter_length": 128,
|
92 |
+
"use_galore": false,
|
93 |
+
"galore_target_modules": null,
|
94 |
+
"galore_rank": 128,
|
95 |
+
"galore_update_proj_gap": 50,
|
96 |
+
"galore_scale": 1.0,
|
97 |
+
"galore_proj_type": "std",
|
98 |
+
"galore_optim_per_parameter": false,
|
99 |
+
"galore_with_embedding": false,
|
100 |
+
"galore_quantization": false,
|
101 |
+
"galore_proj_quant": false,
|
102 |
+
"galore_proj_bits": 4,
|
103 |
+
"galore_proj_group_size": 256,
|
104 |
+
"galore_cos_threshold": 0.4,
|
105 |
+
"galore_gamma_proj": 2,
|
106 |
+
"galore_queue_size": 5,
|
107 |
+
"adalora_target_r": 8,
|
108 |
+
"adalora_init_r": 12,
|
109 |
+
"adalora_tinit": 0,
|
110 |
+
"adalora_tfinal": 0,
|
111 |
+
"adalora_deltaT": 1,
|
112 |
+
"adalora_beta1": 0.85,
|
113 |
+
"adalora_beta2": 0.85,
|
114 |
+
"adalora_orth_reg_weight": 0.5,
|
115 |
+
"ia3_feedforward_modules": [],
|
116 |
+
"llamapro_num_new_blocks": 4,
|
117 |
+
"llamapro_num_groups": null,
|
118 |
+
"neftune_noise_alpha": null,
|
119 |
+
"neftune_backend": "transformers",
|
120 |
+
"lisa_activated_layers": 0,
|
121 |
+
"lisa_step_interval": 20,
|
122 |
+
"reft_layer_key": null,
|
123 |
+
"reft_layers": null,
|
124 |
+
"reft_rank": 4,
|
125 |
+
"reft_intervention_type": "LoreftIntervention",
|
126 |
+
"reft_args": null,
|
127 |
+
"use_liger": false,
|
128 |
+
"gradient_checkpointing": true,
|
129 |
+
"vit_use_gc": true,
|
130 |
+
"deepspeed": null,
|
131 |
+
"batch_size": 1,
|
132 |
+
"eval_batch_size": 1,
|
133 |
+
"auto_find_batch_size": false,
|
134 |
+
"num_train_epochs": 5,
|
135 |
+
"max_steps": -1,
|
136 |
+
"optim": "adamw_torch",
|
137 |
+
"adam_beta1": 0.9,
|
138 |
+
"adam_beta2": 0.95,
|
139 |
+
"adam_epsilon": 1e-08,
|
140 |
+
"learning_rate": 5e-05,
|
141 |
+
"weight_decay": 0.1,
|
142 |
+
"gradient_accumulation_steps": 8,
|
143 |
+
"max_grad_norm": 1,
|
144 |
+
"predict_with_generate": false,
|
145 |
+
"lr_scheduler_type": "cosine",
|
146 |
+
"lr_scheduler_kwargs": {},
|
147 |
+
"warmup_ratio": 0.03,
|
148 |
+
"warmup_steps": 0,
|
149 |
+
"eval_steps": 50,
|
150 |
+
"save_steps": 50,
|
151 |
+
"save_only_model": false,
|
152 |
+
"save_total_limit": 2,
|
153 |
+
"logging_steps": 5,
|
154 |
+
"acc_steps": 1,
|
155 |
+
"dataloader_num_workers": 1,
|
156 |
+
"dataloader_pin_memory": true,
|
157 |
+
"dataloader_drop_last": false,
|
158 |
+
"push_to_hub": false,
|
159 |
+
"hub_model_id": null,
|
160 |
+
"hub_token": null,
|
161 |
+
"hub_private_repo": false,
|
162 |
+
"hub_strategy": "every_save",
|
163 |
+
"test_oom_error": false,
|
164 |
+
"disable_tqdm": false,
|
165 |
+
"lazy_tokenize": true,
|
166 |
+
"preprocess_num_proc": 1,
|
167 |
+
"use_flash_attn": null,
|
168 |
+
"ignore_args_error": false,
|
169 |
+
"check_model_is_latest": true,
|
170 |
+
"logging_dir": "/home/ec2-user/output/qwen2-vl-2b-instruct/v0-20241209-111947/runs",
|
171 |
+
"report_to": [
|
172 |
+
"tensorboard"
|
173 |
+
],
|
174 |
+
"acc_strategy": "token",
|
175 |
+
"save_on_each_node": false,
|
176 |
+
"evaluation_strategy": "steps",
|
177 |
+
"save_strategy": "steps",
|
178 |
+
"save_safetensors": true,
|
179 |
+
"gpu_memory_fraction": null,
|
180 |
+
"include_num_input_tokens_seen": false,
|
181 |
+
"local_repo_path": null,
|
182 |
+
"custom_register_path": null,
|
183 |
+
"custom_dataset_info": null,
|
184 |
+
"device_map_config": null,
|
185 |
+
"device_max_memory": [],
|
186 |
+
"max_new_tokens": 2048,
|
187 |
+
"do_sample": null,
|
188 |
+
"temperature": null,
|
189 |
+
"top_k": null,
|
190 |
+
"top_p": null,
|
191 |
+
"repetition_penalty": null,
|
192 |
+
"num_beams": 1,
|
193 |
+
"fsdp": "",
|
194 |
+
"fsdp_config": null,
|
195 |
+
"sequence_parallel_size": 1,
|
196 |
+
"model_layer_cls_name": null,
|
197 |
+
"metric_warmup_step": 0,
|
198 |
+
"fsdp_num": 1,
|
199 |
+
"per_device_train_batch_size": null,
|
200 |
+
"per_device_eval_batch_size": null,
|
201 |
+
"eval_strategy": null,
|
202 |
+
"self_cognition_sample": 0,
|
203 |
+
"train_dataset_mix_ratio": 0.0,
|
204 |
+
"train_dataset_mix_ds": [
|
205 |
+
"ms-bench"
|
206 |
+
],
|
207 |
+
"train_dataset_sample": -1,
|
208 |
+
"val_dataset_sample": null,
|
209 |
+
"safe_serialization": null,
|
210 |
+
"only_save_model": null,
|
211 |
+
"neftune_alpha": null,
|
212 |
+
"deepspeed_config_path": null,
|
213 |
+
"model_cache_dir": null,
|
214 |
+
"lora_dropout_p": null,
|
215 |
+
"lora_target_modules": [],
|
216 |
+
"lora_target_regex": null,
|
217 |
+
"lora_modules_to_save": [],
|
218 |
+
"boft_target_modules": [],
|
219 |
+
"boft_modules_to_save": [],
|
220 |
+
"vera_target_modules": [],
|
221 |
+
"vera_modules_to_save": [],
|
222 |
+
"ia3_target_modules": [],
|
223 |
+
"ia3_modules_to_save": [],
|
224 |
+
"custom_train_dataset_path": [],
|
225 |
+
"custom_val_dataset_path": [],
|
226 |
+
"device_map_config_path": null,
|
227 |
+
"push_hub_strategy": null,
|
228 |
+
"rlhf_type": "dpo",
|
229 |
+
"ref_model_type": null,
|
230 |
+
"ref_model_id_or_path": null,
|
231 |
+
"ref_model_revision": null,
|
232 |
+
"beta": 0.1,
|
233 |
+
"label_smoothing": 0.0,
|
234 |
+
"loss_type": "sigmoid",
|
235 |
+
"rpo_alpha": 0.1,
|
236 |
+
"cpo_alpha": 1.0,
|
237 |
+
"simpo_gamma": 1,
|
238 |
+
"desirable_weight": 1.0,
|
239 |
+
"undesirable_weight": 1.0,
|
240 |
+
"reward_model_id_or_path": null,
|
241 |
+
"reward_model_type": null,
|
242 |
+
"reward_model_revision": null,
|
243 |
+
"local_rollout_forward_batch_size": 64,
|
244 |
+
"whiten_rewards": false,
|
245 |
+
"kl_coef": 0.05,
|
246 |
+
"cliprange": 0.2,
|
247 |
+
"vf_coef": 0.1,
|
248 |
+
"cliprange_value": 0.2,
|
249 |
+
"gamma": 1.0,
|
250 |
+
"lam": 0.95,
|
251 |
+
"num_sample_generations": 10,
|
252 |
+
"ref_model_free": false,
|
253 |
+
"use_self_cognition": false,
|
254 |
+
"is_multimodal": true,
|
255 |
+
"is_vision": true,
|
256 |
+
"lora_use_embedding": false,
|
257 |
+
"lora_use_all": false,
|
258 |
+
"lora_m2s_use_embedding": false,
|
259 |
+
"lora_m2s_use_ln": false,
|
260 |
+
"torch_dtype": "torch.bfloat16",
|
261 |
+
"fp16": false,
|
262 |
+
"bf16": true,
|
263 |
+
"rank": -1,
|
264 |
+
"local_rank": -1,
|
265 |
+
"world_size": 1,
|
266 |
+
"local_world_size": 1,
|
267 |
+
"bnb_4bit_compute_dtype": "torch.bfloat16",
|
268 |
+
"load_in_4bit": false,
|
269 |
+
"load_in_8bit": false,
|
270 |
+
"train_sampler_random": true,
|
271 |
+
"train_type": "dpo",
|
272 |
+
"training_args": "DPOConfig(output_dir='/home/ec2-user/output/qwen2-vl-2b-instruct/v0-20241209-111947', overwrite_output_dir=False, do_train=False, do_eval=True, do_predict=False, eval_strategy=<IntervalStrategy.STEPS: 'steps'>, prediction_loss_only=False, per_device_train_batch_size=1, per_device_eval_batch_size=1, per_gpu_train_batch_size=None, per_gpu_eval_batch_size=None, gradient_accumulation_steps=8, eval_accumulation_steps=None, eval_delay=0, torch_empty_cache_steps=None, learning_rate=5e-05, weight_decay=0.1, adam_beta1=0.9, adam_beta2=0.95, adam_epsilon=1e-08, max_grad_norm=1, num_train_epochs=5, max_steps=-1, lr_scheduler_type=<SchedulerType.COSINE: 'cosine'>, lr_scheduler_kwargs={}, warmup_ratio=0.03, warmup_steps=0, log_level='passive', log_level_replica='warning', log_on_each_node=True, logging_dir='/home/ec2-user/output/qwen2-vl-2b-instruct/v0-20241209-111947/runs', logging_strategy=<IntervalStrategy.STEPS: 'steps'>, logging_first_step=True, logging_steps=5, logging_nan_inf_filter=True, save_strategy=<SaveStrategy.STEPS: 'steps'>, save_steps=50, save_total_limit=2, save_safetensors=True, save_on_each_node=False, save_only_model=False, restore_callback_states_from_checkpoint=False, no_cuda=False, use_cpu=False, use_mps_device=False, seed=42, data_seed=42, jit_mode_eval=False, use_ipex=False, bf16=True, fp16=False, fp16_opt_level='O1', half_precision_backend='auto', bf16_full_eval=False, fp16_full_eval=False, tf32=None, local_rank=0, ddp_backend=None, tpu_num_cores=None, tpu_metrics_debug=False, debug=[], dataloader_drop_last=False, eval_steps=50, dataloader_num_workers=1, dataloader_prefetch_factor=None, past_index=-1, run_name='/home/ec2-user/output/qwen2-vl-2b-instruct/v0-20241209-111947', disable_tqdm=False, remove_unused_columns=False, label_names=None, load_best_model_at_end=False, metric_for_best_model='loss', greater_is_better=False, ignore_data_skip=False, fsdp=[], fsdp_min_num_params=0, fsdp_config={'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False}, fsdp_transformer_layer_cls_to_wrap=None, accelerator_config=AcceleratorConfig(split_batches=False, dispatch_batches=False, even_batches=True, use_seedable_sampler=True, non_blocking=False, gradient_accumulation_kwargs=None, use_configured_state=False), deepspeed=None, label_smoothing_factor=0.0, optim=<OptimizerNames.ADAMW_TORCH: 'adamw_torch'>, optim_args=None, adafactor=False, group_by_length=False, length_column_name='length', report_to=['tensorboard'], ddp_find_unused_parameters=None, ddp_bucket_cap_mb=None, ddp_broadcast_buffers=None, dataloader_pin_memory=True, dataloader_persistent_workers=False, skip_memory_metrics=True, use_legacy_prediction_loop=False, push_to_hub=False, resume_from_checkpoint=None, hub_model_id=None, hub_strategy=<HubStrategy.EVERY_SAVE: 'every_save'>, hub_token=None, hub_private_repo=False, hub_always_push=False, gradient_checkpointing=True, gradient_checkpointing_kwargs=None, include_inputs_for_metrics=False, include_for_metrics=[], eval_do_concat_batches=True, fp16_backend='auto', evaluation_strategy=None, push_to_hub_model_id=None, push_to_hub_organization=None, push_to_hub_token=None, mp_parameters='', auto_find_batch_size=False, full_determinism=False, torchdynamo=None, ray_scope='last', ddp_timeout=1800, torch_compile=False, torch_compile_backend=None, torch_compile_mode=None, dispatch_batches=None, split_batches=None, include_tokens_per_second=False, include_num_input_tokens_seen=False, neftune_noise_alpha=None, optim_target_modules=None, batch_eval_metrics=False, eval_on_start=False, use_liger_kernel=False, eval_use_gather_object=False, average_tokens_across_devices=False, beta=0.1, label_smoothing=0.0, loss_type='sigmoid', label_pad_token_id=-100, padding_value=None, truncation_mode='keep_end', max_length=None, max_prompt_length=None, max_target_length=None, max_completion_length=None, is_encoder_decoder=None, disable_dropout=True, generate_during_eval=False, precompute_ref_log_probs=False, dataset_num_proc=None, model_init_kwargs=None, ref_model_init_kwargs=None, model_adapter_name=None, ref_adapter_name=None, reference_free=False, force_use_ref_model=False, f_divergence_type=<FDivergenceType.REVERSE_KL: 'reverse_kl'>, f_alpha_divergence_coef=1.0, sync_ref_model=False, ref_model_mixup_alpha=0.9, ref_model_sync_steps=64, rpo_alpha=0.1, acc_strategy='token', loss_name=None, additional_saved_files=[], train_sampler_random=True, metric_warmup_step=0, train_dataset_sample=-1)"
|
273 |
+
}
|
checkpoint-20-merged/special_tokens_map.json
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"additional_special_tokens": [
|
3 |
+
"<|im_start|>",
|
4 |
+
"<|im_end|>",
|
5 |
+
"<|object_ref_start|>",
|
6 |
+
"<|object_ref_end|>",
|
7 |
+
"<|box_start|>",
|
8 |
+
"<|box_end|>",
|
9 |
+
"<|quad_start|>",
|
10 |
+
"<|quad_end|>",
|
11 |
+
"<|vision_start|>",
|
12 |
+
"<|vision_end|>",
|
13 |
+
"<|vision_pad|>",
|
14 |
+
"<|image_pad|>",
|
15 |
+
"<|video_pad|>"
|
16 |
+
],
|
17 |
+
"eos_token": {
|
18 |
+
"content": "<|im_end|>",
|
19 |
+
"lstrip": false,
|
20 |
+
"normalized": false,
|
21 |
+
"rstrip": false,
|
22 |
+
"single_word": false
|
23 |
+
},
|
24 |
+
"pad_token": {
|
25 |
+
"content": "<|endoftext|>",
|
26 |
+
"lstrip": false,
|
27 |
+
"normalized": false,
|
28 |
+
"rstrip": false,
|
29 |
+
"single_word": false
|
30 |
+
}
|
31 |
+
}
|
checkpoint-20-merged/tokenizer.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:091aa7594dc2fcfbfa06b9e3c22a5f0562ac14f30375c13af7309407a0e67b8a
|
3 |
+
size 11420371
|
checkpoint-20-merged/tokenizer_config.json
ADDED
@@ -0,0 +1,144 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_prefix_space": false,
|
3 |
+
"added_tokens_decoder": {
|
4 |
+
"151643": {
|
5 |
+
"content": "<|endoftext|>",
|
6 |
+
"lstrip": false,
|
7 |
+
"normalized": false,
|
8 |
+
"rstrip": false,
|
9 |
+
"single_word": false,
|
10 |
+
"special": true
|
11 |
+
},
|
12 |
+
"151644": {
|
13 |
+
"content": "<|im_start|>",
|
14 |
+
"lstrip": false,
|
15 |
+
"normalized": false,
|
16 |
+
"rstrip": false,
|
17 |
+
"single_word": false,
|
18 |
+
"special": true
|
19 |
+
},
|
20 |
+
"151645": {
|
21 |
+
"content": "<|im_end|>",
|
22 |
+
"lstrip": false,
|
23 |
+
"normalized": false,
|
24 |
+
"rstrip": false,
|
25 |
+
"single_word": false,
|
26 |
+
"special": true
|
27 |
+
},
|
28 |
+
"151646": {
|
29 |
+
"content": "<|object_ref_start|>",
|
30 |
+
"lstrip": false,
|
31 |
+
"normalized": false,
|
32 |
+
"rstrip": false,
|
33 |
+
"single_word": false,
|
34 |
+
"special": true
|
35 |
+
},
|
36 |
+
"151647": {
|
37 |
+
"content": "<|object_ref_end|>",
|
38 |
+
"lstrip": false,
|
39 |
+
"normalized": false,
|
40 |
+
"rstrip": false,
|
41 |
+
"single_word": false,
|
42 |
+
"special": true
|
43 |
+
},
|
44 |
+
"151648": {
|
45 |
+
"content": "<|box_start|>",
|
46 |
+
"lstrip": false,
|
47 |
+
"normalized": false,
|
48 |
+
"rstrip": false,
|
49 |
+
"single_word": false,
|
50 |
+
"special": true
|
51 |
+
},
|
52 |
+
"151649": {
|
53 |
+
"content": "<|box_end|>",
|
54 |
+
"lstrip": false,
|
55 |
+
"normalized": false,
|
56 |
+
"rstrip": false,
|
57 |
+
"single_word": false,
|
58 |
+
"special": true
|
59 |
+
},
|
60 |
+
"151650": {
|
61 |
+
"content": "<|quad_start|>",
|
62 |
+
"lstrip": false,
|
63 |
+
"normalized": false,
|
64 |
+
"rstrip": false,
|
65 |
+
"single_word": false,
|
66 |
+
"special": true
|
67 |
+
},
|
68 |
+
"151651": {
|
69 |
+
"content": "<|quad_end|>",
|
70 |
+
"lstrip": false,
|
71 |
+
"normalized": false,
|
72 |
+
"rstrip": false,
|
73 |
+
"single_word": false,
|
74 |
+
"special": true
|
75 |
+
},
|
76 |
+
"151652": {
|
77 |
+
"content": "<|vision_start|>",
|
78 |
+
"lstrip": false,
|
79 |
+
"normalized": false,
|
80 |
+
"rstrip": false,
|
81 |
+
"single_word": false,
|
82 |
+
"special": true
|
83 |
+
},
|
84 |
+
"151653": {
|
85 |
+
"content": "<|vision_end|>",
|
86 |
+
"lstrip": false,
|
87 |
+
"normalized": false,
|
88 |
+
"rstrip": false,
|
89 |
+
"single_word": false,
|
90 |
+
"special": true
|
91 |
+
},
|
92 |
+
"151654": {
|
93 |
+
"content": "<|vision_pad|>",
|
94 |
+
"lstrip": false,
|
95 |
+
"normalized": false,
|
96 |
+
"rstrip": false,
|
97 |
+
"single_word": false,
|
98 |
+
"special": true
|
99 |
+
},
|
100 |
+
"151655": {
|
101 |
+
"content": "<|image_pad|>",
|
102 |
+
"lstrip": false,
|
103 |
+
"normalized": false,
|
104 |
+
"rstrip": false,
|
105 |
+
"single_word": false,
|
106 |
+
"special": true
|
107 |
+
},
|
108 |
+
"151656": {
|
109 |
+
"content": "<|video_pad|>",
|
110 |
+
"lstrip": false,
|
111 |
+
"normalized": false,
|
112 |
+
"rstrip": false,
|
113 |
+
"single_word": false,
|
114 |
+
"special": true
|
115 |
+
}
|
116 |
+
},
|
117 |
+
"additional_special_tokens": [
|
118 |
+
"<|im_start|>",
|
119 |
+
"<|im_end|>",
|
120 |
+
"<|object_ref_start|>",
|
121 |
+
"<|object_ref_end|>",
|
122 |
+
"<|box_start|>",
|
123 |
+
"<|box_end|>",
|
124 |
+
"<|quad_start|>",
|
125 |
+
"<|quad_end|>",
|
126 |
+
"<|vision_start|>",
|
127 |
+
"<|vision_end|>",
|
128 |
+
"<|vision_pad|>",
|
129 |
+
"<|image_pad|>",
|
130 |
+
"<|video_pad|>"
|
131 |
+
],
|
132 |
+
"bos_token": null,
|
133 |
+
"chat_template": "{% set image_count = namespace(value=0) %}{% set video_count = namespace(value=0) %}{% for message in messages %}{% if loop.first and message['role'] != 'system' %}<|im_start|>system\nYou are a helpful assistant.<|im_end|>\n{% endif %}<|im_start|>{{ message['role'] }}\n{% if message['content'] is string %}{{ message['content'] }}<|im_end|>\n{% else %}{% for content in message['content'] %}{% if content['type'] == 'image' or 'image' in content or 'image_url' in content %}{% set image_count.value = image_count.value + 1 %}{% if add_vision_id %}Picture {{ image_count.value }}: {% endif %}<|vision_start|><|image_pad|><|vision_end|>{% elif content['type'] == 'video' or 'video' in content %}{% set video_count.value = video_count.value + 1 %}{% if add_vision_id %}Video {{ video_count.value }}: {% endif %}<|vision_start|><|video_pad|><|vision_end|>{% elif 'text' in content %}{{ content['text'] }}{% endif %}{% endfor %}<|im_end|>\n{% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant\n{% endif %}",
|
134 |
+
"clean_up_tokenization_spaces": false,
|
135 |
+
"eos_token": "<|im_end|>",
|
136 |
+
"errors": "replace",
|
137 |
+
"extra_special_tokens": {},
|
138 |
+
"model_max_length": 32768,
|
139 |
+
"pad_token": "<|endoftext|>",
|
140 |
+
"padding_side": "left",
|
141 |
+
"split_special_tokens": false,
|
142 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
143 |
+
"unk_token": null
|
144 |
+
}
|
checkpoint-20-merged/vocab.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
checkpoint-20/README.md
ADDED
@@ -0,0 +1,202 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: /home/ec2-user/.cache/modelscope/hub/qwen/Qwen2-VL-2B-Instruct
|
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.12.0
|
checkpoint-20/adapter_config.json
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"alpha_pattern": {},
|
3 |
+
"auto_mapping": null,
|
4 |
+
"base_model_name_or_path": "/home/ec2-user/.cache/modelscope/hub/qwen/Qwen2-VL-2B-Instruct",
|
5 |
+
"bias": "none",
|
6 |
+
"fan_in_fan_out": false,
|
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": 32,
|
14 |
+
"lora_dropout": 0.05,
|
15 |
+
"megatron_config": null,
|
16 |
+
"megatron_core": "megatron.core",
|
17 |
+
"modules_to_save": [],
|
18 |
+
"peft_type": "LORA",
|
19 |
+
"r": 8,
|
20 |
+
"rank_pattern": {},
|
21 |
+
"revision": null,
|
22 |
+
"target_modules": "^(model)(?!.*(lm_head|output|emb|wte|shared)).*",
|
23 |
+
"task_type": "CAUSAL_LM",
|
24 |
+
"use_dora": false,
|
25 |
+
"use_rslora": false
|
26 |
+
}
|
checkpoint-20/adapter_model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a5b6899e250356c6632d0121dc77edb5ffb4c8127f340a2d51aba694000d7a9a
|
3 |
+
size 36981072
|
checkpoint-20/additional_config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"lora_dtype": null, "lorap_lr_ratio": null, "lorap_emb_lr": 1e-06}
|
checkpoint-20/configuration.json
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"framework": "pytorch",
|
3 |
+
"task": "image-text-to-text",
|
4 |
+
"allow_remote": true,
|
5 |
+
"adapter_cfg": {
|
6 |
+
"model_id_or_path": "qwen/Qwen2-VL-2B-Instruct",
|
7 |
+
"model_revision": "master",
|
8 |
+
"sft_type": "lora",
|
9 |
+
"tuner_backend": "peft",
|
10 |
+
"template_type": "qwen2-vl",
|
11 |
+
"dtype": "bf16",
|
12 |
+
"system": null
|
13 |
+
}
|
14 |
+
}
|
checkpoint-20/generation_config.json
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token_id": 151643,
|
3 |
+
"do_sample": true,
|
4 |
+
"eos_token_id": 151645,
|
5 |
+
"max_new_tokens": 2048,
|
6 |
+
"pad_token_id": 151643,
|
7 |
+
"temperature": 0.01,
|
8 |
+
"top_k": 1,
|
9 |
+
"top_p": 0.001,
|
10 |
+
"transformers_version": "4.47.0"
|
11 |
+
}
|
checkpoint-20/optimizer.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2e67c823ceaedec86ab62de462ac7c86959daff9cce82588067b9000a32ad209
|
3 |
+
size 74188650
|
checkpoint-20/rng_state.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6b3ee827a7a00012c0a116546df467feee35e70376d81a7a85b1a70eb90414d3
|
3 |
+
size 14244
|
checkpoint-20/scheduler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8f4b34a50c55a680830f99a77a52585bb05290e33d30ce86746475157ba56d09
|
3 |
+
size 1064
|
checkpoint-20/sft_args.json
ADDED
@@ -0,0 +1,273 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"model_type": "qwen2-vl-2b-instruct",
|
3 |
+
"model_id_or_path": "qwen/Qwen2-VL-2B-Instruct",
|
4 |
+
"model_revision": "master",
|
5 |
+
"full_determinism": false,
|
6 |
+
"sft_type": "lora",
|
7 |
+
"freeze_parameters": [],
|
8 |
+
"freeze_vit": false,
|
9 |
+
"freeze_parameters_ratio": 0.0,
|
10 |
+
"additional_trainable_parameters": [],
|
11 |
+
"tuner_backend": "peft",
|
12 |
+
"template_type": "qwen2-vl",
|
13 |
+
"output_dir": "/home/ec2-user/output/qwen2-vl-2b-instruct/v0-20241209-111947",
|
14 |
+
"add_output_dir_suffix": true,
|
15 |
+
"ddp_backend": null,
|
16 |
+
"ddp_find_unused_parameters": null,
|
17 |
+
"ddp_broadcast_buffers": null,
|
18 |
+
"ddp_timeout": 1800,
|
19 |
+
"seed": 42,
|
20 |
+
"resume_from_checkpoint": null,
|
21 |
+
"resume_only_model": false,
|
22 |
+
"ignore_data_skip": false,
|
23 |
+
"dtype": "bf16",
|
24 |
+
"packing": false,
|
25 |
+
"train_backend": "transformers",
|
26 |
+
"tp": 1,
|
27 |
+
"pp": 1,
|
28 |
+
"min_lr": null,
|
29 |
+
"sequence_parallel": false,
|
30 |
+
"model_kwargs": {},
|
31 |
+
"loss_name": null,
|
32 |
+
"dataset": [
|
33 |
+
"/home/ec2-user/train.jsonl"
|
34 |
+
],
|
35 |
+
"val_dataset": [
|
36 |
+
"/home/ec2-user/val.jsonl"
|
37 |
+
],
|
38 |
+
"dataset_seed": 42,
|
39 |
+
"dataset_test_ratio": 0.0,
|
40 |
+
"use_loss_scale": false,
|
41 |
+
"loss_scale_config_path": "/opt/conda/envs/old/lib/python3.10/site-packages/swift/llm/agent/default_loss_scale_config.json",
|
42 |
+
"system": null,
|
43 |
+
"tools_prompt": "react_en",
|
44 |
+
"max_length": 2048,
|
45 |
+
"truncation_strategy": "delete",
|
46 |
+
"check_dataset_strategy": "none",
|
47 |
+
"streaming": false,
|
48 |
+
"streaming_val_size": 0,
|
49 |
+
"streaming_buffer_size": 16384,
|
50 |
+
"model_name": [
|
51 |
+
null,
|
52 |
+
null
|
53 |
+
],
|
54 |
+
"model_author": [
|
55 |
+
null,
|
56 |
+
null
|
57 |
+
],
|
58 |
+
"quant_method": null,
|
59 |
+
"quantization_bit": 0,
|
60 |
+
"hqq_axis": 0,
|
61 |
+
"hqq_dynamic_config_path": null,
|
62 |
+
"bnb_4bit_comp_dtype": "bf16",
|
63 |
+
"bnb_4bit_quant_type": "nf4",
|
64 |
+
"bnb_4bit_use_double_quant": true,
|
65 |
+
"bnb_4bit_quant_storage": null,
|
66 |
+
"rescale_image": -1,
|
67 |
+
"target_modules": "^(model)(?!.*(lm_head|output|emb|wte|shared)).*",
|
68 |
+
"target_regex": null,
|
69 |
+
"modules_to_save": [],
|
70 |
+
"lora_rank": 8,
|
71 |
+
"lora_alpha": 32,
|
72 |
+
"lora_dropout": 0.05,
|
73 |
+
"lora_bias_trainable": "none",
|
74 |
+
"lora_dtype": null,
|
75 |
+
"lora_lr_ratio": null,
|
76 |
+
"use_rslora": false,
|
77 |
+
"use_dora": false,
|
78 |
+
"init_lora_weights": true,
|
79 |
+
"fourier_n_frequency": 2000,
|
80 |
+
"fourier_scaling": 300.0,
|
81 |
+
"rope_scaling": null,
|
82 |
+
"boft_block_size": 4,
|
83 |
+
"boft_block_num": 0,
|
84 |
+
"boft_n_butterfly_factor": 1,
|
85 |
+
"boft_dropout": 0.0,
|
86 |
+
"vera_rank": 256,
|
87 |
+
"vera_projection_prng_key": 0,
|
88 |
+
"vera_dropout": 0.0,
|
89 |
+
"vera_d_initial": 0.1,
|
90 |
+
"adapter_act": "gelu",
|
91 |
+
"adapter_length": 128,
|
92 |
+
"use_galore": false,
|
93 |
+
"galore_target_modules": null,
|
94 |
+
"galore_rank": 128,
|
95 |
+
"galore_update_proj_gap": 50,
|
96 |
+
"galore_scale": 1.0,
|
97 |
+
"galore_proj_type": "std",
|
98 |
+
"galore_optim_per_parameter": false,
|
99 |
+
"galore_with_embedding": false,
|
100 |
+
"galore_quantization": false,
|
101 |
+
"galore_proj_quant": false,
|
102 |
+
"galore_proj_bits": 4,
|
103 |
+
"galore_proj_group_size": 256,
|
104 |
+
"galore_cos_threshold": 0.4,
|
105 |
+
"galore_gamma_proj": 2,
|
106 |
+
"galore_queue_size": 5,
|
107 |
+
"adalora_target_r": 8,
|
108 |
+
"adalora_init_r": 12,
|
109 |
+
"adalora_tinit": 0,
|
110 |
+
"adalora_tfinal": 0,
|
111 |
+
"adalora_deltaT": 1,
|
112 |
+
"adalora_beta1": 0.85,
|
113 |
+
"adalora_beta2": 0.85,
|
114 |
+
"adalora_orth_reg_weight": 0.5,
|
115 |
+
"ia3_feedforward_modules": [],
|
116 |
+
"llamapro_num_new_blocks": 4,
|
117 |
+
"llamapro_num_groups": null,
|
118 |
+
"neftune_noise_alpha": null,
|
119 |
+
"neftune_backend": "transformers",
|
120 |
+
"lisa_activated_layers": 0,
|
121 |
+
"lisa_step_interval": 20,
|
122 |
+
"reft_layer_key": null,
|
123 |
+
"reft_layers": null,
|
124 |
+
"reft_rank": 4,
|
125 |
+
"reft_intervention_type": "LoreftIntervention",
|
126 |
+
"reft_args": null,
|
127 |
+
"use_liger": false,
|
128 |
+
"gradient_checkpointing": true,
|
129 |
+
"vit_use_gc": true,
|
130 |
+
"deepspeed": null,
|
131 |
+
"batch_size": 1,
|
132 |
+
"eval_batch_size": 1,
|
133 |
+
"auto_find_batch_size": false,
|
134 |
+
"num_train_epochs": 5,
|
135 |
+
"max_steps": -1,
|
136 |
+
"optim": "adamw_torch",
|
137 |
+
"adam_beta1": 0.9,
|
138 |
+
"adam_beta2": 0.95,
|
139 |
+
"adam_epsilon": 1e-08,
|
140 |
+
"learning_rate": 5e-05,
|
141 |
+
"weight_decay": 0.1,
|
142 |
+
"gradient_accumulation_steps": 8,
|
143 |
+
"max_grad_norm": 1,
|
144 |
+
"predict_with_generate": false,
|
145 |
+
"lr_scheduler_type": "cosine",
|
146 |
+
"lr_scheduler_kwargs": {},
|
147 |
+
"warmup_ratio": 0.03,
|
148 |
+
"warmup_steps": 0,
|
149 |
+
"eval_steps": 50,
|
150 |
+
"save_steps": 50,
|
151 |
+
"save_only_model": false,
|
152 |
+
"save_total_limit": 2,
|
153 |
+
"logging_steps": 5,
|
154 |
+
"acc_steps": 1,
|
155 |
+
"dataloader_num_workers": 1,
|
156 |
+
"dataloader_pin_memory": true,
|
157 |
+
"dataloader_drop_last": false,
|
158 |
+
"push_to_hub": false,
|
159 |
+
"hub_model_id": null,
|
160 |
+
"hub_token": null,
|
161 |
+
"hub_private_repo": false,
|
162 |
+
"hub_strategy": "every_save",
|
163 |
+
"test_oom_error": false,
|
164 |
+
"disable_tqdm": false,
|
165 |
+
"lazy_tokenize": true,
|
166 |
+
"preprocess_num_proc": 1,
|
167 |
+
"use_flash_attn": null,
|
168 |
+
"ignore_args_error": false,
|
169 |
+
"check_model_is_latest": true,
|
170 |
+
"logging_dir": "/home/ec2-user/output/qwen2-vl-2b-instruct/v0-20241209-111947/runs",
|
171 |
+
"report_to": [
|
172 |
+
"tensorboard"
|
173 |
+
],
|
174 |
+
"acc_strategy": "token",
|
175 |
+
"save_on_each_node": false,
|
176 |
+
"evaluation_strategy": "steps",
|
177 |
+
"save_strategy": "steps",
|
178 |
+
"save_safetensors": true,
|
179 |
+
"gpu_memory_fraction": null,
|
180 |
+
"include_num_input_tokens_seen": false,
|
181 |
+
"local_repo_path": null,
|
182 |
+
"custom_register_path": null,
|
183 |
+
"custom_dataset_info": null,
|
184 |
+
"device_map_config": null,
|
185 |
+
"device_max_memory": [],
|
186 |
+
"max_new_tokens": 2048,
|
187 |
+
"do_sample": null,
|
188 |
+
"temperature": null,
|
189 |
+
"top_k": null,
|
190 |
+
"top_p": null,
|
191 |
+
"repetition_penalty": null,
|
192 |
+
"num_beams": 1,
|
193 |
+
"fsdp": "",
|
194 |
+
"fsdp_config": null,
|
195 |
+
"sequence_parallel_size": 1,
|
196 |
+
"model_layer_cls_name": null,
|
197 |
+
"metric_warmup_step": 0,
|
198 |
+
"fsdp_num": 1,
|
199 |
+
"per_device_train_batch_size": null,
|
200 |
+
"per_device_eval_batch_size": null,
|
201 |
+
"eval_strategy": null,
|
202 |
+
"self_cognition_sample": 0,
|
203 |
+
"train_dataset_mix_ratio": 0.0,
|
204 |
+
"train_dataset_mix_ds": [
|
205 |
+
"ms-bench"
|
206 |
+
],
|
207 |
+
"train_dataset_sample": -1,
|
208 |
+
"val_dataset_sample": null,
|
209 |
+
"safe_serialization": null,
|
210 |
+
"only_save_model": null,
|
211 |
+
"neftune_alpha": null,
|
212 |
+
"deepspeed_config_path": null,
|
213 |
+
"model_cache_dir": null,
|
214 |
+
"lora_dropout_p": null,
|
215 |
+
"lora_target_modules": [],
|
216 |
+
"lora_target_regex": null,
|
217 |
+
"lora_modules_to_save": [],
|
218 |
+
"boft_target_modules": [],
|
219 |
+
"boft_modules_to_save": [],
|
220 |
+
"vera_target_modules": [],
|
221 |
+
"vera_modules_to_save": [],
|
222 |
+
"ia3_target_modules": [],
|
223 |
+
"ia3_modules_to_save": [],
|
224 |
+
"custom_train_dataset_path": [],
|
225 |
+
"custom_val_dataset_path": [],
|
226 |
+
"device_map_config_path": null,
|
227 |
+
"push_hub_strategy": null,
|
228 |
+
"rlhf_type": "dpo",
|
229 |
+
"ref_model_type": null,
|
230 |
+
"ref_model_id_or_path": null,
|
231 |
+
"ref_model_revision": null,
|
232 |
+
"beta": 0.1,
|
233 |
+
"label_smoothing": 0.0,
|
234 |
+
"loss_type": "sigmoid",
|
235 |
+
"rpo_alpha": 0.1,
|
236 |
+
"cpo_alpha": 1.0,
|
237 |
+
"simpo_gamma": 1,
|
238 |
+
"desirable_weight": 1.0,
|
239 |
+
"undesirable_weight": 1.0,
|
240 |
+
"reward_model_id_or_path": null,
|
241 |
+
"reward_model_type": null,
|
242 |
+
"reward_model_revision": null,
|
243 |
+
"local_rollout_forward_batch_size": 64,
|
244 |
+
"whiten_rewards": false,
|
245 |
+
"kl_coef": 0.05,
|
246 |
+
"cliprange": 0.2,
|
247 |
+
"vf_coef": 0.1,
|
248 |
+
"cliprange_value": 0.2,
|
249 |
+
"gamma": 1.0,
|
250 |
+
"lam": 0.95,
|
251 |
+
"num_sample_generations": 10,
|
252 |
+
"ref_model_free": false,
|
253 |
+
"use_self_cognition": false,
|
254 |
+
"is_multimodal": true,
|
255 |
+
"is_vision": true,
|
256 |
+
"lora_use_embedding": false,
|
257 |
+
"lora_use_all": false,
|
258 |
+
"lora_m2s_use_embedding": false,
|
259 |
+
"lora_m2s_use_ln": false,
|
260 |
+
"torch_dtype": "torch.bfloat16",
|
261 |
+
"fp16": false,
|
262 |
+
"bf16": true,
|
263 |
+
"rank": -1,
|
264 |
+
"local_rank": -1,
|
265 |
+
"world_size": 1,
|
266 |
+
"local_world_size": 1,
|
267 |
+
"bnb_4bit_compute_dtype": "torch.bfloat16",
|
268 |
+
"load_in_4bit": false,
|
269 |
+
"load_in_8bit": false,
|
270 |
+
"train_sampler_random": true,
|
271 |
+
"train_type": "dpo",
|
272 |
+
"training_args": "DPOConfig(output_dir='/home/ec2-user/output/qwen2-vl-2b-instruct/v0-20241209-111947', overwrite_output_dir=False, do_train=False, do_eval=True, do_predict=False, eval_strategy=<IntervalStrategy.STEPS: 'steps'>, prediction_loss_only=False, per_device_train_batch_size=1, per_device_eval_batch_size=1, per_gpu_train_batch_size=None, per_gpu_eval_batch_size=None, gradient_accumulation_steps=8, eval_accumulation_steps=None, eval_delay=0, torch_empty_cache_steps=None, learning_rate=5e-05, weight_decay=0.1, adam_beta1=0.9, adam_beta2=0.95, adam_epsilon=1e-08, max_grad_norm=1, num_train_epochs=5, max_steps=-1, lr_scheduler_type=<SchedulerType.COSINE: 'cosine'>, lr_scheduler_kwargs={}, warmup_ratio=0.03, warmup_steps=0, log_level='passive', log_level_replica='warning', log_on_each_node=True, logging_dir='/home/ec2-user/output/qwen2-vl-2b-instruct/v0-20241209-111947/runs', logging_strategy=<IntervalStrategy.STEPS: 'steps'>, logging_first_step=True, logging_steps=5, logging_nan_inf_filter=True, save_strategy=<SaveStrategy.STEPS: 'steps'>, save_steps=50, save_total_limit=2, save_safetensors=True, save_on_each_node=False, save_only_model=False, restore_callback_states_from_checkpoint=False, no_cuda=False, use_cpu=False, use_mps_device=False, seed=42, data_seed=42, jit_mode_eval=False, use_ipex=False, bf16=True, fp16=False, fp16_opt_level='O1', half_precision_backend='auto', bf16_full_eval=False, fp16_full_eval=False, tf32=None, local_rank=0, ddp_backend=None, tpu_num_cores=None, tpu_metrics_debug=False, debug=[], dataloader_drop_last=False, eval_steps=50, dataloader_num_workers=1, dataloader_prefetch_factor=None, past_index=-1, run_name='/home/ec2-user/output/qwen2-vl-2b-instruct/v0-20241209-111947', disable_tqdm=False, remove_unused_columns=False, label_names=None, load_best_model_at_end=False, metric_for_best_model='loss', greater_is_better=False, ignore_data_skip=False, fsdp=[], fsdp_min_num_params=0, fsdp_config={'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False}, fsdp_transformer_layer_cls_to_wrap=None, accelerator_config=AcceleratorConfig(split_batches=False, dispatch_batches=False, even_batches=True, use_seedable_sampler=True, non_blocking=False, gradient_accumulation_kwargs=None, use_configured_state=False), deepspeed=None, label_smoothing_factor=0.0, optim=<OptimizerNames.ADAMW_TORCH: 'adamw_torch'>, optim_args=None, adafactor=False, group_by_length=False, length_column_name='length', report_to=['tensorboard'], ddp_find_unused_parameters=None, ddp_bucket_cap_mb=None, ddp_broadcast_buffers=None, dataloader_pin_memory=True, dataloader_persistent_workers=False, skip_memory_metrics=True, use_legacy_prediction_loop=False, push_to_hub=False, resume_from_checkpoint=None, hub_model_id=None, hub_strategy=<HubStrategy.EVERY_SAVE: 'every_save'>, hub_token=None, hub_private_repo=False, hub_always_push=False, gradient_checkpointing=True, gradient_checkpointing_kwargs=None, include_inputs_for_metrics=False, include_for_metrics=[], eval_do_concat_batches=True, fp16_backend='auto', evaluation_strategy=None, push_to_hub_model_id=None, push_to_hub_organization=None, push_to_hub_token=None, mp_parameters='', auto_find_batch_size=False, full_determinism=False, torchdynamo=None, ray_scope='last', ddp_timeout=1800, torch_compile=False, torch_compile_backend=None, torch_compile_mode=None, dispatch_batches=None, split_batches=None, include_tokens_per_second=False, include_num_input_tokens_seen=False, neftune_noise_alpha=None, optim_target_modules=None, batch_eval_metrics=False, eval_on_start=False, use_liger_kernel=False, eval_use_gather_object=False, average_tokens_across_devices=False, beta=0.1, label_smoothing=0.0, loss_type='sigmoid', label_pad_token_id=-100, padding_value=None, truncation_mode='keep_end', max_length=None, max_prompt_length=None, max_target_length=None, max_completion_length=None, is_encoder_decoder=None, disable_dropout=True, generate_during_eval=False, precompute_ref_log_probs=False, dataset_num_proc=None, model_init_kwargs=None, ref_model_init_kwargs=None, model_adapter_name=None, ref_adapter_name=None, reference_free=False, force_use_ref_model=False, f_divergence_type=<FDivergenceType.REVERSE_KL: 'reverse_kl'>, f_alpha_divergence_coef=1.0, sync_ref_model=False, ref_model_mixup_alpha=0.9, ref_model_sync_steps=64, rpo_alpha=0.1, acc_strategy='token', loss_name=None, additional_saved_files=[], train_sampler_random=True, metric_warmup_step=0, train_dataset_sample=-1)"
|
273 |
+
}
|
checkpoint-20/trainer_state.json
ADDED
@@ -0,0 +1,140 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_metric": 0.26913971,
|
3 |
+
"best_model_checkpoint": "/home/ec2-user/output/qwen2-vl-2b-instruct/v0-20241209-111947/checkpoint-20",
|
4 |
+
"epoch": 4.0,
|
5 |
+
"eval_steps": 50,
|
6 |
+
"global_step": 20,
|
7 |
+
"is_hyper_param_search": false,
|
8 |
+
"is_local_process_zero": true,
|
9 |
+
"is_world_process_zero": true,
|
10 |
+
"log_history": [
|
11 |
+
{
|
12 |
+
"epoch": 0.22857142857142856,
|
13 |
+
"grad_norm": 47.92485809326172,
|
14 |
+
"learning_rate": 5e-05,
|
15 |
+
"logits/chosen": -1.8237018585205078,
|
16 |
+
"logits/rejected": -1.9020615816116333,
|
17 |
+
"logps/chosen": -191.52467346191406,
|
18 |
+
"logps/rejected": -212.57785034179688,
|
19 |
+
"loss": 5.88650322,
|
20 |
+
"memory(GiB)": 30.84,
|
21 |
+
"nll_loss": 0.42665722966194153,
|
22 |
+
"rewards/accuracies": 0.0,
|
23 |
+
"rewards/chosen": 0.0,
|
24 |
+
"rewards/margins": 0.0,
|
25 |
+
"rewards/rejected": 0.0,
|
26 |
+
"step": 1,
|
27 |
+
"train_speed(iter/s)": 0.018393
|
28 |
+
},
|
29 |
+
{
|
30 |
+
"epoch": 1.0,
|
31 |
+
"grad_norm": 18.606019973754883,
|
32 |
+
"learning_rate": 4.4728512734909844e-05,
|
33 |
+
"logits/chosen": -1.8926528692245483,
|
34 |
+
"logits/rejected": -1.9645055532455444,
|
35 |
+
"logps/chosen": -195.32687377929688,
|
36 |
+
"logps/rejected": -217.2638702392578,
|
37 |
+
"loss": 4.4658556,
|
38 |
+
"memory(GiB)": 31.66,
|
39 |
+
"nll_loss": 0.43571263551712036,
|
40 |
+
"rewards/accuracies": 0.6666666865348816,
|
41 |
+
"rewards/chosen": 0.321090966463089,
|
42 |
+
"rewards/margins": 0.17073126137256622,
|
43 |
+
"rewards/rejected": 0.15035970509052277,
|
44 |
+
"step": 5,
|
45 |
+
"train_speed(iter/s)": 0.020714
|
46 |
+
},
|
47 |
+
{
|
48 |
+
"epoch": 2.0,
|
49 |
+
"grad_norm": 6.947022914886475,
|
50 |
+
"learning_rate": 2.7064483636808313e-05,
|
51 |
+
"logits/chosen": -1.8044353723526,
|
52 |
+
"logits/rejected": -1.8731192350387573,
|
53 |
+
"logps/chosen": -175.5177764892578,
|
54 |
+
"logps/rejected": -212.43545532226562,
|
55 |
+
"loss": 1.8374548,
|
56 |
+
"memory(GiB)": 26.6,
|
57 |
+
"nll_loss": 0.3899259567260742,
|
58 |
+
"rewards/accuracies": 1.0,
|
59 |
+
"rewards/chosen": 2.1417019367218018,
|
60 |
+
"rewards/margins": 1.649977684020996,
|
61 |
+
"rewards/rejected": 0.49172407388687134,
|
62 |
+
"step": 10,
|
63 |
+
"train_speed(iter/s)": 0.021154
|
64 |
+
},
|
65 |
+
{
|
66 |
+
"epoch": 3.0,
|
67 |
+
"grad_norm": 1.7851582765579224,
|
68 |
+
"learning_rate": 8.067960709356478e-06,
|
69 |
+
"logits/chosen": -1.728115200996399,
|
70 |
+
"logits/rejected": -1.7883909940719604,
|
71 |
+
"logps/chosen": -163.91143798828125,
|
72 |
+
"logps/rejected": -218.22042846679688,
|
73 |
+
"loss": 0.79830809,
|
74 |
+
"memory(GiB)": 26.6,
|
75 |
+
"nll_loss": 0.36455366015434265,
|
76 |
+
"rewards/accuracies": 1.0,
|
77 |
+
"rewards/chosen": 3.3023338317871094,
|
78 |
+
"rewards/margins": 3.389106035232544,
|
79 |
+
"rewards/rejected": -0.08677242696285248,
|
80 |
+
"step": 15,
|
81 |
+
"train_speed(iter/s)": 0.021297
|
82 |
+
},
|
83 |
+
{
|
84 |
+
"epoch": 4.0,
|
85 |
+
"grad_norm": 2.076888084411621,
|
86 |
+
"learning_rate": 0.0,
|
87 |
+
"logits/chosen": -1.695635199546814,
|
88 |
+
"logits/rejected": -1.7527247667312622,
|
89 |
+
"logps/chosen": -159.94375610351562,
|
90 |
+
"logps/rejected": -223.05526733398438,
|
91 |
+
"loss": 0.61259127,
|
92 |
+
"memory(GiB)": 26.6,
|
93 |
+
"nll_loss": 0.3550187349319458,
|
94 |
+
"rewards/accuracies": 1.0,
|
95 |
+
"rewards/chosen": 3.699101448059082,
|
96 |
+
"rewards/margins": 4.269360065460205,
|
97 |
+
"rewards/rejected": -0.5702579617500305,
|
98 |
+
"step": 20,
|
99 |
+
"train_speed(iter/s)": 0.021369
|
100 |
+
},
|
101 |
+
{
|
102 |
+
"epoch": 4.0,
|
103 |
+
"eval_logits/chosen": -1.8032017946243286,
|
104 |
+
"eval_logits/rejected": -1.8270058631896973,
|
105 |
+
"eval_logps/chosen": -159.05787658691406,
|
106 |
+
"eval_logps/rejected": -185.4047393798828,
|
107 |
+
"eval_loss": 0.26913970708847046,
|
108 |
+
"eval_nll_loss": 0.4101408123970032,
|
109 |
+
"eval_rewards/accuracies": 1.0,
|
110 |
+
"eval_rewards/chosen": 3.333481788635254,
|
111 |
+
"eval_rewards/margins": 1.5688062906265259,
|
112 |
+
"eval_rewards/rejected": 1.764675498008728,
|
113 |
+
"eval_runtime": 80.7016,
|
114 |
+
"eval_samples_per_second": 0.186,
|
115 |
+
"eval_steps_per_second": 0.186,
|
116 |
+
"step": 20
|
117 |
+
}
|
118 |
+
],
|
119 |
+
"logging_steps": 5,
|
120 |
+
"max_steps": 20,
|
121 |
+
"num_input_tokens_seen": 0,
|
122 |
+
"num_train_epochs": 5,
|
123 |
+
"save_steps": 50,
|
124 |
+
"stateful_callbacks": {
|
125 |
+
"TrainerControl": {
|
126 |
+
"args": {
|
127 |
+
"should_epoch_stop": false,
|
128 |
+
"should_evaluate": false,
|
129 |
+
"should_log": false,
|
130 |
+
"should_save": true,
|
131 |
+
"should_training_stop": true
|
132 |
+
},
|
133 |
+
"attributes": {}
|
134 |
+
}
|
135 |
+
},
|
136 |
+
"total_flos": 4272401148051456.0,
|
137 |
+
"train_batch_size": 1,
|
138 |
+
"trial_name": null,
|
139 |
+
"trial_params": null
|
140 |
+
}
|
checkpoint-20/training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b4b3cc2e442f1d48eebf11e4ff601fa10823b88aca4fbfe12b96c03c228c699a
|
3 |
+
size 8568
|
images/eval_logits_chosen.png
ADDED
![]() |
images/eval_logits_rejected.png
ADDED
![]() |
images/eval_logps_chosen.png
ADDED
![]() |
images/eval_logps_rejected.png
ADDED
![]() |
images/eval_loss.png
ADDED
![]() |
images/eval_nll_loss.png
ADDED
![]() |
images/eval_rewards_accuracies.png
ADDED
![]() |
images/eval_rewards_chosen.png
ADDED
![]() |
images/eval_rewards_margins.png
ADDED
![]() |
images/eval_rewards_rejected.png
ADDED
![]() |
images/eval_runtime.png
ADDED
![]() |
images/eval_samples_per_second.png
ADDED
![]() |
images/eval_steps_per_second.png
ADDED
![]() |
images/train_epoch.png
ADDED
![]() |
images/train_grad_norm.png
ADDED
![]() |
images/train_learning_rate.png
ADDED
![]() |
images/train_logits_chosen.png
ADDED
![]() |
images/train_logits_rejected.png
ADDED
![]() |
images/train_logps_chosen.png
ADDED
![]() |
images/train_logps_rejected.png
ADDED
![]() |