Inspecting the fold-wise predictions#

This example uses the iris dataset and performs a simple binary classification using a Support Vector Machine classifier.

We later inspect the predictions of the model for each fold.

# Authors: Federico Raimondo <f.raimondo@fz-juelich.de>
# License: AGPL

from seaborn import load_dataset

from sklearn.model_selection import RepeatedStratifiedKFold, ShuffleSplit

from julearn import run_cross_validation
from julearn.pipeline import PipelineCreator
from julearn.utils import configure_logging

Set the logging level to info to see extra information.

configure_logging(level="INFO")
2024-04-04 14:43:54,177 - julearn - INFO - ===== Lib Versions =====
2024-04-04 14:43:54,177 - julearn - INFO - numpy: 1.26.4
2024-04-04 14:43:54,177 - julearn - INFO - scipy: 1.13.0
2024-04-04 14:43:54,177 - julearn - INFO - sklearn: 1.4.1.post1
2024-04-04 14:43:54,178 - julearn - INFO - pandas: 2.1.4
2024-04-04 14:43:54,178 - julearn - INFO - julearn: 0.3.2.dev24
2024-04-04 14:43:54,178 - julearn - INFO - ========================
df_iris = load_dataset("iris")

The dataset has three kind of species. We will keep two to perform a binary classification.

df_iris = df_iris[df_iris["species"].isin(["versicolor", "virginica"])]

As features, we will use the sepal length, width and petal length. We will try to predict the species.

X = ["sepal_length", "sepal_width", "petal_length"]
y = "species"
X_types = {"continuous": X}

creator = PipelineCreator(problem_type="classification")
creator.add("zscore")
creator.add("svm")

cv = ShuffleSplit(n_splits=5, train_size=0.7, random_state=200)
cv = RepeatedStratifiedKFold(n_splits=5, n_repeats=4, random_state=200)

scores, model, inspector = run_cross_validation(
    X=X,
    y=y,
    data=df_iris,
    model=creator,
    return_inspector=True,
    cv=cv,
)

