-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a84fbdb
commit fff8f9b
Showing
15 changed files
with
95 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
.. _auto_examples: | ||
|
||
Examples | ||
======== | ||
User guide | ||
========== | ||
|
||
Below is a gallery of narrated notebook examples on how and why to use skore. | ||
They also serve as our user guide. | ||
They serve as our user guide. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
Getting started | ||
--------------- | ||
|
||
We recommend first having a look at this example that serves as an overall and gentle | ||
introduction to skore. | ||
We recommend first having a look at the :ref:`example_quick_start` page. Then, the :ref:`example_skore_product_tour` provides an overall and gentle introduction to skore. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
""" | ||
.. _example_quick_start: | ||
=========== | ||
Quick start | ||
=========== | ||
""" | ||
|
||
# %% | ||
import skore | ||
|
||
my_project = skore.create("quick_start", overwrite=True) | ||
|
||
# %% | ||
from sklearn.datasets import load_iris | ||
from sklearn.svm import SVC | ||
|
||
X, y = load_iris(return_X_y=True) | ||
clf = SVC(kernel="linear", C=1, random_state=0) | ||
|
||
reporter = skore.CrossValidationReporter(clf, X, y, cv=5) | ||
|
||
# Store the results in the project | ||
my_project.put("cv_reporter", reporter) | ||
|
||
# Display the result in your notebook | ||
reporter.plots.scores | ||
|
||
# %% | ||
# .. code-block:: bash | ||
# | ||
# $ skore launch "my_project" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
examples/diagnose/README.txt → examples/model_evaluation/README.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Diagnose | ||
-------- | ||
Model evaluation | ||
---------------- | ||
|
||
These examples illustrate how skore can help data scientists to improve their | ||
machine learning modelling thanks to diagnostics. |
6 changes: 3 additions & 3 deletions
6
examples/diagnose/plot_cross_validate.py → ...s/model_evaluation/plot_cross_validate.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
examples/diagnose/plot_train_test_split.py → ...model_evaluation/plot_train_test_split.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,39 +5,16 @@ | |
|
||
<div class="row row-padding-main-container"> | ||
<div class="logo-container"> | ||
<img src="https://media.githubusercontent.com/media/probabl-ai/skore/main/sphinx/_static/images/[email protected]" class="logo only-light" alt="skore - Home"/> | ||
<img src="https://media.githubusercontent.com/media/probabl-ai/skore/main/sphinx/_static/images/[email protected]" class="logo only-dark pst-js-only" alt="skore - Home"/> | ||
<img src="https://media.githubusercontent.com/media/probabl-ai/skore/main/sphinx/_static/images/[email protected]" class="logo-landing only-light" alt="skore - Home"/> | ||
<img src="https://media.githubusercontent.com/media/probabl-ai/skore/main/sphinx/_static/images/[email protected]" class="logo-landing only-dark pst-js-only" alt="skore - Home"/> | ||
</div> | ||
<h1 class="hero-title">The scikit-learn Modeling Companion</h1> | ||
<p class="hero-description">Elevate ML Development with Tracking and Built-in Recommended Practices</p> | ||
</div> | ||
|
||
**** | ||
|
||
.. image:: https://img.shields.io/pypi/l/skore | ||
:alt: license | ||
|
||
.. image:: https://img.shields.io/badge/python-3.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-blue?style=flat&logo=python | ||
:alt: python | ||
|
||
.. image:: https://static.pepy.tech/badge/skore/month | ||
:alt: downloads | ||
:target: https://pepy.tech/projects/skore | ||
|
||
.. image:: https://img.shields.io/pypi/v/skore | ||
:alt: pypi | ||
:target: https://pypi.org/project/skore/ | ||
|
||
.. image:: https://github.com/probabl-ai/skore/actions/workflows/ci.yml/badge.svg?event=push | ||
:alt: ci | ||
|
||
.. image:: https://img.shields.io/badge/Discord-%235865F2.svg?logo=discord&logoColor=white | ||
:alt: Discord | ||
:target: https://discord.probabl.ai/ | ||
|
||
.. admonition:: Where to start? | ||
|
||
See our :ref:`example_getting_started` example! | ||
See our :ref:`example_quick_start` page! | ||
|
||
Why skore? | ||
---------- | ||
|
@@ -52,8 +29,6 @@ updates and new features are on the way as we work toward our vision of becoming | |
comprehensive library for data scientists, supporting every phase of the machine | ||
learning lifecycle. | ||
|
||
⭐ Support us with a star and spread the word - it means a lot! ⭐ | ||
|
||
Key features | ||
------------ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters