mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 12:44:28 +08:00
tensorflow: add tensorflow.math.reduce_variance (#11328)
This commit is contained in:
@@ -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: ...
|
||||
|
||||
Reference in New Issue
Block a user