Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Readme.rst
Original file line number Diff line number Diff line change
Expand Up @@ -182,12 +182,12 @@ Visualize performance metrics with `sklift.viz <https://www.uplift-modeling.com
plot_qini_curve(
y_test, uplift_slearner, trmnt_test,
perfect=True, name='Slearner', ax=ax
);
)

plot_qini_curve(
y_test, uplift_revert, trmnt_test,
perfect=False, name='Revert label', ax=ax
);
)

.. image:: docs/_static/images/quick_start_qini.png
:width: 514px
Expand Down
8 changes: 4 additions & 4 deletions docs/quick_start.rst
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,12 @@ Visualize performance metrics with `sklift.viz <https://www.uplift-modeling.com
plot_qini_curve(
y_test, uplift_slearner, trmnt_test,
perfect=True, name='Slearner', ax=ax
);
)

plot_qini_curve(
y_test, uplift_revert, trmnt_test,
perfect=False, name='Revert label', ax=ax
);
)

.. image:: _static/images/quick_start_qini.png
:alt: Example of some models qini curves, perfect qini curve and random qini curve
Expand All @@ -113,12 +113,12 @@ Visualize performance metrics with `sklift.viz <https://www.uplift-modeling.com
plot_uplift_curve(
y_test, uplift_slearner, trmnt_test,
perfect=True, name='Slearner', ax=ax
);
)

plot_uplift_curve(
y_test, uplift_revert, trmnt_test,
perfect=False, name='Revert label', ax=ax
);
)

.. image:: _static/images/quick_start_uplift.png
:alt: Example of some uplift curves, perfect uplift curve and random uplift curve
Expand Down
Loading