Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
- clearing outputs of the notebook
- generating py (jupytext)
- project.list_item_keys()
  • Loading branch information
sylvaincom committed Oct 9, 2024
1 parent 9270c05 commit 1d023e0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ project.put("my string", "Hello world!")
project.put("my string", "Hello again!")

# list all the keys in a project
print(project.list_keys())
print(project.list_item_keys())

# delete an item
project.delete_item("my int")
Expand Down
10 changes: 5 additions & 5 deletions examples/basic_usage.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
{
"cell_type": "code",
"execution_count": 1,
"execution_count": null,
"id": "3",
"metadata": {},
"outputs": [],
Expand Down Expand Up @@ -122,7 +122,7 @@
},
{
"cell_type": "code",
"execution_count": 3,
"execution_count": null,
"id": "9",
"metadata": {},
"outputs": [],
Expand Down Expand Up @@ -160,7 +160,7 @@
},
{
"cell_type": "code",
"execution_count": 5,
"execution_count": null,
"id": "13",
"metadata": {},
"outputs": [],
Expand Down Expand Up @@ -196,7 +196,7 @@
},
{
"cell_type": "code",
"execution_count": 7,
"execution_count": null,
"id": "17",
"metadata": {},
"outputs": [],
Expand All @@ -206,7 +206,7 @@
},
{
"cell_type": "code",
"execution_count": 8,
"execution_count": null,
"id": "18",
"metadata": {},
"outputs": [],
Expand Down
4 changes: 2 additions & 2 deletions examples/basic_usage.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@
#
# The purpose of this guide is to illustrate some of the main features that `skore` currently provides.
#
# `skore` allows data scientists to create tracking and reports from their Python code:
# `skore` allows data scientists to create tracking and visualizations from their Python code:
# 1. Users can store objects of different types (python lists and dictionaries, `numpy` arrays, `scikit-learn` fitted models, `matplotlib`, `altair`, and `plotly` figures, etc). Storing some values over time allows one to perform **tracking** and also to **visualize** them:
# 2. They can visualize these stored objects on a dashboard. The dashboard is user-friendly: objects can easily be organized.
# 3. This dashboard can be exported into a HTML file.
#
# This notebook will store some items that have been used to generated a skore report available at [this link](https://gist.github.com/augustebaum/6b21dbd7f7d5a584fbf2c1956692574e): download this HTML file and open it in your browser to visualize it.
# This notebook will store some items that have been used to generated a skore report available at [this link](https://sylvaincom.github.io/files/probabl/skore/basic_usage.html): download this HTML file and open it in your browser to visualize it.

# %% [markdown]
# ## Imports
Expand Down

0 comments on commit 1d023e0

Please sign in to comment.