Skip to content
This repository was archived by the owner on Jul 1, 2023. It is now read-only.

Commit 5bc6e87

Browse files
authored
TensorFlow: clean up the last of the whitespace issues (#926)
This is the last of the formatting issues that are caught by swift-format.
1 parent 2750afc commit 5bc6e87

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/TensorFlow/Layers/Dropout.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,14 @@ public struct Dropout<Scalar: TensorFlowFloatingPoint>: ParameterlessLayer {
8383
/// The noise added always has mean zero, but has a configurable standard deviation.
8484
public struct GaussianNoise<Scalar: TensorFlowFloatingPoint>: ParameterlessLayer {
8585
@noDerivative public let standardDeviation: Tensor<Scalar>
86-
86+
8787
/// Creates a Gaussian noise layer
8888
///
8989
/// - Parameter standardDeviation: Standard deviation of the Guassian distribution
9090
public init(standardDeviation: Scalar) {
9191
self.standardDeviation = Tensor<Scalar>(standardDeviation)
9292
}
93-
93+
9494
/// Returns a tensor obtained by adding noise to `input`
9595
@differentiable
9696
public func callAsFunction(_ input: Tensor<Scalar>) -> Tensor<Scalar> {

0 commit comments

Comments
 (0)