Files
nexus/wiki/concepts/元生成器-Meta-Generator.md

33 lines
1.4 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: "元生成器 (Meta-Generator)"
type: concept
tags: [ai, recursion, meta-learning, formalization]
---
## Definition
元生成器meta-generator是递归自优化系统三算子之一形式化定义为
$$M: \mathcal{G} \times \mathcal{P} \to \mathcal{G}$$
即:接收"当前生成器 $G$"和"优化后的产物 $P^*$",输出"更新后的新生成器 $G'$"。
## Core Insight
元生成器是递归自优化系统区别于普通优化方法的关键:它不是直接输出最优解,而是输出"更好的生成器"。这使得系统具备自我改进能力。
## Role in the Loop
在递归自优化循环中,元生成器承担"学习"功能:
1. 生成器 $G$ 产生输出 $P$
2. 优化器 $O$ 对 $P$ 进行评价和优化得到 $P^*$
3. 元生成器 $M$ 分析 $P^*$ 与 $G$ 的关系,输出改进后的 $G'$
## Why It Matters
- 单次优化:$O$ 产生更好的输出 $P^*$
- 递归自优化:$M$ 产生更好的生成器 $G'$,使其后续能持续产生更好的输出
## Relationship to Other Concepts
- [[递归自优化循环]]:元生成器是循环的第三步(更新)
- [[Bootstrap自举]]:元生成器的输出反过来作为输入,实现自引用
- [[生成器空间 (Generator Space)]]:元生成器的输出空间仍是 $\mathcal{G}$,是自映射 $\Phi$ 的核心组成
## Source
- [[A Formalization of Recursive Self-Optimizing Generative Systems]]