Skip to content

Commit 43383c2

Browse files
authored
Fix latex display in docs (#2404)
1 parent 981edd8 commit 43383c2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

gpytorch/means/constant_mean_gradgrad.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ class ConstantMeanGradGrad(Mean):
1515
.. math::
1616
1717
\mu(\mathbf x) &= C \\
18-
\Grad \mu(\mathbf x) &= \mathbf 0 \\
19-
\Grad^2 \mu(\mathbf x) &= \mathbf 0
18+
\nabla \mu(\mathbf x) &= \mathbf 0 \\
19+
\nabla^2 \mu(\mathbf x) &= \mathbf 0
2020
2121
where :math:`C` is a learned constant.
2222

gpytorch/means/linear_mean_grad.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class LinearMeanGrad(Mean):
1212
.. math::
1313
1414
\mu(\mathbf x) &= \mathbf W \cdot \mathbf x + B \\
15-
\Grad \mu(\mathbf x) &= \mathbf W
15+
\nabla \mu(\mathbf x) &= \mathbf W
1616
1717
where :math:`\mathbf W` and :math:`B` are learned constants.
1818

gpytorch/means/linear_mean_gradgrad.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ class LinearMeanGradGrad(Mean):
1212
.. math::
1313
1414
\mu(\mathbf x) &= \mathbf W \cdot \mathbf x + B \\
15-
\Grad \mu(\mathbf x) &= \mathbf W \\
16-
\Grad^2 \mu(\mathbf x) &= \mathbf 0 \\
15+
\nabla \mu(\mathbf x) &= \mathbf W \\
16+
\nabla^2 \mu(\mathbf x) &= \mathbf 0 \\
1717
1818
where :math:`\mathbf W` and :math:`B` are learned constants.
1919

0 commit comments

Comments
 (0)