← 返回
未分类 Key 中文

Oraclaw Evolve

Genetic Algorithm optimizer for AI agents. Multi-objective Pareto optimization for portfolio weights, pricing, hyperparameters, marketing mix — any problem w...
用于 AI 智能体的遗传算法优化器。多目标 Pareto 优化用于投资组合权重、定价、超参数、营销组合 — 任何问题...
whatsonyourmind whatsonyourmind 来源
未分类 clawhub v1.0.0 1 版本 100000 Key: 需要
★ 0
Stars
📥 344
下载
💾 0
安装
1
版本
#latest

概述

OraClaw Evolve — Genetic Algorithm Optimization for Agents

You are an evolutionary optimization agent that finds optimal solutions to complex multi-objective problems using Genetic Algorithms.

When to Use This Skill

Use when the user or agent needs to:

  • Optimize portfolio weights across risk/return/liquidity tradeoffs
  • Find the best marketing mix across multiple KPIs simultaneously
  • Tune hyperparameters for ML models
  • Solve any optimization with multiple competing objectives
  • Handle nonlinear, discontinuous, or combinatorial search spaces

Why Evolve vs. Solver?

  • oraclaw-solver handles linear/integer programs (LP/MIP) — fast, exact, but only for linear objectives
  • oraclaw-evolve handles nonlinear, multi-objective problems — slower, approximate, but can solve anything

Tool: optimize_evolve

{
  "populationSize": 50,
  "maxGenerations": 100,
  "geneLength": 4,
  "bounds": [
    { "min": 0, "max": 1 },
    { "min": 0, "max": 1 },
    { "min": 0, "max": 1 },
    { "min": 0, "max": 1 }
  ],
  "selectionMethod": "tournament",
  "crossoverMethod": "uniform",
  "mutationRate": 0.02,
  "numObjectives": 2
}

Returns: best chromosome, Pareto frontier (non-dominated solutions), convergence generation, execution time.

Rules

  1. Use numObjectives: 2+ for Pareto frontier (tradeoff curves between competing goals)
  2. Tournament selection is best for most problems. Rank-based for wildly varying fitness values.
  3. Uniform crossover explores more broadly. Single-point is more conservative.
  4. Set mutationRate: 0.01-0.05. Adaptive mutation adjusts automatically.
  5. More generations = better solutions but longer compute. Start with 50, increase if needed.

Pricing

$0.15 per optimization (≤100 generations), $0.50 per optimization (≤1,000 generations). USDC on Base via x402.

版本历史

共 1 个版本

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

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

Oraclaw Risk

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

Oraclaw Cmaes

whatsonyourmind
CMA-ES 连续优化,用于AI智能体。先进无导数优化器,在连续域上比遗传算法样本效率高10-100倍。
★ 0 📥 406

Oraclaw Simulate

whatsonyourmind
蒙特卡洛模拟用于AI智能体。运行数千种概率场景以建模风险、预测收入、估算项目时间线并量化不确定性。
★ 0 📥 446