from pathlib import Path
[docs]
class DatasetSettings:
[docs]
chunks: dict[str, int] = {"time": 24}
[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}