← 返回
未分类 Key 中文

Oraclaw Cmaes

CMA-ES continuous optimization for AI agents. State-of-the-art derivative-free optimizer. 10-100x more sample-efficient than genetic algorithms on continuous...
CMA-ES 连续优化,用于AI智能体。先进无导数优化器,在连续域上比遗传算法样本效率高10-100倍。
whatsonyourmind whatsonyourmind 来源
未分类 clawhub v1.0.0 1 版本 100000 Key: 需要
★ 0
Stars
📥 364
下载
💾 0
安装
1
版本
#latest

概述

OraClaw CMA-ES — SOTA Continuous Optimizer for Agents

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.

When to Use This Skill

Use when the user or agent needs to:

  • Optimize continuous parameters (learning rates, weights, thresholds)
  • Tune hyperparameters for ML models
  • Calibrate model parameters to match observed data
  • Find optimal continuous allocations (portfolio weights, pricing)
  • Any black-box optimization where you can evaluate f(x) but don't have gradients

Why CMA-ES vs. Genetic Algorithm?

  • CMA-ES: 10-100x more sample-efficient on smooth continuous problems. Learns the correlation structure of the search space. SOTA for continuous optimization.
  • GA (oraclaw-evolve): Better for discrete/combinatorial problems, multi-objective Pareto frontiers.
  • Use CMA-ES for continuous. Use GA for discrete.

Tool: 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.

Rules

  1. dimension = number of continuous parameters to optimize
  2. initialMean = starting point (center of search). If unknown, use 0.5 for normalized params.
  3. initialSigma = initial step size (0.1-0.5 typical). Too small = slow convergence, too large = unstable.
  4. CMA-ES MINIMIZES the objective. To maximize, negate the weights.
  5. Converges in O(dimension^2) iterations typically. Dimension 10 needs ~100-300 iterations.

Pricing

$0.10 per optimization. USDC on Base via x402. Free tier: 1,000 calls/month.

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-05-03 10:42 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

Oraclaw Risk

whatsonyourmind
面向AI代理的风险评估引擎,提供VaR、CVaR、压力测试和多因素风险评分,基于蒙特卡罗方法,专为交易代理打造。
★ 0 📥 447

Oraclaw Pathfind

whatsonyourmind
A* 路径查找与AI代理任务排序。在工作流、依赖关系和决策树中寻找最优路径。通过Yen算法实现K最短路径。
★ 0 📥 407

Oraclaw Graph

whatsonyourmind
为AI代理提供网络智能,实现PageRank、社区检测(Louvain)、关键路径和瓶颈分析,适用于任意连通图。
★ 0 📥 401