| import asyncio |
| import aiohttp |
| import google.generativeai as genai |
| import json |
| import os |
| import argparse |
| import base64 |
| from tqdm.asyncio import tqdm_asyncio |
| from typing import Dict, Any, List |
| from datetime import datetime |
| import numpy as np |
| import boto3 |
|
|
| |
| |
| Test_Model = "Claude" |
|
|
| |
| OUTPUT_JSON_PATH = f"/code/CogReasoner/Code/Evalaute/Result/Test-{Test_Model}-User_Intent_Prediction.json" |
| Inference_output_file = f"/code/CogReasoner/Code/Evalaute/Result/Raw_Answer-{Test_Model}-User_Intent_Prediction.jsonl" |
|
|
| |
| GEMINI_MODEL_NAME = 'gemini-2.5-flash-lite-preview-06-17' |
| MAX_CONCURRENT_REQUESTS = 1 |
|
|
| |
| |
| AWS_ACCESS_KEY_ID = "AKIAYEDGY53YI74GRHPL" |
| AWS_SECRET_ACCESS_KEY = "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" |
| AWS_REGION_NAME = "us-east-1" |
| CLAUDE_MODEL_ID = "us.anthropic.claude-sonnet-4-20250514-v1:0" |
|
|
| |
| class BedrockClaudeClient: |
| """ |
| 一个用于与 AWS Bedrock 上的 Claude 模型交互的客户端。 |
| """ |
| def __init__(self, access_key: str, secret_key: str, region_name: str, model_id: str): |
| self.model_id = model_id |
| try: |
| self.bedrock_client = boto3.client( |
| service_name='bedrock-runtime', |
| region_name=region_name, |
| aws_access_key_id=access_key, |
| aws_secret_access_key=secret_key |
| ) |
| print(f"Boto3 客户端成功创建,区域:'{region_name}', 模型:'{self.model_id}'!") |
| except Exception as e: |
| raise ConnectionError(f"创建 Bedrock 客户端失败: {e}。请检查您的 AWS 凭证和区域名称。") |
|
|
| def _parse_data_url(self, data_url: str): |
| try: |
| header, encoded = data_url.split(",", 1) |
| media_type = header.split(";")[0].split(":")[1] |
| return encoded, media_type |
| except Exception: |
| print(f"警告: 无法解析 Data URL: {data_url[:30]}...") |
| return None, None |
|
|
| def chat(self, messages: List[Dict[str, Any]], max_tokens: int = 1024, temperature: float = 0.1) -> Dict[str, Any]: |
| if not hasattr(self, 'bedrock_client'): |
| raise RuntimeError("Bedrock 客户端未成功初始化。") |
|
|
| claude_system_message = None |
| claude_messages_payload = [] |
|
|
| for openai_msg in messages: |
| role = openai_msg.get("role") |
| content = openai_msg.get("content") |
| if role == "system": |
| claude_system_message = content |
| elif role == "user": |
| claude_content_blocks = [] |
| if isinstance(content, list): |
| for item in content: |
| if item.get("type") == "text": |
| claude_content_blocks.append({"type": "text", "text": item.get("text", "")}) |
| elif item.get("type") == "image_url": |
| url = item.get("image_url", {}).get("url") |
| if url: |
| base64_data, media_type = self._parse_data_url(url) |
| if base64_data and media_type: |
| claude_content_blocks.append({ |
| "type": "image", |
| "source": {"type": "base64", "media_type": media_type, "data": base64_data} |
| }) |
| claude_messages_payload.append({"role": "user", "content": claude_content_blocks}) |
|
|
| if not claude_messages_payload: |
| raise ValueError("转换后没有有效的 'user' 角色消息可以发送给 Claude。") |
|
|
| body = { |
| "anthropic_version": "bedrock-2023-05-31", |
| "max_tokens": max_tokens, |
| "temperature": temperature, |
| "messages": claude_messages_payload |
| } |
| if claude_system_message: |
| body["system"] = claude_system_message |
|
|
| try: |
| response = self.bedrock_client.invoke_model(modelId=self.model_id, body=json.dumps(body)) |
| response_body = json.loads(response.get('body').read()) |
| response_text = "" |
| if response_body.get('content'): |
| for content_block in response_body['content']: |
| if content_block.get('type') == 'text': |
| response_text += content_block['text'] |
| return {"response_text": response_text} |
| except Exception as e: |
| error_message = str(e) |
| if hasattr(e, 'response') and 'Error' in e.response: |
| error_message = f"{e.response['Error'].get('Code', '')}: {e.response['Error'].get('Message', '')}" |
| raise RuntimeError(f"调用 Claude 模型时出错: {error_message}") |
|
|
|
|
| |
| def get_gemini_evaluator_prompt(ground_truth: str, model_answer: str) -> str: |
| """为Gemini评估器创建详细的提示。""" |
| return f"""You are a meticulous and impartial AI evaluator for a web navigation understanding benchmark. Your task is to assess the quality of a candidate model's predicted user intent by comparing it strictly against the Ground Truth Answer. |
| |
| Your evaluation must be based *exclusively* on the information provided in the "Ground Truth Answer". Do not use any external knowledge or make assumptions beyond what is written in the ground truth. |
| |
| Evaluate the candidate answer on the following three aspects: |
| |
| - **Evidence Alignment**: |
| How well does the candidate use visual differences between the screenshots (layout changes, UI elements, visible filters, product count changes, etc.) to support the reasoning? |
| |
| - **Intent Accuracy**: |
| Does the candidate correctly infer the user's goal or intent as described in the ground truth? Consider semantic equivalence and logical consistency. |
| |
| - **Reasoning Quality**: |
| Does the candidate provide a coherent and step-wise explanation for how the user's intent evolves across the three screenshots? |
| |
| --- |
| |
| **[Ground Truth Answer]** |
| {ground_truth} |
| --- |
| **[Candidate Model's Answer]** |
| {model_answer} |
| --- |
| |
| **Evaluation Criteria & Scoring:** |
| - **Score 1:** Completely incorrect or missing. |
| - **Score 2:** Mostly incorrect, with a minor element of truth. |
| - **Score 3:** Partially correct, but misses significant details mentioned in the ground truth. |
| - **Score 4:** Mostly correct, with only minor inaccuracies or omissions compared to the ground truth. |
| - **Score 5:** Fully and accurately captures all relevant information present in the ground truth. |
| |
| Your response MUST be a single, valid JSON object, adhering to the following structure. Do not add any text before or after the JSON object. |
| |
| {{ |
| "evidence_alignment_score": <integer_score>, |
| "evidence_alignment_justification": "<Your brief justification for the evidence score, referencing the ground truth>", |
| "intent_accuracy_score": <integer_score>, |
| "intent_accuracy_justification": "<Your brief justification for the intent score, referencing the ground truth>", |
| "reasoning_quality_score": <integer_score>, |
| "reasoning_quality_justification": "<Your brief justification for the reasoning score, referencing the ground truth>", |
| "overall_score": <A final holistic integer score from 1 to 5, considering all aspects>, |
| "overall_justification": "<A final summary of the model's performance on this example>" |
| }} |
| """ |
|
|
|
|
| |
| def encode_image_to_base64(image_path: str) -> str: |
| """将图片文件编码为base64字符串。""" |
| try: |
| with open(image_path, "rb") as image_file: |
| return base64.b64encode(image_file.read()).decode('utf-8') |
| except FileNotFoundError: |
| print(f"警告: 在路径 {image_path} 未找到图片文件") |
| return None |
|
|
| def create_model_payload(user_prompt: str, image_base64: str) -> Dict[str, Any]: |
| """为模型创建兼容OpenAI格式的JSON负载。""" |
| return { |
| "messages": [ |
| { |
| "role": "user", |
| "content": [ |
| {"type": "text", "text": user_prompt}, |
| { |
| "type": "image_url", |
| "image_url": {"url": f"data:image/png;base64,{image_base64}"} |
| } |
| ] |
| } |
| ], |
| "max_tokens": 1024, |
| "temperature": 0.1 |
| } |
|
|
| |
| async def run_inference(item: Dict[str, Any], claude_client: BedrockClaudeClient, semaphore: asyncio.Semaphore) -> Dict[str, Any]: |
| """执行推理阶段(使用Claude),并返回包含答案的关键信息。""" |
| async with semaphore: |
| image_path = item['images'][0] |
| image_id_base = os.path.basename(image_path[0]) if image_path else "no_image" |
| user_prompt = item['messages'][0]['content'] |
| model_answer = None |
|
|
| image_base64 = encode_image_to_base64(image_path) |
| if not image_base64: |
| model_answer = "Error: Image file not found." |
| else: |
| payload = create_model_payload(user_prompt, image_base64) |
| try: |
| response_data = await asyncio.to_thread( |
| claude_client.chat, |
| messages=payload['messages'], |
| max_tokens=payload['max_tokens'], |
| temperature=payload['temperature'] |
| ) |
| model_answer = response_data['response_text'] |
| await asyncio.sleep(10) |
| except Exception as e: |
| model_answer = f"Error during Claude inference: {e}" |
| |
| return {"id": item.get("id", image_id_base), "model_answer": model_answer} |
|
|
| async def run_evaluation(item: Dict[str, Any], gemini_model: genai.GenerativeModel, semaphore: asyncio.Semaphore) -> Dict[str, Any]: |
| """仅执行评估阶段,并将评估结果添加到item字典中。""" |
| async with semaphore: |
| ground_truth = item['messages'][1]['content'] |
| model_answer = item.get('model_answer', '') |
| evaluation = None |
| if "Error:" in model_answer or not model_answer: |
| evaluation = {"error": "Skipped evaluation due to inference error or empty answer."} |
| else: |
| eval_prompt = get_gemini_evaluator_prompt(ground_truth, model_answer) |
| try: |
| response = await gemini_model.generate_content_async( |
| eval_prompt, |
| generation_config={ |
| "response_mime_type": "application/json" |
| }, |
| ) |
| evaluation = json.loads(response.text) |
| except Exception as e: |
| evaluation = {"error": f"Error during Gemini evaluation: {e}"} |
| item['evaluation'] = evaluation |
| return item |
|
|
| def calculate_summary(results: List[Dict[str, Any]], model_name: str, benchmark_file: str, evaluator_model: str) -> Dict[str, Any]: |
| """计算评估结果的摘要统计信息。""" |
| |
| scores = { |
| "evidence_alignment": [], |
| "intent_accuracy": [], |
| "reasoning_quality": [], |
| "overall": [] |
| } |
| |
| successful_evals = 0 |
| failed_evals = 0 |
|
|
| for res in results: |
| eval_data = res.get('evaluation', {}) |
| if 'error' in eval_data or not eval_data: |
| failed_evals += 1 |
| continue |
| |
| successful_evals += 1 |
| |
| scores["evidence_alignment"].append(eval_data.get("evidence_alignment_score", 0)) |
| scores["intent_accuracy"].append(eval_data.get("intent_accuracy_score", 0)) |
| scores["reasoning_quality"].append(eval_data.get("reasoning_quality_score", 0)) |
| scores["overall"].append(eval_data.get("overall_score", 0)) |
|
|
| |
| average_scores = { |
| "evidence_alignment_avg": round(np.mean(scores["evidence_alignment"]).item() if scores["evidence_alignment"] else 0, 3), |
| "intent_accuracy_avg": round(np.mean(scores["intent_accuracy"]).item() if scores["intent_accuracy"] else 0, 3), |
| "reasoning_quality_avg": round(np.mean(scores["reasoning_quality"]).item() if scores["reasoning_quality"] else 0, 3), |
| "overall_avg": round(np.mean(scores["overall"]).item() if scores["overall"] else 0, 3) |
| } |
|
|
| summary = { |
| "test_metadata": { |
| "model_tested": model_name, |
| "benchmark_file": os.path.basename(benchmark_file), |
| "evaluator_model": evaluator_model, |
| "test_date": datetime.now().strftime("%Y-%m-%d %H:%M:%S") |
| }, |
| "evaluation_summary": { |
| "total_samples": len(results), |
| "successful_evaluations": successful_evals, |
| "failed_evaluations": failed_evals, |
| "average_scores": average_scores |
| } |
| } |
| return summary |
|
|
| |
| async def main(): |
| parser = argparse.ArgumentParser(description="分阶段Benchmark工具:可独立进行推理或评估。") |
| parser.add_argument("--gemini_api_key", default="AIzaSyBCL2-lp3jOBPPZc7-5NsSy8r7wDFaqnFI", help="您的Google AI Studio API密钥。") |
| parser.add_argument("--benchmark_file", default="/code/CogReasoner/Test/Element_Understanding_sampled_200_clean.json", help="包含测试数据的JSON文件路径。") |
| parser.add_argument("--output_file", default=OUTPUT_JSON_PATH, help="保存最终评估结果的JSON文件路径。") |
| parser.add_argument("--concurrency", type=int, default=MAX_CONCURRENT_REQUESTS, help="最大并发请求数。") |
| parser.add_argument("--inference_output_file", type=str, help="[推理模式] 推理结果要保存到的.jsonl文件路径。如果未提供,将使用默认路径。") |
| parser.add_argument("--evaluation_input_file", default=Inference_output_file,type=str, help="[评估模式] 包含模型答案的.jsonl文件路径。") |
| parser.add_argument("--mode", choices=['inference', 'evaluation'], help="明确选择脚本运行模式:'inference' 或 'evaluation'。") |
| args = parser.parse_args() |
|
|
| if not args.mode: |
| args.mode = 'evaluation' if args.evaluation_input_file else 'inference' |
|
|
| if args.mode == 'inference': |
| print("--- 进入 [推理模式] (模型: Claude) ---") |
| |
| |
| if "YOUR_AWS" in AWS_ACCESS_KEY_ID or "YOUR_AWS" in AWS_SECRET_ACCESS_KEY: |
| print("错误: 推理模式需要 AWS 凭证。请在脚本顶部的配置项中填入您的真实凭证。") |
| return |
|
|
| try: |
| |
| claude_client = BedrockClaudeClient( |
| access_key=AWS_ACCESS_KEY_ID, |
| secret_key=AWS_SECRET_ACCESS_KEY, |
| region_name=AWS_REGION_NAME, |
| model_id=CLAUDE_MODEL_ID |
| ) |
| except Exception as e: |
| print(f"初始化 Claude 客户端失败: {e}") |
| return |
|
|
| inference_output_path = args.inference_output_file if args.inference_output_file else Inference_output_file |
| |
| try: |
| with open(args.benchmark_file, 'r', encoding='utf-8') as f: |
| benchmark_items = json.load(f) |
| except FileNotFoundError: |
| print(f"错误: 在 {args.benchmark_file} 未找到Benchmark文件。") |
| return |
|
|
| |
| for i, item in enumerate(benchmark_items): |
| if "id" not in item: |
| |
| img_path = item.get('images', [f'no_image_{i}'])[0] |
| item["id"] = f"{os.path.basename(img_path)}_{i}" |
| |
| semaphore = asyncio.Semaphore(args.concurrency) |
| |
| async with aiohttp.ClientSession() as session: |
| inference_tasks = [run_inference(item, claude_client, semaphore) for item in benchmark_items] |
| inference_results = await tqdm_asyncio.gather(*inference_tasks, desc="Inferring") |
|
|
| output_dir = os.path.dirname(inference_output_path) |
| if output_dir and not os.path.exists(output_dir): |
| os.makedirs(output_dir) |
| |
| with open(inference_output_path, 'w', encoding='utf-8') as f: |
| for result in inference_results: |
| f.write(json.dumps(result, ensure_ascii=False) + '\n') |
| |
| print(f"\n推理完成!结果已保存到: {inference_output_path}") |
| |
| elif args.mode == 'evaluation': |
| |
| print("--- 进入 [评估模式] ---") |
| evaluation_input_path = args.evaluation_input_file if args.evaluation_input_file else Inference_output_file |
|
|
| if not args.gemini_api_key or args.gemini_api_key == "YOUR_GEMINI_API_KEY": |
| print("错误: 评估模式需要Gemini API密钥。请使用 --gemini_api_key 参数。") |
| return |
| |
| try: |
| with open(args.benchmark_file, 'r', encoding='utf-8') as f: |
| benchmark_data_list = json.load(f) |
| benchmark_data_map = {} |
| |
| for i, item in enumerate(benchmark_data_list): |
| img_path = item.get('images', [f'no_image_{i}'])[0] |
| item_id = item.get("id", f"{os.path.basename(img_path)}_{i}") |
| benchmark_data_map[item_id] = item |
|
|
| with open(evaluation_input_path, 'r', encoding='utf-8') as f: |
| model_answers = [json.loads(line) for line in f] |
| except FileNotFoundError as e: |
| print(f"错误: 无法找到输入文件 - {e}") |
| return |
| |
| items_to_evaluate = [] |
| for answer in model_answers: |
| item_id = answer.get("id") |
| if item_id in benchmark_data_map: |
| full_item = benchmark_data_map[item_id] |
| full_item['model_answer'] = answer['model_answer'] |
| items_to_evaluate.append(full_item) |
| else: |
| print(f"警告: 在原始benchmark数据中找不到ID为 '{item_id}' 的项,跳过。") |
| |
| if not items_to_evaluate: |
| print("错误: 没有可供评估的数据。请检查ID是否匹配。") |
| return |
| |
| semaphore = asyncio.Semaphore(args.concurrency) |
| |
| genai.configure(api_key=args.gemini_api_key) |
| gemini_model = genai.GenerativeModel(GEMINI_MODEL_NAME) |
| |
| evaluation_tasks = [run_evaluation(item, gemini_model, semaphore) for item in items_to_evaluate] |
| final_results_list = await tqdm_asyncio.gather(*evaluation_tasks, desc="Evaluating") |
|
|
| |
| summary = calculate_summary( |
| results=final_results_list, |
| model_name=Test_Model, |
| benchmark_file=args.benchmark_file, |
| evaluator_model=GEMINI_MODEL_NAME |
| ) |
|
|
| |
| final_output_object = { |
| "summary": summary, |
| "results": final_results_list |
| } |
|
|
| |
| output_dir = os.path.dirname(args.output_file) |
| if output_dir and not os.path.exists(output_dir): |
| os.makedirs(output_dir) |
| |
| with open(args.output_file, 'w', encoding='utf-8') as f: |
| json.dump(final_output_object, f, indent=2, ensure_ascii=False) |
| |
| |
| print("\n--- 评估完成!摘要如下 ---") |
| print(json.dumps(summary, indent=2, ensure_ascii=False)) |
| print("--------------------------") |
| print(f"\n完整结果已保存到: {args.output_file}") |
|
|
| else: |
| print("错误: 模式不明确。请使用 --mode 'inference' 或 'evaluation' 来指定运行模式。") |
|
|
|
|
| if __name__ == "__main__": |
| asyncio.run(main()) |