File size: 458 Bytes
fc329a3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | """Synthetic DGP registry exports.
Keep this module lightweight: real-data helpers such as pseudo-bulk generation
and NNLS deconvolution should be imported from their submodules directly so
synthetic experiments do not pay the import cost of heavy optional stacks.
"""
from .discrete_groups import DiscreteGroupsDGP
from .heavy_tail import HeavyTailDGP
from .high_k import HighKDGP
from .model_bias import ModelBiasDGP
from .pure_scale import PureScaleDGP
|