Fixes broken links to resources. (#56)

This commit is contained in:
vmagelo 2021-04-13 19:00:34 +02:00 коммит произвёл GitHub
Родитель 20f5f9306e
Коммит f19e9fb84d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 12 добавлений и 12 удалений

Просмотреть файл

@ -11,7 +11,7 @@ keywords:
## Basic setup
### Connect to workspace.
### Connect to workspace
```python
from azureml.core import Workspace
@ -21,9 +21,9 @@ ws = Workspace.from_config()
The workspace object is the fundamental handle on your Azure ML assets and is used
throughout (often simply referred to by `ws`).
For more details: [Workspaces](workspace)
For more details: [Workspaces](./workspace)
### Connect to compute target.
### Connect to compute target
```python
compute_target = ws.compute_targets['<compute-target-name>']
@ -41,7 +41,7 @@ config = ScriptRunConfig(
)
```
For more details: [Compute Target](compute-targets)
For more details: [Compute Target](./compute-targets)
### Prepare Python environment
@ -69,7 +69,7 @@ config = ScriptRunConfig(
)
```
For more details: [Environment](environment)
For more details: [Environment](./environment)
## Submit code
@ -107,11 +107,11 @@ config = ScriptRunConfig(
)
```
For more details on arguments: [Command line arguments](script-run-config#command-line-arguments)
For more details on arguments: [Command line arguments](./script-run-config#command-line-arguments)
:::info
- `compute_target`: If not provided the script will run on your local machine.
- `environment`: If not provided, uses a default Python environment managed by Azure ML. See [Environment](environment) for more details.
- `environment`: If not provided, uses a default Python environment managed by Azure ML. See [Environment](./environment) for more details.
:::
#### Commands
@ -130,12 +130,12 @@ config = ScriptRunConfig(
)
```
For more details: [Commands](script-run-config#commands)
For more details: [Commands](./script-run-config#commands)
### Experiment
To submit this code, create an `Experiment`: a light-weight container that helps to
organize our submissions and keep track of code (See [Run History](run-history)).
organize our submissions and keep track of code (See [Run History](./run-history)).
```python
exp = Experiment(ws, '<experiment-name>')
@ -145,7 +145,7 @@ print(run.get_portal_url())
This link will take you to the Azure ML Studio where you can monitor your run.
For more details: [ScriptRunConfig](script-run-config)
For more details: [ScriptRunConfig](./script-run-config)
### Sample usage
@ -212,7 +212,7 @@ run = Experiment(ws, 'PyTorch model training').submit(config)
want to train on.
:::
For more details: [Distributed GPU Training](distributed-training)
For more details: [Distributed GPU Training](./distributed-training)
## Connect to data
@ -222,7 +222,7 @@ To work with data in your training scripts using your workspace `ws` and its def
datastore = ws.get_default_datastore()
dataset = Dataset.File.from_files(path=(datastore, '<path/on/datastore>'))
```
For more details see: [Data](data)
For more details see: [Data](./data)
Pass this to your training script as a command line argument.