We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
batch_norm_in_place
1 parent c10cf5a commit 7c24b39Copy full SHA for 7c24b39
src/ops/norm.rs
@@ -177,7 +177,7 @@ fn normalize_each_channel<'a>(
177
}
178
179
180
-/// Perform in-place batch normalization on the `NC*` tensor `out`.
+/// Perform in-place batch normalization on an `NC*` tensor.
181
///
182
/// See <https://github.com/onnx/onnx/blob/main/docs/Operators.md#batchnormalization>.
183
pub fn batch_norm_in_place(
@@ -206,7 +206,7 @@ pub fn batch_norm_in_place(
206
Ok(())
207
208
209
-/// Perform batch normalization on the `NC*` tensor `input`.
+/// Perform batch normalization on an `NC*` tensor.
210
211
212
pub fn batch_norm(
0 commit comments