from transformers import Qwen2_5_VLForConditionalGeneration, Qwen2VLForConditionalGeneration, AutoProcessor from typing import Dict, Any, Union from trl.data_utils import maybe_apply_chat_template import torch from vlm_modules.vlm_module import VLMBaseModule class Qwen2VLModule(VLMBaseModule): def __init__(self): super().__init__() def get_vlm_key(self): return "qwen" def get_model_class(self, model_id: str, model_init_kwargs: dict): if "Qwen2-VL" in model_id: model_cls = Qwen2VLForConditionalGeneration elif "Qwen2.5-VL" in model_id: model_cls = Qwen2_5_VLForConditionalGeneration else: raise ValueError(f"Unsupported model: {model_id}") return model_cls def post_model_init(self, model, processing_class): pass def get_processing_class(self): return AutoProcessor def get_vision_modules_keywords(self): return ['visual'] def get_custom_multimodal_keywords(self): return ['pixel_values', 'image_grid_thw'] def get_non_generate_params(self): return [] def get_custom_processing_keywords(self): return [('image_processor', 'max_pixels'), ('image_processor', 'min_pixels')] def prepare_prompt(self, processing_class, inputs: dict[str, Union[torch.Tensor, Any]]): prompts_text = [maybe_apply_chat_template(example, processing_class)["prompt"] for example in inputs] return prompts_text def prepare_model_inputs(self, processing_class, prompts_text, images, return_tensors="pt", padding=True, padding_side="left", add_special_tokens=False): # FIXME # This could only process pure-multimodal or pure-text inputs if len(images) > 0: prompt_inputs = processing_class( text=prompts_text, images=images, return_tensors=return_tensors, padding=padding, padding_side=padding_side, add_special_tokens=add_special_tokens) else: prompt_inputs = processing_class( text=prompts_text, return_tensors=return_tensors, padding=padding, padding_side=padding_side, add_special_tokens=add_special_tokens) return prompt_inputs @staticmethod def get_question_template(task_type: str): match task_type: case "rec": return "{Question} First output the thinking process in tags and then output the final answer in tags. Output the final answer in JSON format." case "ic": return "{Question} First thinks about the reasoning process in the mind and then provides the user with the answer. The reasoning process and answer are enclosed within and tags, respectively, i.e., reasoning process here json format answer here " case "odLength": SYSTEM_PROMPT = ( #"A conversation between User and Assistant. The user asks a question, and the Assistant solves it. The assistant " "First thinks about the reasoning process in the mind and then provides the user with the answer. The reasoning " "process and answer are enclosed within and tags, respectively, i.e., " " reasoning process here answer here " ) return SYSTEM_PROMPT + '\n' + "{Question}" case _: return "{Question} First output the thinking process in tags and then output the final answer in tags." @staticmethod def format_reward_rec(completions, **kwargs): """Check if the Qwen model output matches a specific format.""" import re import os from datetime import datetime pattern = r".*?\s*.*?\{.*\[\d+,\s*\d+,\s*\d+,\s*\d+\].*\}.*?" completion_contents = [completion[0]["content"] for completion in completions] matches = [re.search(pattern, content, re.DOTALL) is not None for content in completion_contents] current_time = datetime.now().strftime("%d-%H-%M-%S-%f") if os.getenv("DEBUG_MODE") == "true": log_path = os.getenv("LOG_PATH") with open(log_path.replace(".txt", "_format.txt"), "a", encoding='utf-8') as f: f.write(f"------------- {current_time} Format reward -------------\n") for content, match in zip(completion_contents, matches): f.write(f"Content: {content}\n") f.write(f"Has format: {bool(match)}\n") return [1.0 if match else 0.0 for match in matches] @staticmethod def iou_reward(completions, solution, **kwargs): """Calculate IoU reward between predicted bounding box from Qwen model and ground truth bounding box.""" import re import os from datetime import datetime import json def iou(box1, box2): inter_x1 = max(box1[0], box2[0]) inter_y1 = max(box1[1], box2[1]) inter_x2 = min(box1[2]-1, box2[2]-1) inter_y2 = min(box1[3]-1, box2[3]-1) if inter_x1 < inter_x2 and inter_y1 < inter_y2: inter = (inter_x2-inter_x1+1)*(inter_y2-inter_y1+1) else: inter = 0 union = (box1[2]-box1[0])*(box1[3]-box1[1]) + (box2[2]-box2[0])*(box2[3]-box2[1]) - inter return float(inter)/union contents = [completion[0]["content"] for completion in completions] rewards = [] current_time = datetime.now().strftime("%d-%H-%M-%S-%f") answer_tag_pattern = r'(.*?)' bbox_pattern = r'\[(\d+),\s*(\d+),\s*(\d+),\s*(\d+)]' for content, sol in zip(contents, solution): sol = re.findall(answer_tag_pattern, sol, re.DOTALL)[-1] sol = json.loads(sol.strip()) reward = 0.0 # Try symbolic verification first try: content_answer_match = re.search(answer_tag_pattern, content, re.DOTALL) if content_answer_match: content_answer = content_answer_match.group(1).strip() bbox_match = re.search(bbox_pattern, content_answer) if bbox_match: bbox = [int(bbox_match.group(1)), int(bbox_match.group(2)), int(bbox_match.group(3)), int(bbox_match.group(4))] # if iou(bbox, sol) > 0.5: # reward = 1.0 reward = iou(bbox, sol) except Exception: pass # Continue to next verification method if this fails rewards.append(reward) if os.getenv("DEBUG_MODE") == "true": log_path = os.getenv("LOG_PATH") current_time = datetime.now().strftime("%d-%H-%M-%S-%f") image_path = kwargs.get("image_path")[0] if "image_path" in kwargs else None problem = kwargs.get("problem")[0] if reward <= 1.0: # this condition can be changed for debug with open(log_path, "a", encoding='utf-8') as f: f.write(f"------------- {current_time} Accuracy reward: {reward} -------------\n") f.write(f"image_path: {image_path}\n") f.write(f"problem: {problem}\n") f.write(f"Content: {content}\n") f.write(f"Solution: {sol}\n") return rewards @staticmethod def select_reward_func(func: str, task_type: str): if func == "accuracy": match task_type: case "rec": return Qwen2VLModule.iou_reward case _: raise ValueError(f"Unsupported reward function: {func}") elif func == "format": match task_type: case "rec": return Qwen2VLModule.format_reward_rec case _: raise ValueError(f"Unsupported reward function: {func}") else: raise ValueError(f"Unsupported reward function: {func}")