genpark-gradient-episodic-memory-gem-projector-skill

mcp
Security Audit
Warn
Health Warn
  • No license — Repository has no license file
  • Description — Repository has a description
  • Active repo — Last push 0 days ago
  • Low visibility — Only 8 GitHub stars
Code Pass
  • Code scan — Scanned 4 files during light audit, no dangerous patterns found
Permissions Pass
  • Permissions — No dangerous permissions requested

No AI report is available for this listing yet.

SUMMARY

GenPark AI Agent Skill - Gradient Episodic Memory (GEM / A-GEM) projection engine constraining parameter updates to prevent interference with past task gradients.

README.md

GenPark Gradient Episodic Memory GEM Projector Skill

A-GEM gradient projection engine preventing negative interference and forgetting during continual task adaptation.

Learn more at GenPark and the GenPark MCP Catalog.

graph TD
    A[Current Task Gradient g] --> B{g . g_ref >= 0?}
    B -->|Yes| C[Apply Gradient Directly]
    B -->|No: Interference| D[Orthogonal Projection g_proj = g - (g.g_ref / |g_ref|^2) * g_ref]
    D --> E[g_proj . g_ref = 0: Zero Forgetting Guaranteed]

Features

  • Efficient orthogonal subspace projection.
  • Eliminates backward transfer penalty.
  • Pure Python standard library.

Reviews (0)

No results found