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: pages/platform/ai/deploy_tuto_13_streamlit_yolov7/guide.en-gb.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ updated: 2023-03-31
11
11
12
12
## Objective
13
13
14
-
The purpose of this tutorial is to show how to deploy a web service to recognize **Amercian Sign Language letters** using YOLOv7 model.
14
+
The purpose of this tutorial is to show how to deploy a web service to recognize **American Sign Language letters** using YOLOv7 model.
15
15
16
16
In order to do this, you will use [Streamlit](https://streamlit.io/), a Python framework that turns scripts into a shareable web application. You will also learn how to build and use a custom Docker image for a Streamlit application.
17
17
@@ -60,7 +60,7 @@ import io
60
60
import os
61
61
```
62
62
63
-
Load the **YOLOv7** model and your own weights. Put this function it in **cache**:
63
+
Load the **YOLOv7** model and your own weights. Put this function in **cache**:
64
64
65
65
```python
66
66
@st.cache
@@ -175,7 +175,7 @@ pyyaml==6.0
175
175
176
176
### Write the Dockerfile for the application
177
177
178
-
Your Dockerfile should start with the the `FROM` instruction indicating the parent image to use. In our case we choose to start from a `python:3.8` image:
178
+
Your Dockerfile should start with the `FROM` instruction indicating the parent image to use. In our case we choose to start from a `python:3.8` image:
179
179
180
180
```console
181
181
FROM python:3.8
@@ -200,7 +200,7 @@ Define your default launching command to start the application:
Give correct access rights to **ovhcloud user** (`42420:42420`):
203
+
Give correct access rights to **OVHcloud user** (`42420:42420`):
204
204
205
205
```console
206
206
RUN chown -R 42420:42420 /workspace
@@ -242,13 +242,13 @@ Once started, your application should be available on `http://localhost:8501`.
242
242
> **Warning**
243
243
> The shared registry of AI Deploy should only be used for testing purpose. Please consider attaching your own Docker registry. More information about this can be found [here](https://docs.ovh.com/gb/en/publiccloud/ai/training/add-private-registry).
244
244
245
-
Find the adress of your shared registry by launching this command:
245
+
Find the address of your shared registry by launching this command:
246
246
247
247
```console
248
248
ovhai registry list
249
249
```
250
250
251
-
Login on the shared registry with your usual openstack credentials:
251
+
Log in to the shared registry with your usual OpenStack credentials:
Copy file name to clipboardExpand all lines: pages/platform/ai/notebook_tuto_11_yolov7/guide.en-gb.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ updated: 2023-03-10
11
11
12
12
## Objective
13
13
14
-
The purpose of this tutorial is to show how it is possible to train YOLOv7 to recognize **American Sign Language letters**. YOLOv7 is an object detection algorithm. Although closely related to image classification, object detection performs image classification on a more precise scale. Object detection locates and categories features in images.
14
+
The purpose of this tutorial is to show how it is possible to train YOLOv7 to recognize **American Sign Language letters**. YOLOv7 is an object detection algorithm. Although closely related to image classification, object detection performs image classification on a more precise scale. Object detection locates and categorizes features in images.
@@ -67,7 +67,7 @@ ovhai data upload <region> asl-volov7-model
67
67
68
68
### Launch and access Jupyter notebook with Miniconda framework
69
69
70
-
You need to attach a volume if your data is in your OVHcloud Object Storage and you want to use it during your experiment, or if you need to save the results of your work in the object storage. For more information on data, volumes and permissions, see [our guide on data](https://docs.ovh.com/gb/en/publiccloud/ai/cli/access-object-storage-data/).
70
+
You need to attach a volume if your data is in your OVHcloud Object Storage and you want to use it during your experiment, or if you need to save the results of your work in the Object Storage. For more information on data, volumes and permissions, see [our guide on data](https://docs.ovh.com/gb/en/publiccloud/ai/cli/access-object-storage-data/).
71
71
72
72
If you want to launch it from the [OVHcloud Control Panel](https://www.ovh.com/auth/?action=gotomanager&from=https://www.ovh.co.uk/&ovhSubsidiary=GB), just follow this [guide](https://docs.ovh.com/gb/en/publiccloud/ai/notebooks/definition/).
0 commit comments