diff --git a/README.md b/README.md index 11f2854..51c5111 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,8 @@ tsdb.delete_cache(dataset_name='physionet_2012') # or you can delete all cache with delete_cached_data() to free disk space tsdb.delete_cache() -# to avoid taking up too much space if downloading many datasets, +# The default cache directory is ~/.pypots/tsdb under the user's home directory. +# To avoid taking up too much space if downloading many datasets , # TSDB cache directory can be migrated to an external disk tsdb.migrate_cache("/mnt/external_disk/TSDB_cache") ``` @@ -145,9 +146,9 @@ year={2023}, } ``` or -> Wenjie Du. (2023). +> Wenjie Du. > PyPOTS: a Python toolbox for data mining on Partially-Observed Time Series. -> arXiv, abs/2305.18811. https://arxiv.org/abs/2305.18811 +> arXiv, abs/2305.18811, 2023. diff --git a/docs/index.rst b/docs/index.rst index bc66a41..e8dce9c 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -49,7 +49,7 @@ Welcome to TSDB documentation! .. image:: https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2FWenjieDu%2FTime_Series_Database&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=Visits+since+April+2022&edge_flat=false :alt: Visit num -📣 TSDB now supports a total of 1️⃣6️⃣9️⃣ time-series datasets ‼️ +📣 TSDB now supports a total of 1️⃣7️⃣2️⃣ time-series datasets ‼️ .. image:: https://pypots.com/figs/pypots_logos/PyPOTS/logo_FFBG.svg :width: 120 @@ -100,12 +100,15 @@ or install from source code: tsdb.download_and_extract('physionet_2012', './save_it_here') # datasets you once loaded are cached, and you can check them with list_cached_data() tsdb.list_cache() - # you can delete only one specific dataset and preserve others + # you can delete only one specific dataset's pickled cache + tsdb.delete_cache(dataset_name='physionet_2012', only_pickle=True) + # you can delete only one specific dataset raw files and preserve others tsdb.delete_cache(dataset_name='physionet_2012') # or you can delete all cache with delete_cached_data() to free disk space tsdb.delete_cache() - # to avoid taking up too much space if downloading many datasets, + # The default cache directory is ~/.pypots/tsdb under the user's home directory. + # To avoid taking up too much space if downloading many datasets , # TSDB cache directory can be migrated to an external disk tsdb.migrate_cache("/mnt/external_disk/TSDB_cache") @@ -124,6 +127,8 @@ That's all. Simple and efficient. Enjoy it! 😃 `Electricity Load Diagrams `_ :cite:`trindade2015electricity` Forecasting, Imputation `Electricity Transformer Temperature (ETT) `_ :cite:`zhou2021informer` Forecasting, Imputation `Vessel AIS data `_ :cite:`grgicevic2023ais` Forecasting, Imputation, Classification + `PeMS Traffic `_ Forecasting, Imputation + `Solar Alabama `_ Forecasting, Imputation `UCR & UEA Datasets `_ (all 163 datasets) :cite:`bagnall2018uea` :cite:`dau2018ucr` Classification ========================================================================================================================================================================== ========================================== @@ -145,22 +150,18 @@ please cite it as below and 🌟star `PyPOTS repository