sample weights #219
-
I want to use RanfomForestRegressor as learners in the DoubleMLPLR procedure. Moreover I want to use sample weights for these learners. In scikit learn, It is possible by passing a vector of weights as follows: RandomForestRegressor().fit(X, y, sample_weight=weights). |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Currently this is not possible as we perform multiple sample splits which would require the adaption of the weight vectors. |
Beta Was this translation helpful? Give feedback.
The option to use external predictions is available with version
0.7.1
. You can find a documentation here.