You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/user_guides/mlops/serving/predictor.md
+30-9
Original file line number
Diff line number
Diff line change
@@ -34,15 +34,25 @@ If you have at least one model already trained and saved in the Model Registry,
34
34
35
35
Once in the deployments page, you can create a new deployment by either clicking on `New deployment` (if there are no existing deployments) or on `Create new deployment` it the top-right corner. Both options will open the deployment creation form.
36
36
37
-
### Step 2: Choose a model server
37
+
### Step 2: Choose a framework
38
38
39
-
A simplified creation form will appear, including the most common deployment fields from all available configurations. These fields include the [model server](#model-server) and [custom script](#custom-script) (for python models).
39
+
A simplified creation form will appear, including the most common deployment fields from all available configurations. The first step is to select your model to serve, which is done by first selecting the framework the model was registered as in the model registry.
40
+
41
+
For example if you registered the model as a TensorFlow model using `ModelRegistry.tensorflow.create_model(...)` you select `Tensorflow` in the dropdown.
42
+
43
+
<palign="center">
44
+
<figure>
45
+
<img src="../../../../assets/images/guides/mlops/serving/deployment_simple_form_1.png" alt="Select the model framework">
46
+
<figcaption>Select the model framework</figcaption>
47
+
</figure>
48
+
</p>
49
+
50
+
All models registered for a specific framework will be listed in the model dropdown.
40
51
41
52
<palign="center">
42
53
<figure>
43
-
<img style="float: left; width: 45%; margin-right: 12px" src="../../../../assets/images/guides/mlops/serving/deployment_simple_form_tf.png" alt="Simplified deployment creation form for TensorFlow">
44
-
<img style="width: 45%;" src="../../../../assets/images/guides/mlops/serving/deployment_simple_form_py.png" alt="Deployment simplified creation form for Python">
45
-
<figcaption>Simplified deployment creation forms for TensorFlow models (left) and Python models (right)</figcaption>
54
+
<img style="max-width: 60%; margin: 0 auto" src="../../../../assets/images/guides/mlops/serving/deployment_simple_form_2.png" alt="Select the model">
55
+
<figcaption>Select the model</figcaption>
46
56
</figure>
47
57
</p>
48
58
@@ -59,13 +69,24 @@ For python models, if you want to use your own [predictor script](#step-2-option
If you are using a predictor script click on `From project` and navigate through the file system to find it, or click on `Upload new file` to upload a predictor script now.
75
+
76
+
<palign="center">
77
+
<figure>
78
+
<img style="max-width: 80%; margin: 0 auto" src="../../../../assets/images/guides/mlops/serving/deployment_simple_form_py_pred.png" alt="Predictor script in the simplified deployment form">
79
+
<figcaption>Select a predictor script in the simplified deployment form</figcaption>
80
+
</figure>
81
+
</p>
82
+
83
+
### Step 5 (Optional): Enable KServe
63
84
64
85
Other configuration such as the serving tool, is part of the advanced options of a deployment. To navigate to the advanced creation form, click on `Advanced options`.
Copy file name to clipboardexpand all lines: docs/user_guides/projects/jobs/notebook_job.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ By default, the dialog will create a Spark job. To instead configure a Jupyter N
49
49
</figure>
50
50
</p>
51
51
52
-
### Step 4: Set the script
52
+
### Step 4: Set the notebook
53
53
54
54
Next step is to select the Jupyter Notebook to run. You can either select `From project`, if the file was previously uploaded to Hopsworks, or `Upload new file` which lets you select a file from your local filesystem as demonstrated below. By default, the job name is the same as the file name, but you can customize it as shown.
0 commit comments