Skip to content

Commit

Permalink
Release version 0.5.5
Browse files Browse the repository at this point in the history
Added:

  - The ``predict`` method was optimized. Now it is 10x to 200x faster!
    This improvement also has a positive impact on other methods that
    use `predict` such as `grid_search` (37202d8).

  - A new `get_ngrams_length` method was added to ``SS3`` class. It can
    be used to get the length of longest learned n-gram (b4f8827).

  - The Evaluation 3D Plot's GUI was improved (1bb1e5a).

Fixed:

  - Some bugs and error were fixed (bc5c4ed, 0d3d7e1, 86a0189, b0b3eaa,
    5dbdc3a)
  • Loading branch information
sergioburdisso committed Mar 2, 2020
1 parent 572a459 commit 709501c
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

All notable changes to PySS3 will be documented here.


## [0.5.5] 2020-03-02

### Added

- The ``predict`` method was optimized. Now it is 10x to 200x faster! This improvement also has a positive impact on other methods that use ``predict`` such as ``grid_search`` ([37202d8](https://github.com/sergioburdisso/pyss3/commit/37202d8)).
- A new `get_ngrams_length` method was added to ``SS3`` class. It can be used to get the length of longest learned n-gram ([b4f8827](https://github.com/sergioburdisso/pyss3/commit/b4f8827)).
- The Evaluation 3D Plot's GUI was improved ([1bb1e5a](https://github.com/sergioburdisso/pyss3/commit/1bb1e5a)).

### Fixed

- Some bugs and error were fixed ([bc5c4ed](https://github.com/sergioburdisso/pyss3/commit/bc5c4ed), [0d3d7e1](https://github.com/sergioburdisso/pyss3/commit/0d3d7e1), [86a0189](https://github.com/sergioburdisso/pyss3/commit/86a0189), [b0b3eaa](https://github.com/sergioburdisso/pyss3/commit/b0b3eaa), [5dbdc3a](https://github.com/sergioburdisso/pyss3/commit/5dbdc3a))


## [0.5.0] 2020-02-24

### Added
Expand Down
16 changes: 16 additions & 0 deletions docs/about/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ Change Log
All notable changes to PySS3 will be documented here.


[0.5.5] 2020-03-02
==================

Added
-----

- The ``predict`` method was optimized. Now it is 10x to 200x faster! This improvement also has a positive impact on other methods that use ``predict`` such as ``grid_search`` (`37202d8 <https://github.com/sergioburdisso/pyss3/commit/37202d8>`__).
- A new `get_ngrams_length` method was added to ``SS3`` class. It can be used to get the length of longest learned n-gram (`b4f8827 <https://github.com/sergioburdisso/pyss3/commit/b4f8827>`__).
- The Evaluation 3D Plot's GUI was improved (`1bb1e5a <https://github.com/sergioburdisso/pyss3/commit/1bb1e5a>`__).

Fixed
-----

- Some bugs and error were fixed (`bc5c4ed <https://github.com/sergioburdisso/pyss3/commit/bc5c4ed>`__, `0d3d7e1 <https://github.com/sergioburdisso/pyss3/commit/0d3d7e1>`__, `86a0189 <https://github.com/sergioburdisso/pyss3/commit/86a0189>`__, `b0b3eaa <https://github.com/sergioburdisso/pyss3/commit/b0b3eaa>`__, `5dbdc3a <https://github.com/sergioburdisso/pyss3/commit/5dbdc3a>`__)


[0.5.0] 2020-02-24
==================

Expand Down
2 changes: 1 addition & 1 deletion pyss3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from functools import reduce
from six.moves import xrange

__version__ = "0.5.4"
__version__ = "0.5.5"

ENCODING = "utf-8"

Expand Down

0 comments on commit 709501c

Please sign in to comment.