Multiple classification models in a scikit pipeline python
问题 I am solving a binary classification problem over some text documents using Python and implementing the scikit-learn library, and I wish to try different models to compare and contrast results - mainly using a Naive Bayes Classifier, SVM with K-Fold CV, and CV=5 . I am finding a difficulty in combining all of the methods into one pipeline, given that the latter two models use gridSearchCV() . I cannot have multiple Pipelines running during a single implementation due to concurrency issues,