1
0
Fork 0
mirror of https://github.com/tensorflow/haskell.git synced 2024-11-23 03:19:44 +01:00

Delete inaccurate comments

This commit is contained in:
fkm3 2017-07-25 00:15:04 -04:00
parent bebc4aa7d9
commit cac45d1cd6

View file

@ -444,8 +444,8 @@ gradForBinaryCwise (x, gx) (y, gy) =
where where
dx = reshape (sum gx rx) sx dx = reshape (sum gx rx) sx
dy = reshape (sum gy ry) sy dy = reshape (sum gy ry) sy
sx = shape x -- (x :: Tensor Build t) sx = shape x
sy = shape y -- (y :: Tensor Build t) sy = shape y
(rx, ry) = broadcastGradientArgs sx sy (rx, ry) = broadcastGradientArgs sx sy
-- | The gradient function for an op type. -- | The gradient function for an op type.