From ac0f0c15e69b430ec29e2ca17cf1f8fbe244998d Mon Sep 17 00:00:00 2001 From: Sebastian Raschka Date: Sat, 3 Aug 2019 00:13:39 +0200 Subject: [PATCH] fix mnist iris mixup (#572) --- docs/sources/user_guide/data/loadlocal_mnist.ipynb | 6 +++--- mlxtend/__init__.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/sources/user_guide/data/loadlocal_mnist.ipynb b/docs/sources/user_guide/data/loadlocal_mnist.ipynb index 1fb2ec01f..fec85b051 100644 --- a/docs/sources/user_guide/data/loadlocal_mnist.ipynb +++ b/docs/sources/user_guide/data/loadlocal_mnist.ipynb @@ -50,7 +50,7 @@ "- Number of samples: 50000 images\n", "\n", "\n", - "- Target variable (discrete): {50x Setosa, 50x Versicolor, 50x Virginica}\n" + "- Target variable (discrete): Uniformly distributed class labels 0-9 corresponding to the respective handwritten digit shown in the image.\n" ] }, { @@ -302,7 +302,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.4" + "version": "3.7.1" }, "toc": { "nav_menu": {}, @@ -318,5 +318,5 @@ } }, "nbformat": 4, - "nbformat_minor": 1 + "nbformat_minor": 2 } diff --git a/mlxtend/__init__.py b/mlxtend/__init__.py index 1c7bdb451..66195f60a 100644 --- a/mlxtend/__init__.py +++ b/mlxtend/__init__.py @@ -4,4 +4,4 @@ # # License: BSD 3 clause -__version__ = '0.17.0' +__version__ = '0.18.0dev0'