diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2017-12-13 10:55:03 -0500 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2017-12-13 10:55:03 -0500 |
| commit | c775dec4d9a082874e60397b05c3ddb5f5292b28 (patch) | |
| tree | 9e3b032f1f976573e5800781bcc042998188b245 /gensvm | |
| parent | added license (diff) | |
| download | pygensvm-c775dec4d9a082874e60397b05c3ddb5f5292b28.tar.gz pygensvm-c775dec4d9a082874e60397b05c3ddb5f5292b28.zip | |
Add encoding to all files
Diffstat (limited to 'gensvm')
| -rw-r--r-- | gensvm/__init__.py | 4 | ||||
| -rw-r--r-- | gensvm/sklearn_util.py | 2 | ||||
| -rw-r--r-- | gensvm/util.py | 2 |
3 files changed, 7 insertions, 1 deletions
diff --git a/gensvm/__init__.py b/gensvm/__init__.py index 8fe253b..3ac96ee 100644 --- a/gensvm/__init__.py +++ b/gensvm/__init__.py @@ -1,4 +1,6 @@ -__version__ = '0.1.0' +# -*- coding: utf-8 -*- + +__version__ = '0.1.4' from .core import GenSVM from .gridsearch import GenSVMGridSearchCV diff --git a/gensvm/sklearn_util.py b/gensvm/sklearn_util.py index 9c46e0e..0829bf6 100644 --- a/gensvm/sklearn_util.py +++ b/gensvm/sklearn_util.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + """Functions in GenSVM that are taken from Scikit-Learn The GenSVM Python package is designed to work in the same way as Scikit-Learn diff --git a/gensvm/util.py b/gensvm/util.py index 1e79d75..8d2a3e4 100644 --- a/gensvm/util.py +++ b/gensvm/util.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + """ Utility functions for GenSVM |
