diff options
author | David Luevano Alvarado <55825613+luevano@users.noreply.github.com> | 2020-02-23 21:45:45 -0700 |
---|---|---|
committer | David Luevano Alvarado <55825613+luevano@users.noreply.github.com> | 2020-02-23 21:45:45 -0700 |
commit | b82b90ec609ee80629f1e7f4b8a03cbbb53a0f21 (patch) | |
tree | 0776854910bc26c49d60c3bb32a09bb451cb2634 | |
parent | 2c8a05c20fbfec9d6c34a83958b694a7611b6cf1 (diff) |
Edit bag of stuff function name
-rw-r--r-- | ml_exp/representations.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ml_exp/representations.py b/ml_exp/representations.py index a85fee11f..1fe55aa5f 100644 --- a/ml_exp/representations.py +++ b/ml_exp/representations.py @@ -308,15 +308,15 @@ def check_bond(bags, return False, None -def bag_of(cm, - atoms, - stuff='bonds', - size=23): +def bag_of_stuff(cm, + atoms, + stuff='bonds', + size=23): """ Creates the Bag of Bonds using the Coulomb Matrix. cm: coulomb matrix. atoms: list of atoms. - size: maximum amount of atoms. + size: compound size. """ if cm is None: raise ValueError('Coulomb Matrix hasn\'t been initialized for the \ |