I just made a Adaboost Classifier with these parameters,
1.n_estimators = 50
2.base_estimator = svc
(support vector classifier)
3.learning_rate = 1
here is my code:
from sklearn.ensemble import AdaBoostClassifier
from sklearn.svm import SVC
svc = SVC(kernel = 'linear',probability = True)
ABC = AdaBoostClassifier(n_estimators = 50, base_estimator = svc, learning_rate = 1)
ABC.fit(X,Y)
Dataset has 18 independent variables and 1 categorical dependent variable dataset has 10480 datapoints
whenever i run this it will take so much time but no any result.
Is there any way to check execution time? Or any better way to do this?