----------------------------------------------------------------------------------------
Added
~~~~~
- Add decorator ``add_docstring`` for adding/modifying docstrings of functions
and classes.
- Add method ``append`` for the ``BaseOutput`` class.
- Add several metrics computation functions in ``torch_ecg/utils/utils_metrics.py``:
- ``confusion_matrix``
- ``ovr_confusion_matrix``
- ``auc``
- ``accuracy``
- ``f_measure``
- ``QRS_score``
- Add top-level module ``torch_ecg.components``.
- Add classes for metrics computation to the ``torch_ecg.components.metrics`` module.
Changed
~~~~~~~
- ``Dataset`` classes and corresponding config classes are added to the
``__init__.py`` file of the ``torch_ecg.databases.dataset`` module
so that they can be imported directly from the module.
- Logger classes, output classes, and trainer classes are moved to the new
module ``torch_ecg.components``.
- Callbacks in ``BaseTrainer`` are enhanced, allowing empty monitor, and allowing
non-positive number of checkpoints to be saved (i.e., no checkpoint is saved).