Gradient Boosting learns a function that looks something like this:
F(X) = W1*T1(X) + W2*T2(X) + ... + Wi*Ti(X)
where Wi are weights and Ti are weak learners (decision trees). I know how to extract the individual Ti (estimators_ property) from a fitted gradient boosting model in scikit-learn, but is there a way to extract the Wi?