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/default/Best-of-N (attempt-counted)

default/best_of_n_attempts

Best-of-N (attempt-counted)

Best-of-N that rotates the parent every N attempts — failed/invalid tries spend the budget too.

Test-time searchApache-2.0
Scaffold cardFiles and versions
best_of_n_attempts/config.yaml
14 lines · 890 ByamlDownload
# Best-of-N-Attempts — Best-of-N with an attempt-counted budget.
# Identical to best_of_n except the parent rotates every N *attempts* (valid or not), not every
# N valid children. Sections mirror the six core components.
seed: 0
general:
  max_iterations: 100
  inner_retry_times: 3     # SkyDiscover retries up to 3 propose+evaluate attempts per iteration (retry_times)
# population (BestOfNPopulation) is uncapped keep-all by default (SkyDiscover enforces no cap);
# set population.capacity to an int only if you need to bound the archive.
selection_policy:          # BestOfNAttemptsPolicy
  best_of_n: 5            # reuse the same parent for N consecutive attempts before switching to best
  num_inspirations: 4     # context programs sampled from the top pool
proposer:
  max_tokens: 32000        # SkyDiscover LLMConfig.max_tokens (applies only to a model built from this preset)