MarkTechPost AIAI Agent

Skyfall AI 推出 MORPHEUS:一個讓持續強化學習在結構性非平穩環境中成為必要的持久性企業模擬基準

2026年7月13日 22:37

重點摘要

大多數強化學習基準在每次回合後會重置世界,但真實營運從不重置。Skyfall AI 的 MORPHEUS 正是為填補此缺口而設計,它是一個專為持續強化學習(CRL)打造的持久性企業模擬平臺。MORPHEUS 基於「大世界假說」(Javed & Sutton, 2024),該假設認為世界的複雜度超越任何智能體的表示能力,因此即使動態固定,環境仍呈現非平穩性。為強制進行持續學習,MORPHEUS 需具備三項特性:持久性、非平穩性與營運複雜度。持久性指過往決策會累積影響未來動態;非平穩性指任何固定策略最終都會變為次佳;營運複雜度則指不存在固定的最佳策略。

站內 AI 整理稿

Most reinforcement learning benchmarks reset the world after every episode.Real operations never reset.Skyfall AI’s MORPHEUS targets that gap.It is a persistent enterprise simulation platform for continual reinforcement learning (CRL).What is MORPHEUS?

MORPHEUS is grounded in the Big World Hypothesis (Javed & Sutton, 2024).It says the world’s complexity exceeds any agent’s representational capacity.As a result, the environment looks non-stationary even under fixed dynamics.

To force continual learning, MORPHEUS requires three properties: persistence, non-stationarity, and operational complexity.Persistence means past decisions compound into future dynamics.Non-stationarity means any fixed policy eventually becomes suboptimal.

Operational complexity means no fixed optimal policy exists.Each environment is a self-contained TypeScript world plugin.It exports Operational Descriptors (ODs), a simulation scheduler, seed data, and documentation.An OD defines the step-by-step execution plan for a capability.

Agents act through a capability API, and each call triggers an OD execution.How the Platform Works?Building on that architecture, non-stationarity comes from two engines.First, a failure injection engine inserts typed disruptions between OD steps.

It draws from eleven failure types, including missing_data, dependency_failure, and rate_limit.It runs at four preset rates: light (5%), realistic (8%), moderate (15%), and aggressive (30%).Second, an asynchronous configuration shift controller changes failure presets and demand at fixed timestamps.

It runs independently of the training loop, so shifts never align with gradient updates.This stops the agent from using update periodicity as a proxy clock.Alongside these engines, reward comes from three operational verifiers logged natively by the platform.

These are failure event signals, financial ledger status, and resource throughput.The composite reward combines them.Default weights are w_f = 0.5 and w_l = w_p = 0.25.Copy CodeCopiedUse a different Browser# Composite reward — MORPHEUS, Appendix C (default weights).

def clip(x, lo, hi): return max(lo, min(hi, x)) def composite_reward(tickets, actual_cost, planned_cost, units, capacity, w_f=0.5, w_l=0.25, w_p=0.

25): r_f = -sum(t["severity"] for t in tickets) # failure event signal r_l = clip(1 - actual_cost / planned_cost, -1, 1) # financial ledger r_p = clip(units / capacity, 0, 1) # resource throughput return w_f * r_f + w_l * r_l + w_p * r_p Under the upper-bound assumptions (zero failures, minimum cost, full throughput), the bound per configuration equals 0.

50.Policy Initialisation Because the action space is large, pure RL from scratch is impractical.Therefore MORPHEUS uses a two-stage pipeline.A frontier model (Gemini 3.1 pro) collects trajectories using the ReAct framework.These traces then fine-tune Qwen3-14B via supervised fine-tuning (SFT).

Consequently, every RL run starts from this shared SFT checkpoint.This isolates continual learning behaviour from basic operational competence.All baselines then use PPO as the base optimizer for online post-training.

The Six-Metric Evaluation Protocol With training defined, cumulative reward alone is not enough.A scalar sum hides performance across a non-stationary horizon.So the research team propose six metrics instead.

These are per-configuration reward, adaptation speed, forgetting, recovery time, stability, and performance gap.Among these, adaptation speed is the headline metric.It counts steps until the running-average reward reaches half the upper bound.

Two supplementary diagnostics also track relative adaptation advantage (RAA) and plasticity via effective rank.Baseline Results Using this protocol, the research team tests four algorithm families from the shared SFT checkpoint.Two tasks are defined.

Task 1 is dynamic resource allocation under structured drift.Task 2 is scheduling under drift with delayed effects.

FamilyMechanismOutbound Task 1Outbound Task 2Inbound Task 2PPONo CL mechanismFailure baselineAdapts only earlyBaseline rewardHERHindsight replayMid rewardBest rewardBest reward, top rankEWCWeight consolidationBest rewardBest adaptationWeakest rewardLCMLatent context modelFastest adaptationNo advantageBest adaptation Across these results, no single family dominates.

