Skip to content

Commit

Permalink
revised layer_normalization.js
Browse files Browse the repository at this point in the history
  • Loading branch information
mei1127 committed Dec 8, 2023
1 parent abd89a9 commit e6b9d71
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/layer_normalization.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ export function getIndexOfSortedValue(axes) {
* Normalize the tensor values of input features using
* [layer-Normalization](https://arxiv.org/abs/1607.06450)
* @param {Tensor} input
* @param {Array} axes
* @param {MLBatchNormalizationOptions} [options]
* @param {MLLayerNormalizationOptions} [options]
* @return {Tensor}
*/
export function layerNormalization(input, {scale, bias, axes, epsilon=1e-5}) {
Expand Down

0 comments on commit e6b9d71

Please sign in to comment.