From ae858769fac09c9e76869539b1652cedf1159af7 Mon Sep 17 00:00:00 2001 From: Edwin Onuonga Date: Tue, 19 May 2020 15:39:50 +0100 Subject: [PATCH] Clean changelog entry --- CHANGELOG.md | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 385cb918..6f7444d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,20 +4,6 @@ - Fix `pomegranate` version to v0.12.0. ([#79](https://github.com/eonu/sequentia/pull/79)) - Add serialization and deserialization support for all classifiers. ([#80](https://github.com/eonu/sequentia/pull/80)) - - **Example**: For a `HMM` classifier: - - ```python - from sequentia.classifiers import HMM - - # Save the model - hmm = HMM(...) - hmm.save('model.json') - - # Load the model - hmm = HMM.load('model.json') - ``` - - `HMM`, `HMMClassifier`: Serialized in JSON format. - `KNNClassifier`: Serialized in [HDF5](https://support.hdfgroup.org/HDF5/doc/H5.intro.html) format. - Finish preprocessing documentation and tests. ([#81](https://github.com/eonu/sequentia/pull/81))