I have built a model using scikit-learn's AdaBoostClassifier with Logistic regression as the base estimator.
model = AdaBoostClassifier(base_estimator=linear_model.LogisticRegression()).fit(X_train, Y_train)
How do I obtain the coefficients of the model? I want to see how much each feature will contribute numerically towards the target variable log(p/(1-p))
.
Many thanks.