diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-03-07 11:46:52 -0500 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-03-07 11:46:52 -0500 |
| commit | 516340398e639c46828163fef5c809369437adbe (patch) | |
| tree | 1013e14cc5c40217365a70e24a4c26ef0ecbb6e1 | |
| parent | remove printed warning (diff) | |
| download | pygensvm-516340398e639c46828163fef5c809369437adbe.tar.gz pygensvm-516340398e639c46828163fef5c809369437adbe.zip | |
bump version
| -rw-r--r-- | CHANGELOG.rst | 13 | ||||
| -rw-r--r-- | gensvm/__init__.py | 2 |
2 files changed, 14 insertions, 1 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst index aeaf650..a71f03f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,19 @@ Change Log ---------- +Version 0.2.0 +^^^^^^^^^^^^^ + +- Add support for interrupting training and retreiving partial results +- Allow specification of sample weights in GenSVM.fit() +- Extract per-split durations from grid search results +- Add pre-defined parameter grids 'tiny', 'small', and 'full' +- Add code for prediction with kernels +- Add unit tests +- Change default coef in poly kernel to 1.0 for inhomogeneous kernel +- Minor bugfixes, documentation improvement, and code cleanup +- Add continuous integration through Travis-CI. + Version 0.1.6 ^^^^^^^^^^^^^ diff --git a/gensvm/__init__.py b/gensvm/__init__.py index 430b929..0f58e68 100644 --- a/gensvm/__init__.py +++ b/gensvm/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -__version__ = "0.1.7" +__version__ = "0.2.0" from .core import GenSVM from .gridsearch import GenSVMGridSearchCV |
