summaryrefslogtreecommitdiff
path: root/ml_exp/kernels.py
diff options
context:
space:
mode:
Diffstat (limited to 'ml_exp/kernels.py')
-rw-r--r--ml_exp/kernels.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ml_exp/kernels.py b/ml_exp/kernels.py
index 2b40ae0b1..23c72475f 100644
--- a/ml_exp/kernels.py
+++ b/ml_exp/kernels.py
@@ -97,9 +97,9 @@ def laplauss_kernel(X1,
norm = np.linalg.norm(X2 - X1[i], axis=(1, 2))
else:
norm = np.linalg.norm(X2 - X1[i], axis=-1)
- if laplauuss == 'gauss':
+ if laplauss == 'gauss':
K[i, :] = np.exp(i_sigma * np.square(norm))
- elif laplauce == 'laplace':
+ elif laplauss == 'laplace':
K[i, :] = np.exp(i_sigma * norm)
else:
K[i, :] = np.exp(i_sigma * np.square(norm))