Skip to content

Commit 8c71e0b

Browse files
committed
[YOLOv7 tutorials] - fix typo
1 parent 7ab1daf commit 8c71e0b

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

pages/platform/ai/deploy_tuto_13_streamlit_yolov7/guide.en-gb.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ updated: 2023-03-31
1111

1212
## Objective
1313

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.
1515

1616
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.
1717

@@ -60,7 +60,7 @@ import io
6060
import os
6161
```
6262

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**:
6464

6565
```python
6666
@st.cache
@@ -175,7 +175,7 @@ pyyaml==6.0
175175

176176
### Write the Dockerfile for the application
177177

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:
179179

180180
```console
181181
FROM python:3.8
@@ -200,7 +200,7 @@ Define your default launching command to start the application:
200200
CMD [ "streamlit" , "run" , "/workspace/main.py", "--server.address=0.0.0.0" ]
201201
```
202202

203-
Give correct access rights to **ovhcloud user** (`42420:42420`):
203+
Give correct access rights to **OVHcloud user** (`42420:42420`):
204204

205205
```console
206206
RUN chown -R 42420:42420 /workspace
@@ -242,13 +242,13 @@ Once started, your application should be available on `http://localhost:8501`.
242242
> **Warning**
243243
> 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).
244244
245-
Find the adress of your shared registry by launching this command:
245+
Find the address of your shared registry by launching this command:
246246

247247
```console
248248
ovhai registry list
249249
```
250250

251-
Login on the shared registry with your usual openstack credentials:
251+
Log in to the shared registry with your usual OpenStack credentials:
252252

253253
```console
254254
docker login -u <user> -p <password> <shared-registry-address>

pages/platform/ai/notebook_tuto_11_yolov7/guide.en-gb.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ updated: 2023-03-10
1111

1212
## Objective
1313

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.
1515

1616
![image](images/overview-notebook.png){.thumbnail}
1717

@@ -67,7 +67,7 @@ ovhai data upload <region> asl-volov7-model
6767
6868
### Launch and access Jupyter notebook with Miniconda framework
6969

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/).
7171

7272
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/).
7373

0 commit comments

Comments
 (0)