> ## Documentation Index
> Fetch the complete documentation index at: https://kumo.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# normalization

#### `normalization: <list[layer_norm | batch_norm | None]>` (Optional)

## Description

The normalization layer to apply. Possible values are `batch_norm`, `layer_norm` or `None` to skip normalization.

### Supported Task Types

* All

### Example

<CodeGroup>
  ```yaml Field theme={null}
  normalization: [layer_norm]
  ```
</CodeGroup>

### Default Values

| [run\_mode](/run-mode) | Default Value  |
| ---------------------- | -------------- |
| FAST                   | `[layer_norm]` |
| NORMAL                 | `[layer_norm]` |
| BEST                   | `[layer_norm]` |
