| |
|
|
| |
| llm: |
| primary_model: "gpt-4.1-nano" |
| |
| temperature: 0.7 |
| max_tokens: 2048 |
|
|
| |
| evolution: |
| max_iterations: 500 |
| population_size: 50 |
| mutation_rate: 0.15 |
| crossover_rate: 0.8 |
| selection_strategy: "tournament" |
| tournament_size: 5 |
|
|
| |
| database: |
| population_size: 100 |
| num_islands: 3 |
| migration_rate: 0.1 |
|
|
| |
| evaluation: |
| timeout_seconds: 120 |
| max_retries: 3 |
| parallel_evaluations: 4 |
|
|
| |
| checkpoints: |
| enabled: true |
| interval: 10 |
| keep_best: true |
| save_all_programs: false |
|
|
| |
| early_stopping_patience: 50 |
| convergence_threshold: 0.001 |
| early_stopping_metric: "speedup" |
|
|
| |
| optimization: |
| target_metric: "speedup" |
| target_value: 1.32 |
| minimize: false |
|
|
| |
| logging: |
| level: "INFO" |
| save_logs: true |
| verbose: true |
|
|