print(scores)
2024-04-04 14:43:54,180 - julearn - INFO - Adding step zscore that applies to ColumnTypes<types={'continuous'}; pattern=(?:__:type:__continuous)>
2024-04-04 14:43:54,181 - julearn - INFO - Step added
2024-04-04 14:43:54,181 - julearn - INFO - Adding step svm that applies to ColumnTypes<types={'continuous'}; pattern=(?:__:type:__continuous)>
2024-04-04 14:43:54,181 - julearn - INFO - Step added
2024-04-04 14:43:54,181 - julearn - INFO - Inspector requested: setting return_estimator='all'
2024-04-04 14:43:54,181 - julearn - INFO - ==== Input Data ====
2024-04-04 14:43:54,181 - julearn - INFO - Using dataframe as input
2024-04-04 14:43:54,181 - julearn - INFO -      Features: ['sepal_length', 'sepal_width', 'petal_length']
2024-04-04 14:43:54,181 - julearn - INFO -      Target: species
2024-04-04 14:43:54,181 - julearn - INFO -      Expanded features: ['sepal_length', 'sepal_width', 'petal_length']
2024-04-04 14:43:54,181 - julearn - INFO -      X_types:{}
2024-04-04 14:43:54,181 - julearn - WARNING - The following columns are not defined in X_types: ['sepal_length', 'sepal_width', 'petal_length']. They will be treated as continuous.
/home/runner/work/julearn/julearn/julearn/prepare.py:507: RuntimeWarning: The following columns are not defined in X_types: ['sepal_length', 'sepal_width', 'petal_length']. They will be treated as continuous.
  warn_with_log(
2024-04-04 14:43:54,182 - julearn - INFO - ====================
2024-04-04 14:43:54,182 - julearn - INFO -
2024-04-04 14:43:54,183 - julearn - INFO - = Model Parameters =
2024-04-04 14:43:54,183 - julearn - INFO - ====================
2024-04-04 14:43:54,183 - julearn - INFO -
2024-04-04 14:43:54,183 - julearn - INFO - = Data Information =
2024-04-04 14:43:54,183 - julearn - INFO -      Problem type: classification
2024-04-04 14:43:54,183 - julearn - INFO -      Number of samples: 100
2024-04-04 14:43:54,183 - julearn - INFO -      Number of features: 3
2024-04-04 14:43:54,183 - julearn - INFO - ====================
2024-04-04 14:43:54,183 - julearn - INFO -
2024-04-04 14:43:54,183 - julearn - INFO -      Number of classes: 2
2024-04-04 14:43:54,183 - julearn - INFO -      Target type: object
2024-04-04 14:43:54,184 - julearn - INFO -      Class distributions: species
versicolor    50
virginica     50
Name: count, dtype: int64
2024-04-04 14:43:54,184 - julearn - INFO - Using outer CV scheme RepeatedStratifiedKFold(n_repeats=4, n_splits=5, random_state=200)
2024-04-04 14:43:54,184 - julearn - INFO - Binary classification problem detected.
/opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/site-packages/sklearn/model_selection/_validation.py:73: FutureWarning: `fit_params` is deprecated and will be removed in version 1.6. Pass parameters via `params` instead.
  warnings.warn(
    fit_time  score_time  ... fold                          cv_mdsum
0   0.004800    0.002491  ...    0  42489ff0163b2f12752440a6b7ef74c7
1   0.004377    0.002474  ...    1  42489ff0163b2f12752440a6b7ef74c7
2   0.004404    0.002456  ...    2  42489ff0163b2f12752440a6b7ef74c7
3   0.004364    0.002412  ...    3  42489ff0163b2f12752440a6b7ef74c7
4   0.004361    0.002414  ...    4  42489ff0163b2f12752440a6b7ef74c7
5   0.004401    0.002419  ...    0  42489ff0163b2f12752440a6b7ef74c7
6   0.004401    0.002438  ...    1  42489ff0163b2f12752440a6b7ef74c7
7   0.004427    0.002440  ...    2  42489ff0163b2f12752440a6b7ef74c7
8   0.004384    0.002423  ...    3  42489ff0163b2f12752440a6b7ef74c7
9   0.004378    0.002408  ...    4  42489ff0163b2f12752440a6b7ef74c7
10  0.004386    0.002413  ...    0  42489ff0163b2f12752440a6b7ef74c7
11  0.004437    0.002438  ...    1  42489ff0163b2f12752440a6b7ef74c7
12  0.004418    0.002453  ...    2  42489ff0163b2f12752440a6b7ef74c7
13  0.004419    0.002476  ...    3  42489ff0163b2f12752440a6b7ef74c7
14  0.004422    0.002466  ...    4  42489ff0163b2f12752440a6b7ef74c7
15  0.004390    0.002464  ...    0  42489ff0163b2f12752440a6b7ef74c7
16  0.004380    0.002438  ...    1  42489ff0163b2f12752440a6b7ef74c7
17  0.004390    0.002429  ...    2  42489ff0163b2f12752440a6b7ef74c7
18  0.004434    0.002482  ...    3  42489ff0163b2f12752440a6b7ef74c7
19  0.004389    0.002454  ...    4  42489ff0163b2f12752440a6b7ef74c7

[20 rows x 9 columns]

We can now inspect the predictions of the model for each fold.

cv_predictions = inspector.folds.predict()

print(cv_predictions)
    repeat0_p0  repeat1_p0  repeat2_p0  repeat3_p0      target
0   versicolor  versicolor  versicolor  versicolor  versicolor
1   versicolor  versicolor  versicolor  versicolor  versicolor
2   versicolor  versicolor  versicolor  versicolor  versicolor
3   versicolor  versicolor  versicolor  versicolor  versicolor
4   versicolor  versicolor  versicolor  versicolor  versicolor
..         ...         ...         ...         ...         ...
95   virginica   virginica   virginica   virginica   virginica
96   virginica   virginica   virginica   virginica   virginica
97   virginica   virginica   virginica   virginica   virginica
98   virginica   virginica   virginica   virginica   virginica
99   virginica   virginica   virginica   virginica   virginica

[100 rows x 5 columns]
inspector.folds[0].model
<julearn.inspect._pipeline.PipelineInspector object at 0x7fdad3c042e0>

Total running time of the script: (0 minutes 0.237 seconds)

Gallery generated by Sphinx-Gallery