I'm trying to stack different machine learning algs via the StackingClassifier method of Sklearn.ensemble. One of my models is using the Thundersvm with an rbf kernel. I keep getting the following error:
< SVC object has no attribute classes_ > it seems ThunderSVM doesn't have this attribute in the Predict method
I'm using Sklearn version == '0.23.2'
Any help is appreciated.
I'm trying to stack different machine learning algs via the StackingClassifier method of Sklearn.ensemble. One of my models is using the Thundersvm with an rbf kernel. I keep getting the following error:
< SVC object has no attribute classes_ >
it seems ThunderSVM doesn't have this attribute in the Predict method I'm using Sklearn version == '0.23.2' Any help is appreciated.