Standardize input `x`.
(self, x)
| 207 | return self.loc * array_ops.ones_like(self.scale) |
| 208 | |
| 209 | def _z(self, x): |
| 210 | """Standardize input `x`.""" |
| 211 | with ops.name_scope("standardize", values=[x]): |
| 212 | return (x - self.loc) / self.scale |
| 213 | |
| 214 | def _inv_z(self, z): |
| 215 | """Reconstruct input `x` from a its normalized version.""" |
no test coverage detected