----------------------------------------------------------------------------------------
Added
~~~~~
- Add database reader class ``SPH`` for the SPH database in
``torch_ecg.databases.other_databases``.
- Add ``dataclass`` ``DataBaseInfo`` for storing information of a
database. It has attributes ``title``, ``about``, ``note``,
``usage``, ``issues``, ``reference``, etc., and has a method
``format_database_docstring`` for formatting the docstring of a
database reader class. The generated docstring can be assigned to
corresponding database reader class via the ``add_docstring``
decorator (in ``torch_ecg.utils.misc``).
- Add default cache directory ``~/.cache/torch_ecg`` for storing
downloaded data files, model weight files, etc.
- Add helper function ``is_compressed_file`` for checking if a file is
compressed in ``torch_ecg.utils.download``.