On process-outbound Task 1, EWC leads reward and LCM adapts fastest.On Task 2, HER leads reward while LCM loses its edge under delayed reward.Meanwhile, mean performance gaps sit near 1.0 for every method.That signals a large settled-state deficit, not a minor tuning gap.

Notably, PPO and HER generally adapt only in the first configuration.They then fail to adapt in later regimes, even without label signals.Use Cases with Examples In practice, MORPHEUS suits several reader roles.For AI engineers, it tests whether an agent detects regime shifts without labels.

For example, demand switches from low to bursty, and the policy must adapt with no signal.For data scientists, it stresses delayed credit assignment.For example, On-Time In-Full (OTIF) delivery is observable only days after the dispatch decision.

For software engineers, the TypeScript plugin format allows swapping rewards or toggling observability without changing dynamics.Strengths and Weaknesses Strengths: Persistent worlds with no resets, matching deployed enterprise systems.

Parameterisable, reproducible regime shifts for fair cross-algorithm comparison.Rewards from native operational verifiers, needing no external annotation.Open-sourced evaluation code (Skyfall-Research/morpheus-evals).Weaknesses: Only two of five environments are evaluated so far.

The upper bound assumes zero failures, so it stays optimistic.Shifts are externally triggered, not driven by compounding decisions.Reward weights are research variables, not validated industry objectives.

Key Takeaways MORPHEUS runs persistent enterprise worlds that never reset, unlike episodic RL benchmarks.It ships five environments; two are evaluated here: process-outbound and process-inbound.

A six-metric protocol scores per-configuration reward, adaptation, forgetting, recovery, stability, and gap-to-upper-bound.Four baselines (PPO, HER, EWC, LCM) all sit far below the theoretical upper bound.No single algorithm wins; reward and adaptation speed pick different winners.

Check out the Paper and Project Page.Also, feel free to follow us on Twitter and don’t forget to join our 150k+ML SubReddit and Subscribe to our Newsletter.Wait!are you on telegram?now you can join us on telegram as well.

Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.?

Connect with us The post Skyfall AI Releases MORPHEUS: A Persistent Enterprise Simulation Benchmark That Makes Continual Reinforcement Learning Necessary Under Structured Non-Stationarity appeared first on MarkTechPost.

Related

相關文章

當 human in the loop 變成“閉著眼睛點確認”,企業Agent 安全還能靠誰?

專家指出,AI Agent 從內容安全轉向行為安全,提示詞注入、工具濫用與過度授權成為主要風險。企業應建立可視、可管、可追溯的安全基線,並對工具權限進行最小化與臨時化管理,避免 human in the loop 淪為形式。安全防護需從靜態入口轉向動態行為約束,以因應 Agent 自主執行帶來的全新挑戰。

剛剛

開源Agent框架刷爆ARC-AGI-3,「自我改進」的RLM harness引爭議

一套開源Agent框架在ARC-AGI-3基準測試中創下超過85%的正確率,大幅領先其他解決方案,其核心是名為「RLM harness」的自我改進機制。然而,該方法引發學術爭議,部分研究者批評它透過反覆試錯「鑽漏洞」,不符合ARC-AGI評測一次性推理的精神。這場討論促使AI社群重新審視評測標準,並可能影響未來ARC-AGI版本的設計方向。

剛剛
TechWebAI Agent

ChinaJoy 2026 AI遊戲規模化落地,邊緣雲與API安全重構產業底層邏輯

2026年ChinaJoy展館,“與AI同遊”的主題隨處可見。行業調查顯示,僅有21%的企業擁有完整的API資產清單,大量後臺AI接口仍在無人監控的狀態下裸奔。合規與安全也同步下沉。算力下沉還不夠,API安全必須同步前移邊緣雲解決了體驗問題,但AI交互入口的安全,同樣需要前置到邊緣。算力與安全,缺一不可Akamai的判斷很明確:遊戲AI轉型不能割裂算力與安全。這也是遊戲廠商規模化落地AI智能體、構建AI原生遊戲的標準化底層方案。

3 小時前
量子位AI Agent

螞蟻集團開源Avernet,讓人與智能體像組織一樣高效協作

**螞蟻集團開源Avernet:打造人與智能體高效協作的“組織級”基礎設施** **來源:量子位** **2026-08-07 11:08:51** 近日,螞蟻集團正式宣佈開源多智能體協作基礎設施Avernet,其社區版本已同步上線。作為業界首個聚焦於“組織級協作”的智能體基礎設施,Avernet的首個版本重點開放了智能體協作網絡能力,旨在支持不同智能體之間的發現、共識達成、跨團隊協作與治理,為人工智能從“單點智能”走向“系統智能”提供關鍵支撐。

9 小時前