I have a dataset with 25 features, 36000 samples, and 11 labels. In python I want to train some classifiers (with same type or not) with different samples of this dataset. In other words, the training data samples of each classifier is different from the training data samples of another model. Of course labels and features are same and the difference is about samples. Then I want to vote between trained classifiers. Existed functions of python do voting with same training data. I really appreciate if you can help me to solve the issue in python.
I have tried to use voting functions of python, but unfortunately these functions accept same training data for all base classifiers.
Get the predictions by all your classifiers and append them to a list:
For your example:
The output: