Skip to content

Commit

Permalink
CHANGELOG and bump to 0.1.3-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
SamStudio8 committed Aug 14, 2014
1 parent a0b2bdb commit daba402
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
History
=======

0.1.3-dev
---------

* `_test_variance` function of the `Statplexer` will now test the range of variance
magnitudes across each parameter of read in data, issuing a warning and producing
a table if a magnitude difference greater than ±1 is discovered.

0.1.2 (2014-08-12)
---------------------

Expand Down
2 changes: 1 addition & 1 deletion frontier/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = "Sam Nicholls"
__email__ = "sam@samnicholls.net"
__version__ = "0.1.2"
__version__ = "0.1.3-dev"
5 changes: 3 additions & 2 deletions frontier/frontier.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
__author__ = "Sam Nicholls <sn8@sanger.ac.uk>"
__copyright__ = "Copyright (c) Sam Nicholls"
__version__ = "0.1.2"
Expand Down Expand Up @@ -137,8 +138,8 @@ def _test_variance(self):

min_varmag = np.min(variance_magnitudes)
max_varmag = np.max(variance_magnitudes)
if max_varmag - min_varmag > 1:
print ("\n[WARN] Magnitude of variance ranges from %d to %d (difference threshold is 1)."
if max_varmag - min_varmag >= 2:
print ("\n[WARN] Magnitude of variance ranges from %d to %d (difference tolerance is ±1)."
% (min_varmag, max_varmag))
print(" Consider normalising or removing some parameters from your data.")

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

setuptools.setup(
name="frontier",
version="0.1.2",
version="0.1.3-dev",
url="https://github.com/samstudio8/frontier",

description="Provides interfaces for the reading, storage and retrieval of large machine learning data sets for use with scikit-learn",
Expand Down

0 comments on commit daba402

Please sign in to comment.