File size: 21,788 Bytes
5e4510c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 | """
Evaluator for HuggingFace dataset-based prompt optimization.
"""
import re
import traceback
import yaml
import os
import time
from openai import OpenAI
from tqdm import tqdm
from datasets import load_dataset
# Read config.yaml to get model settings
with open(os.path.join(os.path.dirname(__file__), "config.yaml"), "r") as f:
config = yaml.safe_load(f)
# Get model settings from config
llm_config = config.get("llm", {})
api_base = llm_config.get("api_base", "http://localhost:1234/v1")
# Handle both single model and model list configurations
models = llm_config.get("models", [])
if models:
# Use first model from list
TASK_MODEL_NAME = models[0].get("name", "default-model")
else:
# Fallback to direct model specification
TASK_MODEL_NAME = llm_config.get("primary_model", "default-model")
# Get evaluator settings
evaluator_config = config.get("evaluator", {})
MAX_RETRIES = evaluator_config.get("max_retries", 3)
# Get max_tokens from LLM config
MAX_TOKENS = llm_config.get("max_tokens", 16000)
print(f"Using max_tokens: {MAX_TOKENS}")
# Initialize OpenAI client once for all evaluations
test_model = OpenAI(base_url=api_base)
print(f"Initialized OpenAI client with model: {TASK_MODEL_NAME}")
# Determine which dataset to use based on the OPENEVOLVE_PROMPT environment variable
import sys
prompt_file = os.environ.get("OPENEVOLVE_PROMPT")
if not prompt_file:
# Default to a generic dataset config if not using the wrapper script
evaluator_dir = os.path.dirname(os.path.abspath(__file__))
DATASET_CONFIG_PATH = os.path.join(evaluator_dir, "dataset_settings.yaml")
print("Warning: OPENEVOLVE_PROMPT not set. Using default dataset_settings.yaml")
else:
basename = os.path.basename(prompt_file)
dataset_filename = basename.replace("_prompt.txt", "_prompt_dataset.yaml").replace(
".txt", "_dataset.yaml"
)
evaluator_dir = os.path.dirname(os.path.abspath(__file__))
DATASET_CONFIG_PATH = os.path.join(evaluator_dir, dataset_filename)
print(f"Dataset configuration: {dataset_filename}")
def calculate_prompt_features(prompt):
"""
Calculate custom features for MAP-Elites
IMPORTANT: Returns raw continuous values, not bin indices.
The database handles all scaling and binning automatically.
Returns:
tuple: (prompt_length, reasoning_sophistication_score)
- prompt_length: Actual character count
- reasoning_sophistication_score: Continuous score 0.0-1.0
"""
# Feature 1: Prompt length (raw character count)
prompt_length = len(prompt)
# Feature 2: Reasoning sophistication score (continuous 0.0-1.0)
prompt_lower = prompt.lower()
sophistication_score = 0.0
# Base scoring
if len(prompt) >= 100:
sophistication_score += 0.1 # Has substantial content
# Check for few-shot examples (high sophistication)
has_example = (
"example" in prompt_lower
or prompt.count("####") >= 4
or bool(re.search(r"problem:.*?solution:", prompt_lower, re.DOTALL))
)
# Check for Chain-of-Thought (CoT) indicators
has_cot = (
"step by step" in prompt_lower
or "step-by-step" in prompt_lower
or any(phrase in prompt_lower for phrase in ["think through", "reasoning", "explain your"])
or bool(re.search(r"(first|then|next|finally)", prompt_lower))
)
# Check for directive language
has_directive = "solve" in prompt_lower or "calculate" in prompt_lower
# Check for strict language
has_strict = "must" in prompt_lower or "exactly" in prompt_lower
# Calculate sophistication score
if has_example:
sophistication_score += 0.6 # Few-shot examples are sophisticated
if has_cot:
sophistication_score += 0.3 # Few-shot + CoT is most sophisticated
elif len(prompt) > 1500:
sophistication_score += 0.2 # Extensive few-shot
else:
sophistication_score += 0.1 # Basic few-shot
elif has_cot:
sophistication_score += 0.4 # Chain-of-thought
if has_strict:
sophistication_score += 0.2 # Strict CoT
elif len(prompt) > 500:
sophistication_score += 0.15 # Detailed CoT
else:
sophistication_score += 0.1 # Basic CoT
else:
# Basic prompts
if has_directive:
sophistication_score += 0.2 # Direct instruction
else:
sophistication_score += 0.1 # Simple prompt
# Ensure score is within 0.0-1.0 range
sophistication_score = min(1.0, max(0.0, sophistication_score))
return prompt_length, sophistication_score
def load_prompt_config(prompt_path):
"""Load the prompt from text file and dataset config from matching _dataset.yaml file."""
# Load prompt from text file
with open(prompt_path, "r") as f:
prompt = f.read().strip()
# Load the configuration (already determined from environment variable)
if not os.path.exists(DATASET_CONFIG_PATH):
raise FileNotFoundError(f"Dataset configuration not found: {DATASET_CONFIG_PATH}")
with open(DATASET_CONFIG_PATH, "r") as f:
config = yaml.safe_load(f)
return config, prompt
def load_hf_dataset(config):
"""Load HuggingFace dataset based on configuration."""
dataset_name = config["dataset_name"]
dataset_config = config.get("dataset_config", None)
split = config.get("split", "test")
trust_remote_code = config.get("trust_remote_code", True) # Default to True for convenience
print(f"Loading dataset: {dataset_name}")
# Special handling for HotpotQA - always use non-streaming mode
if dataset_name == "hotpot_qa" or config.get("is_hotpotqa", False):
print("Using non-streaming mode for HotpotQA to avoid PyArrow issues")
streaming = False
else:
# For other datasets, use streaming if not specified
streaming = config.get("streaming", True)
try:
# Try to load the specified split
if dataset_config:
dataset = load_dataset(
dataset_name,
dataset_config,
split=split,
trust_remote_code=trust_remote_code,
streaming=streaming,
)
else:
dataset = load_dataset(
dataset_name, split=split, trust_remote_code=trust_remote_code, streaming=streaming
)
except:
# Fallback to train split if test is not available
print(f"Split '{split}' not found, falling back to 'train'")
if dataset_config:
dataset = load_dataset(
dataset_name,
dataset_config,
split="train",
trust_remote_code=trust_remote_code,
streaming=streaming,
)
else:
dataset = load_dataset(
dataset_name,
split="train",
trust_remote_code=trust_remote_code,
streaming=streaming,
)
# Print dataset info
if hasattr(dataset, "__len__"):
print(f"Dataset loaded with {len(dataset)} examples")
else:
print(f"Dataset loaded (streaming mode)")
return dataset
def evaluate_prompt(prompt, dataset, config, num_samples):
"""Evaluate a prompt on a subset of the dataset."""
input_field = config["input_field"]
target_field = config["target_field"]
# Check dataset type
dataset_name = config.get("dataset_name", "").lower()
is_emotion = "emotion" in dataset_name
is_gsm8k = "gsm8k" in dataset_name
is_hotpotqa = config.get("is_hotpotqa", False)
is_ifeval = config.get("is_ifeval", False)
is_hover = config.get("is_hover", False)
# Sample from dataset - handle both streaming and non-streaming
if hasattr(dataset, "take"):
# Streaming dataset
samples = dataset.take(num_samples)
sample_iter = tqdm(samples, desc=f"Evaluating {num_samples} samples", total=num_samples)
else:
# Non-streaming dataset
indices = range(min(num_samples, len(dataset)))
samples = dataset.select(indices)
sample_iter = tqdm(samples, desc=f"Evaluating {num_samples} samples")
correct = 0
total = 0
for example in sample_iter:
input_text = example[input_field]
expected = example[target_field]
# Prepare the prompt with appropriate formatting
if is_hotpotqa:
# Format context from paragraphs
context_items = example.get("context", {})
context_text = ""
if "title" in context_items and "sentences" in context_items:
# Handle the specific structure of HotpotQA
for i, (title, sentences) in enumerate(
zip(context_items["title"], context_items["sentences"])
):
context_text += f"Paragraph {i+1} ({title}):\n"
context_text += " ".join(sentences) + "\n\n"
formatted_prompt = prompt.format(context=context_text.strip(), question=input_text)
elif is_ifeval:
# IFEval uses 'prompt' field directly
formatted_prompt = prompt.format(instruction=input_text)
elif is_hover:
# HoVer uses claim field
formatted_prompt = prompt.format(claim=input_text)
else:
# Default formatting for other datasets
formatted_prompt = prompt.format(input_text=input_text)
# Prepare the message for the LLM
messages = [{"role": "user", "content": formatted_prompt}]
# Call the LLM with retry logic
for attempt in range(MAX_RETRIES):
try:
# Use max_tokens from config
response = test_model.chat.completions.create(
model=TASK_MODEL_NAME,
messages=messages,
temperature=0.1, # Low temperature for consistent results
max_tokens=MAX_TOKENS,
)
break
except Exception as e:
if attempt == MAX_RETRIES - 1:
print(f"Failed to get response after {MAX_RETRIES} attempts: {e}")
raise e
time.sleep(1)
# Handle potential None response
if not response:
print(f"Warning: No response object from LLM")
total += 1 # Count as incorrect
continue
if not response.choices:
print(f"Warning: No choices in response from LLM")
total += 1 # Count as incorrect
continue
if not response.choices[0].message:
print(f"Warning: No message in response choice")
total += 1 # Count as incorrect
continue
output_text = response.choices[0].message.content
if output_text is None:
print(f"Warning: None content in LLM response")
print(f"Full response: {response}")
total += 1 # Count as incorrect
continue
output_text = output_text.strip()
# Extract prediction from output
try:
if is_gsm8k:
# For GSM8K, extract the numeric answer after ####
# First, extract the expected answer from the ground truth
expected_answer = expected.split("####")[-1].strip()
try:
expected_number = float(expected_answer.replace(",", ""))
except:
print(f"Warning: Could not parse expected answer: {expected_answer}")
total += 1
continue
# Extract prediction from model output
prediction = None
if "####" in output_text:
predicted_answer = output_text.split("####")[-1].strip()
# Extract just the number, removing any extra text like $ signs
import re
numbers = re.findall(r"-?\$?[\d,]+\.?\d*", predicted_answer)
if numbers:
try:
# Remove $ and , from the number
number_str = numbers[0].replace("$", "").replace(",", "")
prediction = float(number_str)
except:
pass
# If we found a prediction, check if it matches
if prediction is not None:
# Check if answers match (with small tolerance for floats)
if abs(prediction - expected_number) < 0.001:
correct += 1
total += 1
continue # Skip the general case to avoid double counting
elif is_hotpotqa:
# For HotpotQA, do exact match comparison (case-insensitive)
output_lower = output_text.lower().strip()
expected_lower = str(expected).lower().strip()
# Remove common punctuation for better matching
output_lower = output_lower.rstrip(".,!?;:")
expected_lower = expected_lower.rstrip(".,!?;:")
if output_lower == expected_lower:
correct += 1
elif expected_lower in output_lower:
# Partial credit if answer is contained in response
correct += 1
total += 1
continue
elif is_ifeval:
# For IFEval, we need more complex evaluation
# For now, do basic keyword matching
# Note: Full IFEval requires checking multiple constraints
output_lower = output_text.lower()
# Simple heuristic: check if response seems to follow instruction format
if len(output_text.strip()) > 10: # Non-trivial response
correct += 1 # Simplified - real IFEval needs constraint checking
total += 1
continue
elif is_hover:
# For HoVer, check if prediction matches SUPPORTED/NOT_SUPPORTED
output_upper = output_text.upper()
expected_upper = str(expected).upper()
# Look for the verdict in the output
if "SUPPORTED" in output_upper and "NOT" not in output_upper.replace(
"NOT SUPPORTED", ""
):
prediction = "SUPPORTED"
elif "NOT SUPPORTED" in output_upper or "NOT_SUPPORTED" in output_upper:
prediction = "NOT_SUPPORTED"
else:
prediction = None
if prediction == expected_upper:
correct += 1
total += 1
continue
elif is_emotion:
# For emotion classification (0-5)
numbers = re.findall(r"\b[0-5]\b", output_text)
if numbers:
prediction = int(numbers[-1]) # Use the last number found
else:
# Try to infer from emotion keywords
output_lower = output_text.lower()
emotion_map = {
"sadness": 0,
"sad": 0,
"joy": 1,
"happy": 1,
"happiness": 1,
"love": 2,
"anger": 3,
"angry": 3,
"fear": 4,
"afraid": 4,
"scared": 4,
"surprise": 5,
"surprised": 5,
}
prediction = -1
for emotion, label in emotion_map.items():
if emotion in output_lower:
prediction = label
break
else:
# For sentiment classification (0-1)
numbers = re.findall(r"\b[01]\b", output_text)
if numbers:
prediction = int(numbers[-1]) # Use the last number found
else:
# Try to infer from keywords
output_lower = output_text.lower()
if "positive" in output_lower:
prediction = 1
elif "negative" in output_lower:
prediction = 0
else:
prediction = -1 # Invalid prediction
if prediction == expected:
correct += 1
total += 1
except Exception as e:
print(f"Error parsing response '{output_text}': {e}")
total += 1 # Count as incorrect
accuracy = correct / total if total > 0 else 0.0
return accuracy, correct, total
def evaluate_stage1(prompt_path):
"""
Stage 1 evaluation: Quick evaluation with 10% of samples
Args:
prompt_path: Path to the prompt file
Returns:
Dictionary with combined_score metric
"""
print("-" * 80)
print("Starting Stage 1 evaluation...")
print("-" * 80)
try:
# Load prompt configuration
config, prompt = load_prompt_config(prompt_path)
print(f"Loaded prompt configuration")
# Load dataset
dataset = load_hf_dataset(config)
# Get number of samples from config
num_samples = config.get("max_samples", 50)
# Fixed to 10 samples for Stage 1 (quick evaluation)
stage1_samples = 10
print(f"Stage 1: Evaluating {stage1_samples} samples...")
# Run evaluation
accuracy, correct, total = evaluate_prompt(prompt, dataset, config, stage1_samples)
print(f"Stage 1 accuracy: {accuracy:.3f} ({correct}/{total})")
print("-" * 80)
# Calculate custom features
prompt_length, reasoning_sophistication = calculate_prompt_features(prompt)
print(
f"Prompt features - Length: {prompt_length} chars, Reasoning sophistication: {reasoning_sophistication:.3f}"
)
return {
"combined_score": accuracy,
"prompt_length": prompt_length,
"reasoning_strategy": reasoning_sophistication,
}
except Exception as e:
print(f"Stage 1 evaluation failed: {str(e)}")
traceback.print_exc()
print("-" * 80)
# Always return feature dimensions, even on failure
try:
# Try to calculate features from the failed prompt
with open(prompt_path, "r") as f:
failed_prompt = f.read().strip()
prompt_length, reasoning_sophistication = calculate_prompt_features(failed_prompt)
except:
# Fallback values if prompt can't be read
prompt_length, reasoning_sophistication = 0, 0.0
return {
"combined_score": 0.0,
"prompt_length": prompt_length,
"reasoning_strategy": reasoning_sophistication,
"error": str(e),
}
def evaluate_stage2(prompt_path):
"""
Stage 2 evaluation: Full evaluation with all samples
Args:
prompt_path: Path to the prompt file
Returns:
Dictionary with combined_score metric
"""
print("-" * 80)
print("Starting Stage 2 evaluation...")
print("-" * 80)
try:
# Load prompt configuration
config, prompt = load_prompt_config(prompt_path)
print(f"Loaded prompt configuration")
# Load dataset
dataset = load_hf_dataset(config)
# Get number of samples from config
num_samples = config.get("max_samples", 50)
# Fixed to 40 samples for Stage 2 (comprehensive evaluation)
stage2_samples = 40
print(f"Stage 2: Evaluating {stage2_samples} samples...")
# Run evaluation
accuracy, correct, total = evaluate_prompt(prompt, dataset, config, stage2_samples)
print(f"Stage 2 accuracy: {accuracy:.3f} ({correct}/{total})")
print("-" * 80)
# Calculate custom features
prompt_length, reasoning_sophistication = calculate_prompt_features(prompt)
print(
f"Prompt features - Length: {prompt_length} chars, Reasoning sophistication: {reasoning_sophistication:.3f}"
)
return {
"combined_score": accuracy,
"prompt_length": prompt_length,
"reasoning_strategy": reasoning_sophistication,
}
except Exception as e:
print(f"Stage 2 evaluation failed: {str(e)}")
traceback.print_exc()
print("-" * 80)
# Always return feature dimensions, even on failure
try:
# Try to calculate features from the failed prompt
with open(prompt_path, "r") as f:
failed_prompt = f.read().strip()
prompt_length, reasoning_sophistication = calculate_prompt_features(failed_prompt)
except:
# Fallback values if prompt can't be read
prompt_length, reasoning_sophistication = 0, 0.0
return {
"combined_score": 0.0,
"prompt_length": prompt_length,
"reasoning_strategy": reasoning_sophistication,
"error": str(e),
}
def evaluate(prompt_path):
"""
Main evaluation function - for backwards compatibility
Calls evaluate_stage2 for full evaluation
Args:
prompt_path: Path to the prompt file
Returns:
Dictionary with combined_score metric
"""
return evaluate_stage2(prompt_path)
|