Skip to content

Commit 983a40e

Browse files
committed
fix
1 parent 0ca5b02 commit 983a40e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/user_guides/projects/jobs/notebook_job.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -174,9 +174,9 @@ The following table describes the JSON payload returned by `jobs_api.get_configu
174174
| `type` | string | Type of the job configuration | `"pythonJobConfiguration"` |
175175
| `appPath` | string | Project path to notebook (e.g `Resources/foo.ipynb`) | `null` |
176176
| `environmentName` | string | Name of the python environment | `"pandas-training-pipeline"` |
177-
| `resourceConfig.cores` | number (float) | Number of CPU cores allocated | `1.0` |
178-
| `resourceConfig.memory` | number (int) | Number of MBs allocated | `2048` |
179-
| `resourceConfig.gpus` | number (int) | Number of GPUs allocated | `0` |
177+
| `resourceConfig.cores` | number (float) | Number of CPU cores to be allocated | `1.0` |
178+
| `resourceConfig.memory` | number (int) | Number of MBs to be allocated | `2048` |
179+
| `resourceConfig.gpus` | number (int) | Number of GPUs to be allocated | `0` |
180180
| `logRedirection` | boolean | Whether logs are redirected | `true` |
181181
| `jobType` | string | Type of job | `"PYTHON"` |
182182

@@ -189,7 +189,7 @@ The following table describes the JSON payload returned by `jobs_api.get_configu
189189
The project datasets are mounted under `/hopsfs`, so you can access `data.csv` from the `Resources` dataset using `/hopsfs/Resources/data.csv` in your notebook.
190190

191191
#### Relative paths
192-
The script's working directory is the folder it is located in. For example, if it is located in the `Resources` dataset, and you have a file named `data.csv` in that dataset, you simply access it using `data.csv`. Also, if you write a local file, for example `output.txt`, it will be saved in the `Resources` dataset.
192+
The notebook's working directory is the folder it is located in. For example, if it is located in the `Resources` dataset, and you have a file named `data.csv` in that dataset, you simply access it using `data.csv`. Also, if you write a local file, for example `output.txt`, it will be saved in the `Resources` dataset.
193193

194194

195195
## API Reference

0 commit comments

Comments
 (0)