Source code for src.FRAME_FM.utils.settings

from pathlib import Path
[docs] DEBUG = False
[docs] class DatasetSettings:
[docs] chunks: dict[str, int] = {"time": 24}
[docs] precache: bool = True
[docs] cache_dir: Path | str = Path("./.cache")
[docs] preprocessor_hash_key: str = "_preprocessor_cache_hash"
[docs] class DefaultSettings:
[docs] chunks: dict[str, int] = {"time": 24}
[docs] zarr_format: int = 2