@@ -655,7 +655,7 @@ def reduce_sum(input_tensor, reduction_indices=None, keep_dims=False,
655655
656656 Args:
657657 input_tensor: The tensor to reduce. Should have numeric type.
658- reduction_indices: The dimensions to reduce. If `None` (the defaut ),
658+ reduction_indices: The dimensions to reduce. If `None` (the default ),
659659 reduces all dimensions.
660660 keep_dims: If true, retains reduced dimensions with length 1.
661661 name: A name for the operation (optional).
@@ -692,7 +692,7 @@ def reduce_mean(input_tensor, reduction_indices=None, keep_dims=False,
692692
693693 Args:
694694 input_tensor: The tensor to reduce. Should have numeric type.
695- reduction_indices: The dimensions to reduce. If `None` (the defaut ),
695+ reduction_indices: The dimensions to reduce. If `None` (the default ),
696696 reduces all dimensions.
697697 keep_dims: If true, retains reduced dimensions with length 1.
698698 name: A name for the operation (optional).
@@ -719,7 +719,7 @@ def reduce_prod(input_tensor, reduction_indices=None, keep_dims=False,
719719
720720 Args:
721721 input_tensor: The tensor to reduce. Should have numeric type.
722- reduction_indices: The dimensions to reduce. If `None` (the defaut ),
722+ reduction_indices: The dimensions to reduce. If `None` (the default ),
723723 reduces all dimensions.
724724 keep_dims: If true, retains reduced dimensions with length 1.
725725 name: A name for the operation (optional).
@@ -746,7 +746,7 @@ def reduce_min(input_tensor, reduction_indices=None, keep_dims=False,
746746
747747 Args:
748748 input_tensor: The tensor to reduce. Should have numeric type.
749- reduction_indices: The dimensions to reduce. If `None` (the defaut ),
749+ reduction_indices: The dimensions to reduce. If `None` (the default ),
750750 reduces all dimensions.
751751 keep_dims: If true, retains reduced dimensions with length 1.
752752 name: A name for the operation (optional).
@@ -773,7 +773,7 @@ def reduce_max(input_tensor, reduction_indices=None, keep_dims=False,
773773
774774 Args:
775775 input_tensor: The tensor to reduce. Should have numeric type.
776- reduction_indices: The dimensions to reduce. If `None` (the defaut ),
776+ reduction_indices: The dimensions to reduce. If `None` (the default ),
777777 reduces all dimensions.
778778 keep_dims: If true, retains reduced dimensions with length 1.
779779 name: A name for the operation (optional).
@@ -810,7 +810,7 @@ def reduce_all(input_tensor, reduction_indices=None, keep_dims=False,
810810
811811 Args:
812812 input_tensor: The boolean tensor to reduce.
813- reduction_indices: The dimensions to reduce. If `None` (the defaut ),
813+ reduction_indices: The dimensions to reduce. If `None` (the default ),
814814 reduces all dimensions.
815815 keep_dims: If true, retains reduced dimensions with length 1.
816816 name: A name for the operation (optional).
@@ -847,7 +847,7 @@ def reduce_any(input_tensor, reduction_indices=None, keep_dims=False,
847847
848848 Args:
849849 input_tensor: The boolean tensor to reduce.
850- reduction_indices: The dimensions to reduce. If `None` (the defaut ),
850+ reduction_indices: The dimensions to reduce. If `None` (the default ),
851851 reduces all dimensions.
852852 keep_dims: If true, retains reduced dimensions with length 1.
853853 name: A name for the operation (optional).
0 commit comments