diff --git a/qsprpred/models/models.py b/qsprpred/models/models.py index 85d78251..169bbd1f 100644 --- a/qsprpred/models/models.py +++ b/qsprpred/models/models.py @@ -562,7 +562,7 @@ def predictMols( # return predictions and if mols are within applicability domain if requested if hasattr(self, "applicabilityDomain") and use_applicability_domain: in_domain = self.applicabilityDomain.contains( - dataset.getFeatures(concat=True, ordered=True, refit_standardizer=False) + dataset.getFeatures(concat=True) ) in_domain = self.handleInvalidsInPredictions(mols, in_domain, failed_mask) return predictions, in_domain.values