From 2db4ae3ee2cd04288980282cf472ff47191d0af8 Mon Sep 17 00:00:00 2001 From: Luc Giffon <luc.giffon@lis-lab.fr> Date: Mon, 4 Nov 2019 17:30:31 +0100 Subject: [PATCH] add small comment question --- code/bolsonaro/models/omp_forest_regressor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/code/bolsonaro/models/omp_forest_regressor.py b/code/bolsonaro/models/omp_forest_regressor.py index 2f87892..a095e14 100644 --- a/code/bolsonaro/models/omp_forest_regressor.py +++ b/code/bolsonaro/models/omp_forest_regressor.py @@ -57,6 +57,7 @@ class OmpForestRegressor(BaseEstimator): D = self._forest_prediction(X_train) if self._models_parameters.normalize: + # question: maybe consider other kinds of normalization self._logger.debug("Compute norm of predicted vectors on X_train") self._forest_norms = np.linalg.norm(D, axis=0) D /= self._forest_norms -- GitLab