From 101bab19521af1996d729e965e355989cd339c92 Mon Sep 17 00:00:00 2001 From: Ryan Hausen Date: Wed, 21 Aug 2024 11:41:04 -0400 Subject: [PATCH] prefix warning comment with XXX Co-authored-by: Adam Li --- treeple/stats/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/treeple/stats/utils.py b/treeple/stats/utils.py index 906500ab..ad24b05e 100644 --- a/treeple/stats/utils.py +++ b/treeple/stats/utils.py @@ -464,7 +464,7 @@ def _compute_null_distribution_coleman_sparse( ) # (n_oob_samples) all_oob_idxs = np.concatenate(all_oob_idxs, axis=0) # (n_oob_samples) - # Because we are assuming 2D sparse matrices for binary classification or + # XXX: Because we are assuming 2D sparse matrices for binary classification or # regression, we can assume that the number of outputs is 1. This is necessary # to use scipy's sparse matrix format. However pydata has a general sparse # matrix format that can be used for multi-output problems, but currently uses