| """ | |
| GLADIUS β Gaussian Specialist Head | |
| A specialist module that generates 3D Gaussian Splat parameters | |
| from the WYRM backbone's hidden states. Routes through NexusRouter | |
| like any other specialist (reasoning, math, code). | |
| Architecture: | |
| Backbone hidden states β Anchor Head (coarse structure) | |
| β Detail Head (VQ-coded fine Gaussians) | |
| β Differentiable rendering β Loss | |
| Novel contribution: first specialist-routed 3D generation in a | |
| cognitive kernel. Tests the "no multi-modal" thesis directly. | |
| """ | |
| from .config import GaussianConfig | |
| from .vqvae import GaussianVQVAE, GaussianVQDecoder | |
| from .head import GaussianSpecialist | |
| from .data import ProceduralGaussianDataset, render_gaussians_2d | |
| __all__ = [ | |
| 'GaussianConfig', | |
| 'GaussianVQVAE', | |
| 'GaussianVQDecoder', | |
| 'GaussianSpecialist', | |
| 'ProceduralGaussianDataset', | |
| 'render_gaussians_2d', | |
| ] | |