Duarte Folgado
Duarte Folgado
The `fft_mean_coefficient`feature should be renamed to `spectrogram_mean_coefficient` for enhanced accuracy. In the process, I also considered improving the documentation and reducing the default number of frequency bins calculated. The default...
The Datasets module has convenience methods to load datasets. It's main purpose is for testing and supporting the package documentation.
Following the introduction of the Dataset module (https://github.com/fraunhoferportugal/tsfel/pull/156), the sections of the main example Notebook concerning data retrieval and preprocessing should be improved accordingly.
Following the introduction of the Dataset module (#156), the documentation will be improved accordingly to enhance code readability and clarity.
Following several feedback from users, we would like to improve the documentation of the several input dtypes and dimensions supported by TSFEL. It will help to clarify how the input...
We're planning to replace Google Colab with Binder to host our notebooks with example code.
The current implementation of the auc feature applies the absolute value after summing consecutive samples: `np.sum(0.5 * np.diff(t) * np.abs(np.array(signal[:-1]) + np.array(signal[1:])))` This effectively computes (abs(y_i + y_{i+1}) / 2)...