Skip to content

Commit 7c24b39

Browse files
committed
Fix incorrect argument name in batch_norm_in_place doc comment
1 parent c10cf5a commit 7c24b39

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ops/norm.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ fn normalize_each_channel<'a>(
177177
}
178178
}
179179

180-
/// Perform in-place batch normalization on the `NC*` tensor `out`.
180+
/// Perform in-place batch normalization on an `NC*` tensor.
181181
///
182182
/// See <https://github.com/onnx/onnx/blob/main/docs/Operators.md#batchnormalization>.
183183
pub fn batch_norm_in_place(
@@ -206,7 +206,7 @@ pub fn batch_norm_in_place(
206206
Ok(())
207207
}
208208

209-
/// Perform batch normalization on the `NC*` tensor `input`.
209+
/// Perform batch normalization on an `NC*` tensor.
210210
///
211211
/// See <https://github.com/onnx/onnx/blob/main/docs/Operators.md#batchnormalization>.
212212
pub fn batch_norm(

0 commit comments

Comments
 (0)