The full lifecycle of a model in Continuum. Each stage feeds the next. This is the master issue that ties the factory, academy, and sentinel systems together.
1. FORGE (Factory)
Input: base model + recipe
Output: forged model (pruned, trained, published)
2. EVALUATE (Factory + HF Leaderboards)
Input: forged model
Output: benchmark scores, leaderboard position
Submit to HF leaderboards automatically after forge
3. DEPLOY (Grid)
Input: forged model + adapters
Output: running inference on grid nodes
Genome paging loads/unloads adapters on demand
4. LEARN (Academy)
Input: deployed model + curriculum
Output: LoRA adapters, skill improvements
Continuous training while deployed
5. RE-FORGE (Factory)
Input: deployed model + learned adapters + usage data
Output: improved base model
Fold learned adapters back into base weights
6. ORCHESTRATE (Sentinel)
Input: pipeline definition
Output: automated execution of any pipeline stage
Sentinels can trigger forge, evaluate, deploy, learn cycles
Summary
The full lifecycle of a model in Continuum. Each stage feeds the next. This is the master issue that ties the factory, academy, and sentinel systems together.
The Pipeline
What Exists
What's Missing
Related Issues