I am using sklearn RFC.
forest.fit(training_data, y_train)
probas_test = forest.predict_proba(test_data)
I wanted to know is there a way to find the contribution / importance of each features which lead to the prediction.
something like , but for an individual datapoint level.
forest.feature_importances_
答案 0 :(得分:1)