What's wrong here? accidentally referencing an existing instance instead of making a new one
- 阅读更多 关于 What's wrong here? accidentally referencing an existing instance instead of making a new one
问题 I'm an R user looking to get more comfortable with Python. I wrote a kind of mini-API that makes it easy to compare different statistical models fitted to the same data, in such a way that I can pre-set all the model hyperparameters and then iterate over the different models in order to fit them. This is the essence of what I want to do: Build a wrapper class Classifier around a Scikit-learn Pipeline, in turn built on one of Scikit-learn's built-in estimators, e.g. RandomForestClassifier