# restart training

The `restart training` command restarts a specific run of a training experiment. For deep learning experiments, the experiment will restart from the last epoch when it was stopped. For machine learning experiments, the experiment will restart from the beginning.

## Syntax

{% code overflow="wrap" %}

```
restart training <model name>,<run id>
```

{% endcode %}

## Parameters

| Parameter      | Description                          |
| -------------- | ------------------------------------ |
| `<model name>` | The name of the ML model             |
| `<run id>`     | The specific training run identifier |

## Example

```
restart training trip_2_dl_model,1
```
