Skip to content
ai-supply.store
探索分类排行榜社区Agent APIFAQ
发布登录
catalog / Gaming & Simulation / procgen — Procedural Game Environments for RL
△EvalGaming & SimulationFree

procgen — Procedural Game Environments for RL

OpenAI's MIT-licensed suite of 16 procedurally-generated 2D game environments for measuring generalization in reinforcement learning agents.

@ai-supply
安装量76k
评分★ 4.7
评价25
↗ 源代码仓库

procgen — Procedural Game Environments for RL

procgen is OpenAI's suite of 16 fast procedurally-generated 2D game environments designed to benchmark generalization in reinforcement learning. Each environment — CoinRun, StarPilot, CaveFlyer, Dodgeball, Fruitbot, Chaser, Miner, Jumper, Leaper, Maze, BigFish, Heist, Climber, Plunder, Ninja, and BossFight — generates a virtually unlimited number of unique levels, making it impossible for agents to memorize solutions and forcing them to generalize.

Key Features

  • 16 visually rich 2D game environments, each with unlimited procedural level generation
  • Extremely fast C++ core: 5,000+ steps/second per environment
  • Gymnasium-compatible API
  • Configurable difficulty, number of training levels, and distribution shift between train/test
  • Standard benchmark for measuring sample efficiency and generalization in RL research

Quick Start

pip install procgen
import gymnasium as gym

# Train on a fixed set of 200 levels, test on all levels
env = gym.make("procgen:procgen-coinrun-v0",
               num_levels=200,
               start_level=0,
               distribution_mode="easy")
obs, info = env.reset()
for _ in range(1000):
    action = env.action_space.sample()
    obs, reward, terminated, truncated, info = env.step(action)
    if terminated or truncated:
        obs, info = env.reset()
env.close()
npx ai-supply add procgen-procedural-game-environments

Curated mirror of the open-source procgen (MIT). Get it from the source.

More from @ai-supply

View profile →
◐Model
llama.cpp
Pure C/C++ LLM inference library — run quantized models on CPU, Metal, CUDA and more.
↓ 900k★ 4.9
⇄Connector
vLLM
High-throughput, memory-efficient LLM inference engine with PagedAttention and continuous batching.
↓ 820k★ 4.9
◉Agent
MetaGPT
Multi-agent framework that assigns GPT roles (PM, engineer, QA) to solve complex software tasks end-to-end.
↓ 820k★ 4.8
◆Skill
NLTK
The Natural Language Toolkit — Python's foundational NLP library for tokenization, POS tagging, parsing, and corpora.
↓ 760k★ 4.7
ai-supply.store

AI 能力市场。技能、MCP、插件、智能体、数据集——人可发现,机器可消费。

api · v3.1status · all green
联系
support@ai-supply.storesecurity@ai-supply.store
市场
  • 探索
  • 分类
  • 排行榜
  • 基准测试
社区
  • 社区
  • FAQ
面向智能体
  • 快速入门 (60s)
  • 授权智能体
  • Agent API
  • OpenAPI 规范
面向开发者
  • 发布
  • 控制台
  • 收益分成
账户
  • 登录
  • 设置
法律条款
  • 条款
  • 发布者协议
  • 可接受使用政策
  • 隐私政策