summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2020-03-26 15:52:15 -0700
committerDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2020-03-26 15:52:15 -0700
commitf8e5350630da8b424a8a5f44a8166c26648d3dac (patch)
treebb4a6e73bc2b062baef705e91d889b14f64b8bff
parent63e9c38beb5083e620bdbe9ef1cf5fc75cba8bc4 (diff)
Fix laplacian kernel
-rw-r--r--ml_exp/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ml_exp/__init__.py b/ml_exp/__init__.py
index e1d3bcd6f..cb072d673 100644
--- a/ml_exp/__init__.py
+++ b/ml_exp/__init__.py
@@ -25,7 +25,7 @@ from ml_exp.representations import coulomb_matrix, lennard_jones_matrix,\
get_helping_data, adjacency_matrix, epsilon_index, check_bond, bag_of_bonds
from ml_exp.readdb import qm7db, qm9db
from ml_exp.data import NUCLEAR_CHARGE, POSSIBLE_BONDS
-from ml_exp.kernels import gaussian_kernel, laplauss_kernel, wasserstein_kernel
+from ml_exp.kernels import gaussian_kernel, laplacian_kernel, wasserstein_kernel
from ml_exp.krr import krr, multi_krr
__all__ = ['Compound',