diff options
-rw-r--r-- | ml_exp/do_ml.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ml_exp/do_ml.py b/ml_exp/do_ml.py index e1aece986..eb57008b0 100644 --- a/ml_exp/do_ml.py +++ b/ml_exp/do_ml.py @@ -246,7 +246,7 @@ def do_ml(db_path='data', if 'LJM' in identifiers: ljm_data = np.array([comp.ljm for comp in compounds], dtype=np.float64) if 'AM' in identifiers: - am_data = np.array([comp.cm for comp in compounds], dtype=np.float64) + am_data = np.array([comp.am for comp in compounds], dtype=np.float64) if 'BOB' in identifiers: bob_data = np.array([comp.bob for comp in compounds], dtype=np.float64) |