summaryrefslogtreecommitdiff
path: root/ml_exp/__init__.py
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2020-03-07 10:11:53 -0700
committerDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2020-03-07 10:11:53 -0700
commitf57f38c2886052bef92b3885acc2790ac5bc340d (patch)
treee7df0fa546df2de6552ff0378edecd929ea87dba /ml_exp/__init__.py
parent00301d1a9a8a7f975b64fe4ef85458f6a40776f7 (diff)
Add laplacian kernel
Diffstat (limited to 'ml_exp/__init__.py')
-rw-r--r--ml_exp/__init__.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/ml_exp/__init__.py b/ml_exp/__init__.py
index bc5afe03a..e49104e12 100644
--- a/ml_exp/__init__.py
+++ b/ml_exp/__init__.py
@@ -24,6 +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.do_ml import simple_ml, do_ml
__all__ = ['Compound',
@@ -34,5 +35,7 @@ __all__ = ['Compound',
'check_bond',
'bag_of_bonds',
'qm7db',
+ 'gaussian_kernel',
+ 'laplacian_kernel',
'simple_ml',
'do_ml']