-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from analysiscenter/release
New release 0.2.0
- Loading branch information
Showing
60 changed files
with
7,527 additions
and
10,653 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
*.pyc | ||
.cache/* | ||
__pycache__ | ||
__pycache__/* | ||
*/__pycache__/* | ||
.ipynb_checkpoints | ||
docs/_build/ | ||
.cache/ | ||
__pycache__/ | ||
.ipynb_checkpoints/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# Release 0.2.0 | ||
|
||
## Major Features and Improvements | ||
* `load` method now supports new signal formats: | ||
* DICOM | ||
* EDF | ||
* wav | ||
* `meta` component structure has changed - now it always contains a number of predefined keys. | ||
* Added channels processing methods: | ||
* `EcgBatch.keep_channels` | ||
* `EcgBatch.drop_channels` | ||
* `EcgBatch.rename_channels` | ||
* Added `apply_to_each_channel` method. | ||
* Added `standardize` method. | ||
* Added complex ECG transformations: | ||
* Fourier-based transformations: | ||
* `EcgBatch.fft` | ||
* `EcgBatch.ifft` | ||
* `EcgBatch.rfft` | ||
* `EcgBatch.irfft` | ||
* `EcgBatch.spectrogram` | ||
* Wavelet-based transformations: | ||
* `EcgBatch.dwt` | ||
* `EcgBatch.idwt` | ||
* `EcgBatch.wavedec` | ||
* `EcgBatch.waverec` | ||
* `EcgBatch.pdwt` | ||
* `EcgBatch.cwt` | ||
|
||
## Breaking Changes to the API | ||
* Changed signature of the following methods: | ||
* `EcgBatch.apply_transform` | ||
* `EcgBatch.show_ecg` | ||
* `EcgBatch.calc_ecg_parameters` | ||
* Changed signature of the following pipelines: | ||
* `dirichlet_train_pipeline` | ||
* `dirichlet_predict_pipeline` | ||
* `hmm_preprocessing_pipeline` | ||
* `hmm_train_pipeline` | ||
* `hmm_predict_pipeline` | ||
* `wavelet_transform` method has been deleted. | ||
* `update` method has been deleted. | ||
* `replace_labels` method has been renamed to `rename_labels`. | ||
* `slice_signal` method has been renamed to `slice_signals`. | ||
* `ravel` method has been renamed to `unstack_signals`. | ||
|
||
|
||
# Release 0.1.0 | ||
|
||
Initial release of CardIO. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
""" ECG package """ | ||
import sys | ||
""" CardIO package """ | ||
|
||
from .batch import * # pylint: disable=wildcard-import | ||
from . import dataset # pylint: disable=wildcard-import | ||
from .core import * # pylint: disable=wildcard-import | ||
|
||
|
||
__version__ = '0.1.0' | ||
__version__ = '0.2.0' |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
""" Core CardIO objects """ | ||
|
||
from .ecg_batch import EcgBatch, add_actions | ||
from .ecg_dataset import EcgDataset | ||
from . import kernels |
Oops, something went wrong.