Skip to content

Commit

Permalink
Merge pull request #494 from eroell/doc/tsdb-load
Browse files Browse the repository at this point in the history
Update tsdb.load_dataset to tsdb.load in doc of load_specific_dataset
  • Loading branch information
WenjieDu authored Aug 15, 2024
2 parents f5ab63e + 3465e9f commit a6b515e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pypots/data/load_specific_datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def list_supported_datasets() -> list:

def load_specific_dataset(dataset_name: str, use_cache: bool = True) -> dict:
"""Load specific datasets supported by PyPOTS.
Different from tsdb.load_dataset(), which only produces merely raw data,
Different from tsdb.load(), which only produces merely raw data,
load_specific_dataset here does some preprocessing operations,
like truncating time series to generate samples with the same length.
Expand All @@ -45,7 +45,7 @@ def load_specific_dataset(dataset_name: str, use_cache: bool = True) -> dict:
The name of the dataset to be loaded, which should be supported, i.e. in SUPPORTED_DATASETS.
use_cache :
Whether to use cache. This is an argument of tsdb.load_dataset().
Whether to use cache. This is an argument of tsdb.load().
Returns
-------
Expand Down

0 comments on commit a6b515e

Please sign in to comment.