From 607c2570d827a2ba58b33c3240ca7fbdd5bbb535 Mon Sep 17 00:00:00 2001 From: David Luevano Alvarado <55825613+luevano@users.noreply.github.com> Date: Sat, 7 Mar 2020 10:58:19 -0700 Subject: Fix error where cm was used instead of am --- ml_exp/do_ml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ml_exp') 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) -- cgit v1.2.3-54-g00ecf