Skip to content

Commit 4bdd976

Browse files
refine the latex mark
1 parent aacd941 commit 4bdd976

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

paddle/operators/bilinear_tensor_product_op.cc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,18 +78,18 @@ class BilinearTensorProductOpMaker : public framework::OpProtoAndCheckerMaker {
7878
AddComment(R"DOC(
7979
Bilinear Tensor Product operator.
8080
Given input X and Y, a 3D tensor Weight and a Bias. Each column of the
81-
Output is computed by one slice i = 1, . . . , k of the tensor:
81+
Output is computed by one slice $i = 1, . . . , k$ of the tensor:
8282
8383
$$
8484
M = (X W_i) * Y \\
8585
Out_i = \sum_j {M_j} + Bias_i
8686
$$
8787
88-
Where $$W_i$$ is the i-th slice of Input(Weight);
89-
$$M_j$$ is the j-th column of $$M$$;
90-
$$Out_i$$ is the i-th column of Output(Out);
91-
$$Bias_i$$ is a column vector, each element of it is equal to
92-
the i-th element of $$Bias$$;
88+
Where $W_i$ is the $i$-th slice of Input(Weight);
89+
$M_j$ is the $j$-th column of $M$;
90+
$Out_i$ is the $i$-th column of Output(Out);
91+
$Bias_i$ is a column vector, each element of it is equal to
92+
the $i$-th element of $Bias$;
9393
9494
)DOC");
9595
}

0 commit comments

Comments
 (0)