Benchmark Datasets¶
Pre-configured DataLoader factories for identibench benchmark datasets.
create_dls_downl ¶
create_dls_downl(u: list[str], y: list[str], dataset: Path | str | None = None, download_function=None, **kwargs) -> DataLoaders
Create DataLoaders, downloading the dataset first if needed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
u
|
list[str]
|
list of input signal names |
required |
y
|
list[str]
|
list of output signal names |
required |
dataset
|
Path | str | None
|
path to the dataset directory |
None
|
download_function
|
callable that downloads the dataset to a given path |
None
|
Source code in tsfast/tsdata/benchmark.py
create_dls_from_spec ¶
Create DataLoaders from an identibench benchmark specification.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
spec
|
BenchmarkSpecBase
|
benchmark specification from identibench |
required |