diff --git a/docs/_pages/config-json.md b/docs/_pages/config-json.md index 47a759104226..049dbf3c2899 100755 --- a/docs/_pages/config-json.md +++ b/docs/_pages/config-json.md @@ -34,7 +34,7 @@ title: "DeepSpeed Configuration JSON" | Fields | Value | Example | | ------ | ------------------------------------------------------------ | ------------------------------ | -| type | The optimizer name. DeepSpeed natively supports Adam, OneBitAdam, and LAMB optimizers and will import other optimizers from [torch](https://pytorch.org/docs/stable/optim.html). | `"Adam"` | +| type | The optimizer name. DeepSpeed natively supports **Adam**, **DeepSpeedAdam**, **OneBitAdam**, and **LAMB** optimizers and will import other optimizers from [torch](https://pytorch.org/docs/stable/optim.html). | `"Adam"` | | params | Dictionary of parameters to instantiate optimizer. The parameter names must match the optimizer constructor signature (e.g., for [Adam](https://pytorch.org/docs/stable/optim.html#torch.optim.Adam)). | `{"lr": 0.001, "eps": 1e-8}` | Example of ***optimizer***