set_scheduler does not work using VotingClassifier
See original GitHub issueHi, I have used torchensemble for classification on CIFAR-10, and it looks like there is a problem on set_scheduler
.
I have followed the examples and used 5 resnet-18 models. The results on FusionClassifier are fine, over 95% on CIFAR-10. However, VotingClassifier only achieves a testing accuracy of 90%.
After looking at the source codes on VotingClassifier, I think the problem is related to set_scheduler
, could you help fix it?
Sincerely
Issue Analytics
- State:
- Created 3 years ago
- Comments:7 (4 by maintainers)
Top Results From Across the Web
VotingClassifier .fit() does not trigger setting .model attribute ...
I see now that VotingClassifier is designed to work specifically with unfitted classifiers. Unfortunately this makes it difficult to use it with ......
Read more >Voting Classifier causing casting Numpy Type Error
I've checked other answers, but they all refer to numpy data conversions. The error is happening inside the cross validation phase. I tried...
Read more >Ensembling with VotingClassifier - Cross Validated
If you do not set a SEED or 'random_state' to the classifier definition then it results in different accuracies each time you run.Try,....
Read more >sklearn.ensemble.VotingClassifier
An estimator can be set to 'drop' using set_params . Changed in version 0.21: 'drop' is accepted. Using None was deprecated in 0.22...
Read more >Enhancing the performance measures by Voting Classifier in ML
The panel having discussion and voting. Same thing you can do with a machine learning classification problems. Suppose you have trained a few ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi @Alex-Medium, this issue has been fixed in PR #37. Feel free to open another issue if you have any problem 😉
@Alex-Medium OK, I’ll check it soon.