summaryrefslogtreecommitdiff
path: root/ml_exp
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2020-03-07 10:55:49 -0700
committerDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2020-03-07 10:55:49 -0700
commitbc108b45dd7b71723a323783d1e98f1b0855136e (patch)
tree477500597f05ac99f079f6663c27aaaa1c77cb7c /ml_exp
parent1de0cb1f33ac3a72a286f8f67187162440001a4b (diff)
Fix init
Diffstat (limited to 'ml_exp')
-rw-r--r--ml_exp/__init__.py5
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']