27 lines
906 B
Python
27 lines
906 B
Python
"""AutoLoRA continuous improvement loop — sovereignty engine for Timmy.
|
|
|
|
Implements the weekly retrain cycle:
|
|
Work → Record trajectories → Export weekly → Filter quality
|
|
→ LoRA fine-tune → Load adapter → Model improves → Repeat
|
|
|
|
Epic: #1091 — Project Bannerlord
|
|
Pipeline: AutoLoRA Sovereignty Loop (Step 6 of 7)
|
|
Refs: #1105
|
|
"""
|
|
|
|
from timmy_automations.retrain.quality_filter import QualityFilter, TrajectoryQuality
|
|
from timmy_automations.retrain.retrain import RetrainOrchestrator, RetrainResult
|
|
from timmy_automations.retrain.training_dataset import TrainingDataset
|
|
from timmy_automations.retrain.training_log import TrainingLog
|
|
from timmy_automations.retrain.trajectory_exporter import TrajectoryExporter
|
|
|
|
__all__ = [
|
|
"QualityFilter",
|
|
"RetrainOrchestrator",
|
|
"RetrainResult",
|
|
"TrainingDataset",
|
|
"TrainingLog",
|
|
"TrajectoryExporter",
|
|
"TrajectoryQuality",
|
|
]
|