galapagos
DocsHubLeaderboardPlaygroundNews
galapagos

six blocks · any task ·
better solutions emerge.

Platform

  • Hub
  • Leaderboard
  • Playground

Resources

  • Docs
  • API reference
  • Card spec

Community

  • GitHub
  • Contribute

Updates

  • News
  • Releases

© 2026 Galapagos. Licensed under Apache-2.0.

Build your own scaffold.

Hub/Scaffolds/SkyDiscover/AdaEvolve

SkyDiscover/adaevolve

AdaEvolve

Hierarchical adaptive search: G-signal exploration intensity, UCB island allocation, and LLM meta-guidance on stagnation.

Test-time searchApache-2.0
Scaffold cardFiles and versions
adaevolve/evaluator.py
12 lines · 582 BpythonDownload
"""AdaEvolve Evaluator component — supplied by the TASK.

In Galapagos the Evaluator comes from the task (``task.evaluator``), not the scaffold; AdaEvolve
uses the task's SubprocessEvaluator. Re-exported so the scaffold directory carries one module per
component. The upstream eval-failure gate (validity 0/-1 / zero-score-with-error children are
never added) lives in :class:`~galapagos.scaffolds.adaevolve.population.AdaEvolveArchipelago`.
"""
from __future__ import annotations

from ...components.evaluator import SubprocessEvaluator

AdaEvolveEvaluator = SubprocessEvaluator