diff options
-rw-r--r-- | ml_exp/__init__.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ml_exp/__init__.py b/ml_exp/__init__.py index e49104e12..6e901ec2c 100644 --- a/ml_exp/__init__.py +++ b/ml_exp/__init__.py @@ -24,7 +24,7 @@ from ml_exp.compound import Compound from ml_exp.representations import coulomb_matrix, lennard_jones_matrix,\ get_helping_data, adjacency_matrix, check_bond, bag_of_bonds from ml_exp.qm7db import qm7db -from ml_exp.kernels import gaussian_kernel, laplacian_kernel +from ml_exp.kernels import laplauss_kernel from ml_exp.do_ml import simple_ml, do_ml __all__ = ['Compound', @@ -35,7 +35,6 @@ __all__ = ['Compound', 'check_bond', 'bag_of_bonds', 'qm7db', - 'gaussian_kernel', - 'laplacian_kernel', + 'laplauss_kernel', 'simple_ml', 'do_ml'] |