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/public_cloud/ai_machine_learning/training_tuto_01_train_your_first_model/guide.en-gb.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ At the end of this tutorial, you will have learned to master **OVHcloud AI Train
21
21
We will show you how you can:
22
22
23
23
-**Upload your data** to the OVHcloud Object Storage.
24
-
-**Launch your training job and attach your data to its environment**, so your model can access to your data.
24
+
-**Launch your training job and attach your data to its environment**, so your model can access your data.
25
25
-**Monitor** the progress of your job.
26
26
-**Download your model** in the cloud in order to retrieve it, once trained.
27
27
@@ -66,9 +66,9 @@ Once your object container is created, you will see it in the Object Storage lis
66
66
67
67
> [!primary]
68
68
>
69
-
> Using the manager to upload your data can be very long. We recommend to use the OVHcloud AI CLI.
69
+
> Using the manager to upload your data can be very long. We recommend using the OVHcloud AI CLI.
70
70
>
71
-
> In the OVHcloud Control Panel, you can upload files but not folders. For instance, you can upload a `.zip` file to optimize the bandwidth, then unzip it in your code. But if your dataset is already split in several folders, you must use the AI CLI to upload them.
71
+
> In the OVHcloud Control Panel, you can upload files but not folders. For instance, you can upload a `.zip` file to optimize the bandwidth, then unzip it in your code. But if your dataset is already split into several folders, you must use the AI CLI to upload them.
72
72
>
73
73
74
74
#### 1.2 - Upload your data via CLI
@@ -124,10 +124,10 @@ Then, in the `Enter the Docker command` step, you can specify the command that a
124
124
125
125
- Example:
126
126
127
-
Assuming you have added your `main.py` file and your `requirements.txt` file to a container that you have linked to your job with `my_data` as your mount directory, you can then use:
127
+
Assuming you have added your `train-first-model.py` file and your `requirements.txt` file to a container that you have linked to your job with `/workspace/my_data` as your mount directory, you can then use:
@@ -172,12 +172,12 @@ Depending on your needs, you can select the `permission_mode` you want (Read-Onl
172
172
173
173
Otherwise, you can remove the --volume line, since it will not bring anything to your app.
174
174
175
-
To give you a real example, here is the command we will use to launch our job, assuming this time that our `dataset.zip` is contained in a `fashion_MNIST_dataset` container, with a `mount_directory` named `my_data`, and that our Python file and our `requirements.txt` file are in the `ovh/ai-training-examples` GitHub repository:
175
+
To give you a real example, here is the command we will use to launch our job, assuming this time that our `my-dataset.zip` is contained in a `fashion_MNIST_dataset` container, with a `mount_directory` named `/workspace/my_data`, and that our Python file and our `requirements.txt` file are in the `ovh/ai-training-examples` GitHub repository:
0 commit comments