modify format

This commit is contained in:
huodagu 2023-03-07 10:44:22 +08:00
parent adde606cc2
commit 05691efeef
4 changed files with 11 additions and 11 deletions

View File

@ -7402,7 +7402,7 @@ class SegmentMax(Primitive):
Specifically, it generates a new Tensor `output` such that :math:`output_i=max_j(input\_x_j)`
in which the maximum value is obtained from all elements corresponding
to :math:j that meets :math:`segment\_ids[j] == i`.
to :math:`j` that meets :math:`segment\_ids[j] == i`.
If a segment contains no elements for a given segment :math:`i`,
then the corresponding element in the output Tensor is set to zero: :math:`output[i] = 0`.
@ -7455,7 +7455,7 @@ class SegmentMin(Primitive):
Specifically, it generates a new Tensor `output` such that :math:`output_i=min_j(input\_x_j)`
in which the minimum value is obtained from all elements corresponding
to :math:j that meets :math:`segment\_ids[j] == i`.
to :math:`j` that meets :math:`segment\_ids[j] == i`.
If a segment contains no elements for a given segment :math:`i`,
then the corresponding element in the output Tensor is set to zero: :math:`output[i] = 0`.
@ -7508,7 +7508,7 @@ class SegmentSum(Primitive):
Specifically, it generates a new Tensor `output` such that :math:`output_i = \sum_j input\_x_j`
in which the cumulative sum is obtained from all elements corresponding
to :math:j that meets :math:`segment\_ids[j] == i`.
to :math:`j` that meets :math:`segment\_ids[j] == i`.
If a segment contains no elements for a given segment :math:`i`,
then the corresponding element in the output Tensor is set to 0: :math:`output[i] = 0`.
@ -7790,7 +7790,7 @@ class SegmentMean(Primitive):
Specifically, it generates a new Tensor `output` such that :math:`output_i=mean_j(input\_x_j)`
in which the mean value is obtained from all elements corresponding
to :math:j that meets :math:`segment\_ids[j] == i`.
to :math:`j` that meets :math:`segment\_ids[j] == i`.
If a segment contains no elements for a given segment :math:`i`,
then the corresponding element in the output Tensor is set to zero: :math:`output[i] = 0`.
@ -7847,7 +7847,7 @@ class SegmentProd(Primitive):
Specifically, it generates a new Tensor `output` such that :math:`output_i = \prod_j input\_x_j`
in which the cumulative product is obtained from all elements corresponding
to :math:j that meets :math:`segment\_ids[j] == i`.
to :math:`j` that meets :math:`segment\_ids[j] == i`.
If a segment contains no elements for a given segment :math:`i`,
then the corresponding element in the output Tensor is set to 1: :math:`output[i] = 1`.