Skip to content

Commit b776978

Browse files
committed
update
1 parent 899dc7f commit b776978

File tree

6 files changed

+25
-17
lines changed

6 files changed

+25
-17
lines changed

doc/_static/css/custom.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
div.docutils.container.index-features {
2-
width: 300px;
2+
width: 450px;
33
}
44

55
div.docutils.container.index-box {

doc/getting_started.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
Getting started
44
===============
55

6+
``skore`` UI
7+
------------
8+
69
.. currentmodule:: skore
710

811
From your shell, initialize a skore project, here named ``project.skore``, that

doc/index.rst

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,25 @@
44
Welcome to ``skore``
55
====================
66

7-
#OwnYourDataScience
8-
-------------------
9-
107
.. container:: index-features
118

12-
* track and visualize your objects from a user-friendly dashboard
9+
* ``skore`` UI: track and visualize your objects from a user-friendly dashboard
10+
11+
* ``skore`` machine learning programming assistant: enhancing ``scikit-learn`` classes and functions
1312

14-
* scikit-learn compatible
13+
#OwnYourDataScience
14+
-------------------
1515

16-
With ``skore``, data scientists can:
16+
With the ``skore`` UI, data scientists can:
1717

1818
#. Store objects of different types from their Python code: python lists, ``scikit-learn`` fitted pipelines, ``plotly`` figures, and more.
1919
#. **Track** and **visualize** these stored objects on a user-friendly dashboard.
2020
#. Export the dashboard to a HTML file.
2121

22+
With the ``skore`` machine learning programming assistant, data scientists can:
23+
24+
* Use an enhanced version of ``sklearn.model_selection.cross_validate`` with ``skore.cross_validate``.
25+
2226
These are only the first features: skore is a work in progress and aims to be
2327
an end-to-end library for data scientists.
2428
Stay tuned!

doc/sg_execution_times.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
Computation times
88
=================
9-
**00:00.000** total execution time for 2 files **from all galleries**:
9+
**00:00.769** total execution time for 2 files **from all galleries**:
1010

1111
.. container::
1212

@@ -32,9 +32,9 @@ Computation times
3232
* - Example
3333
- Time
3434
- Mem (MB)
35-
* - :ref:`sphx_glr_auto_examples_plot_1_getting_started.py` (``../examples/plot_1_getting_started.py``)
36-
- 00:00.000
35+
* - :ref:`sphx_glr_auto_examples_plot_02_basic_usage.py` (``../examples/plot_02_basic_usage.py``)
36+
- 00:00.632
3737
- 0.0
38-
* - :ref:`sphx_glr_auto_examples_plot_2_basic_usage.py` (``../examples/plot_2_basic_usage.py``)
39-
- 00:00.000
38+
* - :ref:`sphx_glr_auto_examples_plot_01_getting_started.py` (``../examples/plot_01_getting_started.py``)
39+
- 00:00.136
4040
- 0.0

examples/plot_1_getting_started.py renamed to examples/plot_01_getting_started.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,17 @@
55
66
This example builds on top of the :ref:`getting_started` guide.
77
8-
This guide provides a quick start to ``skore``, an open-source package that aims to enable data scientists to:
8+
``skore`` UI
9+
------------
10+
11+
This section provides a quick start to the ``skore`` UI, an open-source package that aims to enable data scientists to:
912
1013
#. Store objects of different types from their Python code: python lists, ``scikit-learn`` fitted pipelines, ``plotly`` figures, and more.
1114
#. Track and visualize these stored objects on a user-friendly dashboard.
1215
#. Export the dashboard to a HTML file.
1316
14-
1517
Initialize a Project and launch the UI
16-
--------------------------------------
18+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1719
1820
From your shell, initialize a skore project, here named ``project``, that will be
1921
in your current working directory:
@@ -35,7 +37,6 @@
3537
3638
Now that the project file exists, we can load it in our notebook so that we can
3739
read from and write to it:
38-
3940
"""
4041

4142
# %%
@@ -110,7 +111,7 @@
110111
# project.put("my_fitted_pipeline", my_pipeline)
111112
#
112113
# Back to the dashboard
113-
# ---------------------
114+
# ^^^^^^^^^^^^^^^^^^^^^
114115
#
115116
# #. On the top left, create a new ``View``.
116117
# #. From the ``Elements`` section on the bottom left, you can add stored items to this view, either by double-cliking on them or by doing drag-and-drop.
File renamed without changes.

0 commit comments

Comments
 (0)