From 39f19237de809bf2f4a1306569f6b5aedaf37a1a Mon Sep 17 00:00:00 2001 From: trent-b <34728837+trent-b@users.noreply.github.com> Date: Sun, 3 Oct 2021 14:55:17 -0400 Subject: [PATCH 1/3] Update README.md removed information about conda installation --- README.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/README.md b/README.md index 95840d1..6eac53c 100644 --- a/README.md +++ b/README.md @@ -20,11 +20,6 @@ iterative-stratification is currently available on the PyPi repository and can b ``` pip install iterative-stratification ``` -\ -The package is also installable from the Anaconda Cloud platform: -``` -conda install -c trent-b iterative-stratification -``` ## Toy Examples The multilabel cross validators that this package provides may be used with the scikit-learn API in the same manner as any other cross validators. For example, these cross validators may be passed to [cross_val_score](http://scikit-learn.org/stable/modules/generated/sklearn.model_selection.cross_val_score.html) or [cross_val_predict](http://scikit-learn.org/stable/modules/generated/sklearn.model_selection.cross_val_predict.html). Below are some toy examples of the direct use of the multilabel cross validators. From 7164dd5b824db1b88a5b4744afe4b38f7140d1fe Mon Sep 17 00:00:00 2001 From: Jonathon Belotti Date: Wed, 10 Nov 2021 20:33:11 +1100 Subject: [PATCH 2/3] Update listed version to latest tag and release --- iterstrat/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iterstrat/__init__.py b/iterstrat/__init__.py index fffddac..6975832 100644 --- a/iterstrat/__init__.py +++ b/iterstrat/__init__.py @@ -9,7 +9,7 @@ MultilabelRepeatedStratifiedKFold, and MultilabelStratifiedShuffleSplit. """ -__version__ = '0.1.6' +__version__ = '0.1.7' # list all submodules available in iterstrat and version __all__ = ['ml_stratifiers', '__version__'] From 6847b843ade9d1890050956bcbff08769da31768 Mon Sep 17 00:00:00 2001 From: Igor Kuivjogi Fernandes <47466755+igorkf@users.noreply.github.com> Date: Tue, 31 May 2022 13:57:03 -0300 Subject: [PATCH 3/3] Add Python syntax highlighting in Markdown chunks --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6eac53c..dd37e25 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ pip install iterative-stratification The multilabel cross validators that this package provides may be used with the scikit-learn API in the same manner as any other cross validators. For example, these cross validators may be passed to [cross_val_score](http://scikit-learn.org/stable/modules/generated/sklearn.model_selection.cross_val_score.html) or [cross_val_predict](http://scikit-learn.org/stable/modules/generated/sklearn.model_selection.cross_val_predict.html). Below are some toy examples of the direct use of the multilabel cross validators. ### MultilabelStratifiedKFold -``` +```python from iterstrat.ml_stratifiers import MultilabelStratifiedKFold import numpy as np @@ -45,7 +45,7 @@ TRAIN: [0 3 4 6] TEST: [1 2 5 7] TRAIN: [1 2 5 7] TEST: [0 3 4 6] ``` ### RepeatedMultilabelStratifiedKFold -``` +```python from iterstrat.ml_stratifiers import RepeatedMultilabelStratifiedKFold import numpy as np @@ -67,7 +67,7 @@ TRAIN: [0 1 4 5] TEST: [2 3 6 7] TRAIN: [2 3 6 7] TEST: [0 1 4 5] ``` ### MultilabelStratifiedShuffleSplit -``` +```python from iterstrat.ml_stratifiers import MultilabelStratifiedShuffleSplit import numpy as np