File size: 21,954 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 |
"""
Main controller for OpenEvolve
"""
import asyncio
import logging
import os
import signal
import time
import uuid
from pathlib import Path
from typing import Any, Dict, List, Optional, Union
from openevolve.config import Config, load_config
from openevolve.database import Program, ProgramDatabase
from openevolve.evaluator import Evaluator
from openevolve.evolution_trace import EvolutionTracer
from openevolve.llm.ensemble import LLMEnsemble
from openevolve.process_parallel import ProcessParallelController
from openevolve.prompt.sampler import PromptSampler
from openevolve.utils.code_utils import extract_code_language
from openevolve.utils.format_utils import format_improvement_safe, format_metrics_safe
logger = logging.getLogger(__name__)
def _format_metrics(metrics: Dict[str, Any]) -> str:
"""Safely format metrics, handling both numeric and string values"""
formatted_parts = []
for name, value in metrics.items():
if isinstance(value, (int, float)) and not isinstance(value, bool):
try:
formatted_parts.append(f"{name}={value:.4f}")
except (ValueError, TypeError):
formatted_parts.append(f"{name}={value}")
else:
formatted_parts.append(f"{name}={value}")
return ", ".join(formatted_parts)
def _format_improvement(improvement: Dict[str, Any]) -> str:
"""Safely format improvement metrics"""
formatted_parts = []
for name, diff in improvement.items():
if isinstance(diff, (int, float)) and not isinstance(diff, bool):
try:
formatted_parts.append(f"{name}={diff:+.4f}")
except (ValueError, TypeError):
formatted_parts.append(f"{name}={diff}")
else:
formatted_parts.append(f"{name}={diff}")
return ", ".join(formatted_parts)
class OpenEvolve:
"""
Main controller for OpenEvolve
Orchestrates the evolution process, coordinating between the prompt sampler,
LLM ensemble, evaluator, and program database.
Features:
- Tracks the absolute best program across evolution steps
- Ensures the best solution is not lost during the MAP-Elites process
- Always includes the best program in the selection process for inspiration
- Maintains detailed logs and metadata about improvements
"""
def __init__(
self,
initial_program_path: str,
evaluation_file: str,
config: Config,
output_dir: Optional[str] = None,
):
# Load configuration (loaded in main_async)
self.config = config
# Set up output directory
self.output_dir = output_dir or os.path.join(
os.path.dirname(initial_program_path), "openevolve_output"
)
os.makedirs(self.output_dir, exist_ok=True)
# Set up logging
self._setup_logging()
# Set random seed for reproducibility if specified
if self.config.random_seed is not None:
import hashlib
import random
import numpy as np
# Set global random seeds
random.seed(self.config.random_seed)
np.random.seed(self.config.random_seed)
# Create hash-based seeds for different components
base_seed = str(self.config.random_seed).encode("utf-8")
llm_seed = int(hashlib.md5(base_seed + b"llm").hexdigest()[:8], 16) % (2**31)
# Propagate seed to LLM configurations
self.config.llm.random_seed = llm_seed
for model_cfg in self.config.llm.models:
if not hasattr(model_cfg, "random_seed") or model_cfg.random_seed is None:
model_cfg.random_seed = llm_seed
for model_cfg in self.config.llm.evaluator_models:
if not hasattr(model_cfg, "random_seed") or model_cfg.random_seed is None:
model_cfg.random_seed = llm_seed
logger.info(f"Set random seed to {self.config.random_seed} for reproducibility")
logger.debug(f"Generated LLM seed: {llm_seed}")
# Load initial program
self.initial_program_path = initial_program_path
self.initial_program_code = self._load_initial_program()
if not self.config.language:
self.config.language = extract_code_language(self.initial_program_code)
# Extract file extension from initial program
self.file_extension = os.path.splitext(initial_program_path)[1]
if not self.file_extension:
# Default to .py if no extension found
self.file_extension = ".py"
else:
# Make sure it starts with a dot
if not self.file_extension.startswith("."):
self.file_extension = f".{self.file_extension}"
# Set the file_suffix in config (can be overridden in YAML)
if not hasattr(self.config, "file_suffix") or self.config.file_suffix == ".py":
self.config.file_suffix = self.file_extension
# Initialize components
self.llm_ensemble = LLMEnsemble(self.config.llm.models)
self.llm_evaluator_ensemble = LLMEnsemble(self.config.llm.evaluator_models)
self.prompt_sampler = PromptSampler(self.config.prompt)
self.evaluator_prompt_sampler = PromptSampler(self.config.prompt)
self.evaluator_prompt_sampler.set_templates("evaluator_system_message")
# Pass random seed to database if specified
if self.config.random_seed is not None:
self.config.database.random_seed = self.config.random_seed
self.config.database.novelty_llm = self.llm_ensemble
self.database = ProgramDatabase(self.config.database)
self.evaluator = Evaluator(
self.config.evaluator,
evaluation_file,
self.llm_evaluator_ensemble,
self.evaluator_prompt_sampler,
database=self.database,
suffix=Path(self.initial_program_path).suffix,
)
self.evaluation_file = evaluation_file
logger.info(f"Initialized OpenEvolve with {initial_program_path}")
# Initialize evolution tracer
if self.config.evolution_trace.enabled:
trace_output_path = self.config.evolution_trace.output_path
if not trace_output_path:
# Default to output_dir/evolution_trace.{format}
trace_output_path = os.path.join(
self.output_dir, f"evolution_trace.{self.config.evolution_trace.format}"
)
self.evolution_tracer = EvolutionTracer(
output_path=trace_output_path,
format=self.config.evolution_trace.format,
include_code=self.config.evolution_trace.include_code,
include_prompts=self.config.evolution_trace.include_prompts,
enabled=True,
buffer_size=self.config.evolution_trace.buffer_size,
compress=self.config.evolution_trace.compress,
)
logger.info(f"Evolution tracing enabled: {trace_output_path}")
else:
self.evolution_tracer = None
# Initialize improved parallel processing components
self.parallel_controller = None
def _setup_logging(self) -> None:
"""Set up logging"""
log_dir = self.config.log_dir or os.path.join(self.output_dir, "logs")
os.makedirs(log_dir, exist_ok=True)
# Set up root logger
root_logger = logging.getLogger()
root_logger.setLevel(getattr(logging, self.config.log_level))
# Add file handler
log_file = os.path.join(log_dir, f"openevolve_{time.strftime('%Y%m%d_%H%M%S')}.log")
file_handler = logging.FileHandler(log_file)
file_handler.setFormatter(
logging.Formatter("%(asctime)s - %(name)s - %(levelname)s - %(message)s")
)
root_logger.addHandler(file_handler)
# Add console handler
console_handler = logging.StreamHandler()
console_handler.setFormatter(logging.Formatter("%(asctime)s - %(levelname)s - %(message)s"))
root_logger.addHandler(console_handler)
logger.info(f"Logging to {log_file}")
def _load_initial_program(self) -> str:
"""Load the initial program from file"""
with open(self.initial_program_path, "r") as f:
return f.read()
async def run(
self,
iterations: Optional[int] = None,
target_score: Optional[float] = None,
checkpoint_path: Optional[str] = None,
) -> Optional[Program]:
"""
Run the evolution process with improved parallel processing
Args:
iterations: Maximum number of iterations (uses config if None)
target_score: Target score to reach (continues until reached if specified)
checkpoint_path: Path to resume from checkpoint
Returns:
Best program found
"""
max_iterations = iterations or self.config.max_iterations
# Determine starting iteration
start_iteration = 0
if checkpoint_path and os.path.exists(checkpoint_path):
self._load_checkpoint(checkpoint_path)
start_iteration = self.database.last_iteration + 1
logger.info(f"Resuming from checkpoint at iteration {start_iteration}")
else:
start_iteration = self.database.last_iteration
# Only add initial program if starting fresh (not resuming from checkpoint)
should_add_initial = (
start_iteration == 0
and len(self.database.programs) == 0
and not any(
p.code == self.initial_program_code for p in self.database.programs.values()
)
)
if should_add_initial:
logger.info("Adding initial program to database")
initial_program_id = str(uuid.uuid4())
# Evaluate the initial program
initial_metrics = await self.evaluator.evaluate_program(
self.initial_program_code, initial_program_id
)
initial_program = Program(
id=initial_program_id,
code=self.initial_program_code,
language=self.config.language,
metrics=initial_metrics,
iteration_found=start_iteration,
)
self.database.add(initial_program)
# Check if combined_score is present in the metrics
if "combined_score" not in initial_metrics:
# Calculate average of numeric metrics
numeric_metrics = [
v
for v in initial_metrics.values()
if isinstance(v, (int, float)) and not isinstance(v, bool)
]
if numeric_metrics:
avg_score = sum(numeric_metrics) / len(numeric_metrics)
logger.warning(
f"⚠️ No 'combined_score' metric found in evaluation results. "
f"Using average of all numeric metrics ({avg_score:.4f}) for evolution guidance. "
f"For better evolution results, please modify your evaluator to return a 'combined_score' "
f"metric that properly weights different aspects of program performance."
)
else:
logger.info(
f"Skipping initial program addition (resuming from iteration {start_iteration} "
f"with {len(self.database.programs)} existing programs)"
)
# Initialize improved parallel processing
try:
self.parallel_controller = ProcessParallelController(
self.config,
self.evaluation_file,
self.database,
self.evolution_tracer,
file_suffix=self.config.file_suffix,
)
# Set up signal handlers for graceful shutdown
def signal_handler(signum, frame):
logger.info(f"Received signal {signum}, initiating graceful shutdown...")
self.parallel_controller.request_shutdown()
# Set up a secondary handler for immediate exit if user presses Ctrl+C again
def force_exit_handler(signum, frame):
logger.info("Force exit requested - terminating immediately")
import sys
sys.exit(0)
signal.signal(signal.SIGINT, force_exit_handler)
signal.signal(signal.SIGINT, signal_handler)
signal.signal(signal.SIGTERM, signal_handler)
self.parallel_controller.start()
# When starting from iteration 0, we've already done the initial program evaluation
# So we need to adjust the start_iteration for the actual evolution
evolution_start = start_iteration
evolution_iterations = max_iterations
# If we just added the initial program at iteration 0, start evolution from iteration 1
if should_add_initial and start_iteration == 0:
evolution_start = 1
# User expects max_iterations evolutionary iterations AFTER the initial program
# So we don't need to reduce evolution_iterations
# Run evolution with improved parallel processing and checkpoint callback
await self._run_evolution_with_checkpoints(
evolution_start, evolution_iterations, target_score
)
finally:
# Clean up parallel processing resources
if self.parallel_controller:
self.parallel_controller.stop()
self.parallel_controller = None
# Close evolution tracer
if self.evolution_tracer:
self.evolution_tracer.close()
logger.info("Evolution tracer closed")
# Get the best program
best_program = None
if self.database.best_program_id:
best_program = self.database.get(self.database.best_program_id)
logger.info(f"Using tracked best program: {self.database.best_program_id}")
if best_program is None:
best_program = self.database.get_best_program()
logger.info("Using calculated best program (tracked program not found)")
if best_program:
if (
hasattr(self, "parallel_controller")
and self.parallel_controller
and self.parallel_controller.early_stopping_triggered
):
logger.info(
f"🛑 Evolution complete via early stopping. Best program has metrics: "
f"{format_metrics_safe(best_program.metrics)}"
)
else:
logger.info(
f"Evolution complete. Best program has metrics: "
f"{format_metrics_safe(best_program.metrics)}"
)
self._save_best_program(best_program)
return best_program
else:
logger.warning("No valid programs found during evolution")
return None
def _log_iteration(
self,
iteration: int,
parent: Program,
child: Program,
elapsed_time: float,
) -> None:
"""
Log iteration progress
Args:
iteration: Iteration number
parent: Parent program
child: Child program
elapsed_time: Elapsed time in seconds
"""
# Calculate improvement using safe formatting
improvement_str = format_improvement_safe(parent.metrics, child.metrics)
logger.info(
f"Iteration {iteration+1}: Child {child.id} from parent {parent.id} "
f"in {elapsed_time:.2f}s. Metrics: "
f"{format_metrics_safe(child.metrics)} "
f"(Δ: {improvement_str})"
)
def _save_checkpoint(self, iteration: int) -> None:
"""
Save a checkpoint
Args:
iteration: Current iteration number
"""
checkpoint_dir = os.path.join(self.output_dir, "checkpoints")
os.makedirs(checkpoint_dir, exist_ok=True)
# Create specific checkpoint directory
checkpoint_path = os.path.join(checkpoint_dir, f"checkpoint_{iteration}")
os.makedirs(checkpoint_path, exist_ok=True)
# Save the database
self.database.save(checkpoint_path, iteration)
# Save the best program found so far
best_program = None
if self.database.best_program_id:
best_program = self.database.get(self.database.best_program_id)
else:
best_program = self.database.get_best_program()
if best_program:
# Save the best program at this checkpoint
best_program_path = os.path.join(checkpoint_path, f"best_program{self.file_extension}")
with open(best_program_path, "w") as f:
f.write(best_program.code)
# Save metrics
best_program_info_path = os.path.join(checkpoint_path, "best_program_info.json")
with open(best_program_info_path, "w") as f:
import json
json.dump(
{
"id": best_program.id,
"generation": best_program.generation,
"iteration": best_program.iteration_found,
"current_iteration": iteration,
"metrics": best_program.metrics,
"language": best_program.language,
"timestamp": best_program.timestamp,
"saved_at": time.time(),
},
f,
indent=2,
)
logger.info(
f"Saved best program at checkpoint {iteration} with metrics: "
f"{format_metrics_safe(best_program.metrics)}"
)
logger.info(f"Saved checkpoint at iteration {iteration} to {checkpoint_path}")
def _load_checkpoint(self, checkpoint_path: str) -> None:
"""Load state from a checkpoint directory"""
if not os.path.exists(checkpoint_path):
raise FileNotFoundError(f"Checkpoint directory {checkpoint_path} not found")
logger.info(f"Loading checkpoint from {checkpoint_path}")
self.database.load(checkpoint_path)
logger.info(f"Checkpoint loaded successfully (iteration {self.database.last_iteration})")
async def _run_evolution_with_checkpoints(
self, start_iteration: int, max_iterations: int, target_score: Optional[float]
) -> None:
"""Run evolution with checkpoint saving support"""
logger.info(f"Using island-based evolution with {self.config.database.num_islands} islands")
self.database.log_island_status()
# Run the evolution process with checkpoint callback
await self.parallel_controller.run_evolution(
start_iteration, max_iterations, target_score, checkpoint_callback=self._save_checkpoint
)
# Check if shutdown or early stopping was triggered
if self.parallel_controller.shutdown_event.is_set():
logger.info("Evolution stopped due to shutdown request")
return
elif self.parallel_controller.early_stopping_triggered:
logger.info("Evolution stopped due to early stopping - saving final checkpoint")
# Continue to save final checkpoint for early stopping
# Save final checkpoint if needed
# Note: start_iteration here is the evolution start (1 for fresh start, not 0)
# max_iterations is the number of evolution iterations to run
final_iteration = start_iteration + max_iterations - 1
if final_iteration > 0 and final_iteration % self.config.checkpoint_interval == 0:
self._save_checkpoint(final_iteration)
def _save_best_program(self, program: Optional[Program] = None) -> None:
"""
Save the best program
Args:
program: Best program (if None, uses the tracked best program)
"""
# If no program is provided, use the tracked best program from the database
if program is None:
if self.database.best_program_id:
program = self.database.get(self.database.best_program_id)
else:
# Fallback to calculating best program if no tracked best program
program = self.database.get_best_program()
if not program:
logger.warning("No best program found to save")
return
best_dir = os.path.join(self.output_dir, "best")
os.makedirs(best_dir, exist_ok=True)
# Use the extension from the initial program file
filename = f"best_program{self.file_extension}"
code_path = os.path.join(best_dir, filename)
with open(code_path, "w") as f:
f.write(program.code)
# Save complete program info including metrics
info_path = os.path.join(best_dir, "best_program_info.json")
with open(info_path, "w") as f:
import json
json.dump(
{
"id": program.id,
"generation": program.generation,
"iteration": program.iteration_found,
"timestamp": program.timestamp,
"parent_id": program.parent_id,
"metrics": program.metrics,
"language": program.language,
"saved_at": time.time(),
},
f,
indent=2,
)
logger.info(f"Saved best program to {code_path} with program info to {info_path}")
|