File size: 919 Bytes
9463e5c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
"""
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',
]