File size: 296 Bytes
5686f5b | 1 2 3 4 5 6 7 8 9 10 11 12 13 | """Utility namespace for data-related modules.
This package groups empirical, generation, preprocessing, and dataset
helpers so they can be imported with the ``sim_priors_pk.data`` prefix.
"""
__all__ = [
"data_empirical",
"data_generation",
"data_preprocessing",
"datasets",
]
|