I just start learning neural network and I want to create a voter for several different classification models trained on some dataset. It seems that this package is what I need. And I find the sample code in the document https://ensemble-pytorch.readthedocs.io/en/latest/index.html.
model = VotingClassifier( estimator=MLP, n_estimators=10, cuda=True, )
My naive understanding is that here we have 10 same estimators. Can we transfer a list of models instead of just MLP into the arguments?
Hi,
I just start learning neural network and I want to create a voter for several different classification models trained on some dataset. It seems that this package is what I need. And I find the sample code in the document https://ensemble-pytorch.readthedocs.io/en/latest/index.html.
model = VotingClassifier( estimator=MLP, n_estimators=10, cuda=True, )
My naive understanding is that here we have 10 same estimators. Can we transfer a list of models instead of justMLP
into the arguments?Thanks