python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Scikit learn GridSearchCV with pipeline with custom transformer
I'm trying to perform a GridSearchCV on a pipeline with a custom transformer. The transformer enriches the features "year" and "odometer" polynomially and one hot encodes the rest ...
Davis Stöwer
Votes: 0
Answers: 1
ImportError: cannot import name 'SequentialFeatureSelector'
from sklearn.feature_selection import SequentialFeatureSelector
When I import SequentialFeatureSelector from sklearn.feature_selection I get an import error
ImportError: cannot import name 'Sequenti...
Pruthvi Amin
Votes: 0
Answers: 1
Why is the score_samples-function of the IsolationForest algorithm in Scikit-Learn giving identical scores?
I'm trying to use the IsolationForest algorithm in scikit-learn, and I'm interested in the computed score. But when calling score_samples() I don't get the scores I expect.
Here is a plot of my data:
...
afd
Votes: 0
Answers: 1
Confused about standardization before PCA
I'm trying to train a linear regression model. With GridSearchCV I want to investigate how the model performs with different numbers of dimensions after PCA. I also found a sklearn tutorial which does...
Fea94
Votes: 0
Answers: 1