---
title: "channelNorm(epsilon:)"
framework: accelerate
role: symbol
role_heading: Instance Method
path: "accelerate/bnnsgraph/builder/tensor/channelnorm(epsilon:)"
---

# channelNorm(epsilon:)

Adds a channel normalization operation to the current graph.

## Declaration

```swift
func channelNorm(epsilon: Float = .ulpOfOne.squareRoot()) -> BNNSGraph.Builder.Tensor<T>
```

## Parameters

- `epsilon`: The epsilon value that the function uses to avoid division by zero.

## Discussion

Discussion This function performs channel normalization of self.self must be at least three-dimensional.
