diff options
author | David Luevano <55825613+luevano@users.noreply.github.com> | 2020-02-01 13:11:18 -0700 |
---|---|---|
committer | David Luevano <55825613+luevano@users.noreply.github.com> | 2020-02-01 13:11:18 -0700 |
commit | eb508679fe5a7479be74d3c28d2fef8abeca0d91 (patch) | |
tree | 457b2cd840739d4fa554600b721c86295850740a | |
parent | 652c520bc4384ab591d26942812390799bd5a5e2 (diff) |
Fix docstring
-rw-r--r-- | ml_exp/bob.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ml_exp/bob.py b/ml_exp/bob.py index e3d54c5fa..20085d957 100644 --- a/ml_exp/bob.py +++ b/ml_exp/bob.py @@ -49,7 +49,8 @@ def bob(c_matrix, Creates the bag of bond using the coulomb matrix data. c_matrix: coulomb matrix. atoms: list of atoms. - max_len: maximum amount of bonds in molecule. + max_n: maximum amount of atoms. + max_bond_len: maximum amount of bonds in molecule. """ n = len(atoms) bond_n = (n * n - n) / 2 + n |