Skip to content

Commit 306a277

Browse files
authored
Fix typo
1 parent dc4e77c commit 306a277

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoemulate/experimental/emulators/nn/mlp_gaussian.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def forward(self, x):
101101

102102
covariance_matrix = scale_tril @ scale_tril.transpose(-1, -2)
103103

104-
# TODO: for large covariance martrices, numerical instability remains
104+
# TODO: for large covariance matrices, numerical instability remains
105105
return GaussianLike(mean, make_positive_definite(covariance_matrix))
106106

107107
def loss_func(self, y_pred, y_true):

0 commit comments

Comments
 (0)