Spaces:
Runtime error
Runtime error
Benjamin Bossan
commited on
Commit
·
d8d447c
1
Parent(s):
248a59f
Small update to help
Browse files- README.md +7 -0
- gethelp.py +7 -0
- start.py +1 -1
README.md
CHANGED
|
@@ -20,6 +20,13 @@ This page aims to provide a simple interface to use the
|
|
| 20 |
[`skops`](https://skops.readthedocs.io/) model card and HF Hub creation
|
| 21 |
utilities.
|
| 22 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
## Step 1: Prepare the model repository
|
| 24 |
|
| 25 |
In this step, you do the necessary preparation work to create a [model
|
|
|
|
| 20 |
[`skops`](https://skops.readthedocs.io/) model card and HF Hub creation
|
| 21 |
utilities.
|
| 22 |
|
| 23 |
+
Below, we will explain the steps involved to create your own model repository to
|
| 24 |
+
host your scikit-learn model:
|
| 25 |
+
|
| 26 |
+
1. Prepare the model repository
|
| 27 |
+
2. Edit the model card
|
| 28 |
+
3. Create the model repository on Hugging Face Hub
|
| 29 |
+
|
| 30 |
## Step 1: Prepare the model repository
|
| 31 |
|
| 32 |
In this step, you do the necessary preparation work to create a [model
|
gethelp.py
CHANGED
|
@@ -16,6 +16,13 @@ This page aims to provide a simple interface to use the
|
|
| 16 |
[`skops`](https://skops.readthedocs.io/) model card and HF Hub creation
|
| 17 |
utilities.
|
| 18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
## Step 1: Prepare the model repository
|
| 20 |
|
| 21 |
In this step, you do the necessary preparation work to create a [model
|
|
|
|
| 16 |
[`skops`](https://skops.readthedocs.io/) model card and HF Hub creation
|
| 17 |
utilities.
|
| 18 |
|
| 19 |
+
Below, we will explain the steps involved to create your own model repository to
|
| 20 |
+
host your scikit-learn model:
|
| 21 |
+
|
| 22 |
+
1. Prepare the model repository
|
| 23 |
+
2. Edit the model card
|
| 24 |
+
3. Create the model repository on Hugging Face Hub
|
| 25 |
+
|
| 26 |
## Step 1: Prepare the model repository
|
| 27 |
|
| 28 |
In this step, you do the necessary preparation work to create a [model
|
start.py
CHANGED
|
@@ -167,7 +167,7 @@ def add_help_button():
|
|
| 167 |
st.session_state.screen.state = "help"
|
| 168 |
|
| 169 |
st.button(
|
| 170 |
-
"
|
| 171 |
on_click=fn,
|
| 172 |
help="Detailed explanation of this space",
|
| 173 |
key="get_help",
|
|
|
|
| 167 |
st.session_state.screen.state = "help"
|
| 168 |
|
| 169 |
st.button(
|
| 170 |
+
"Instructions",
|
| 171 |
on_click=fn,
|
| 172 |
help="Detailed explanation of this space",
|
| 173 |
key="get_help",
|