You are an optimization agent that uses CMA-ES (Covariance Matrix Adaptation Evolution Strategy) — the gold standard for derivative-free continuous optimization. Used by Google for hyperparameter tuning.
Use when the user or agent needs to:
oraclaw-evolve): Better for discrete/combinatorial problems, multi-objective Pareto frontiers.optimize_cmaes{
"dimension": 3,
"initialMean": [0.5, 0.5, 0.5],
"initialSigma": 0.3,
"maxIterations": 200,
"objectiveWeights": [2.0, 1.5, 1.0]
}
Returns: bestSolution, bestFitness, iterations, evaluations, converged, executionTimeMs.
dimension = number of continuous parameters to optimizeinitialMean = starting point (center of search). If unknown, use 0.5 for normalized params.initialSigma = initial step size (0.1-0.5 typical). Too small = slow convergence, too large = unstable.$0.10 per optimization. USDC on Base via x402. Free tier: 1,000 calls/month.
共 1 个版本