How do I found the lowest regularization parameter (C) using Randomized Logistic Regression in scikit-learn?
问题 I'm trying to use the scikit-learn Randomized Logistic Regression feature selection method but I keep running into cases where it kills all the features while fitting, and returns: ValueError: Found array with 0 feature(s) (shape=(777, 0)) while a minimum of 1 is required. This is as expected, clearly, because I'm reducing the regularization parameter - C - to ridiculously low levels (note that this is the inverse of the mathematical regularization parameter lambda , i.e., C = 1/lambda so the