summaryrefslogtreecommitdiff
path: root/ml_exp/__init__.py
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2020-02-25 20:52:08 -0700
committerDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2020-02-25 20:52:08 -0700
commitd1b84b91f4b94b717de477e47b22946fd42be0db (patch)
treecb3138a779d6e5f6cc2a07b4d9dd9c90d3cdac80 /ml_exp/__init__.py
parent2bdd175a6eb1f6edd8689987fef1a29fc1043da1 (diff)
Refactor gauss kernel, more natural syntax
Diffstat (limited to 'ml_exp/__init__.py')
-rw-r--r--ml_exp/__init__.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/ml_exp/__init__.py b/ml_exp/__init__.py
index dcb10a1df..e9dd83eae 100644
--- a/ml_exp/__init__.py
+++ b/ml_exp/__init__.py
@@ -23,6 +23,7 @@ SOFTWARE.
from ml_exp.compound import Compound
from ml_exp.representations import coulomb_matrix, lennard_jones_matrix,\
first_neighbor_matrix, adjacency_matrix, check_bond, bag_of_stuff
+from ml_exp.math import cholesky_solve
# If somebody does "from package import *", this is what they will
# be able to access:
@@ -32,4 +33,5 @@ __all__ = ['Compound',
'first_neighbor_matrix',
'adjacency_matrix',
'check_bond',
- 'bag_of_stuff']
+ 'bag_of_stuff',
+ 'cholesky_solve']