TimeNet¶
TimeNet is a Python library and CLI for registering, fetching, and exploring time-series datasets in a shared format called TimeF. It gives every dataset one on-disk shape and one way to load it, so a consumer reads ECGs, accelerometer traces, and market series through the same API.
Scope
TimeNet is not a modeling toolkit. Training, inference, model definitions, and evaluation metrics are out of scope. It stops at handing you the data.
How it fits together¶
A connector turns a raw source into a manifest plus parquet and publishes it to a registry. The client reads the manifest from the registry and loads the data. The client never runs connector code.
BaseConnectoris the only contract a new data source must satisfy.TimeFDatasetis the in-memory model a connector populates duringconvert().TimeFWriterserializes a populatedTimeFDatasetto disk.TimeFReaderreads a TimeF version directory back into aTimeFDataset.
Where next¶
- Get started: install TimeNet and load your first dataset.
- Architecture: how the packages, registries, and curation flow fit together.
- Datasets: the datasets already curated into the registry.