Skip to content

Commit

Permalink
tensorflow: add tensorflow.math.reduce_variance (#11328)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoel-bagard authored Jan 31, 2024
1 parent 8018337 commit 68ae493
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions stubs/tensorflow/tensorflow/math.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,12 @@ def reduce_std(
keepdims: bool = False,
name: str | None = None,
) -> Tensor: ...
def reduce_variance(
input_tensor: _TensorCompatible | RaggedTensor,
axis: _TensorCompatible | None = None,
keepdims: bool = False,
name: str | None = None,
) -> Tensor: ...
def argmax(
input: _TensorCompatible, axis: _TensorCompatible | None = None, output_type: _DTypeLike = ..., name: str | None = None
) -> Tensor: ...
Expand Down

0 comments on commit 68ae493

Please sign in to comment.