Compute the square root of each element in a tensor. There is a method version of this static function: Tensor.sqrt.
$$\sqrt x : \forall x \in T$$
const t = sm.randn([128, 128]) // equivalent calls const a = t.sqrt() const b = sm.sqrt(t)
Tensor whose values will have their square root calculated
Generated using TypeDoc
Compute the square root of each element in a tensor. There is a method version of this static function: Tensor.sqrt.
$$\sqrt x : \forall x \in T$$
Example
Returns