Skip to content

Commit 3497ccf

Browse files
author
Guillaume Lemaitre
committed
Update the doc for pipeline
1 parent 47e3507 commit 3497ccf

File tree

4 files changed

+27
-65
lines changed

4 files changed

+27
-65
lines changed

doc/api.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,3 +89,21 @@ Classes
8989

9090
ensemble.BalanceCascade
9191
ensemble.EasyEnsemble
92+
93+
94+
.. _pipeline_ref:
95+
96+
Pipeline
97+
========
98+
99+
.. automodule:: unbalanced_dataset.pipeline
100+
:no-members:
101+
:no-inherited-members:
102+
103+
.. currentmodule:: unbalanced_dataset
104+
105+
.. autosummary::
106+
:toctree: generated/
107+
108+
pipeline.Pipeline
109+
pipeline.make_pipeline

examples/pipeline/README.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.. _pipeline_examples:
2+
3+
Pipeline examples
4+
=================
5+
6+
Example of how to use the a pipeline to include under-sampling with `scikit-learn` estimators.

examples/pipeline/plot_enn_and_renn_in_pipeline.py

Lines changed: 0 additions & 65 deletions
This file was deleted.

examples/pipeline/pipeline_classification.py renamed to examples/pipeline/plot_pipeline_classification.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
"""
2+
23
=========================
34
Pipeline Object
45
=========================
6+
57
An example of the Pipeline object working with transformers and resamplers.
8+
69
"""
710

811
print(__doc__)

0 commit comments

Comments
 (0)