Boa tarde,
Ao rodar o código abaixo, o walltime que me retorna é de apenas 18.6segundos, frente ao mais de 5 minutos da intrutora, questiono se algo não está errado?
%%time
from sklearn.ensemble import RandomForestClassifier
classificador_random_forest = RandomForestClassifier(n_estimators=100, random_state=0)
y_pred_random_forest = executar_classificador(classificador_random_forest, X_train, X_test, y_train)
Após a execução dele, tentei salvar as árvores geradas:
salvar_arvore(classificador_random_forest.estimators_[0], "random_forest1")
salvar_arvore(classificador_random_forest.estimators_[1], "random_forest2")
E me informa que há um erro de atributo: AttributeError: 'RandomForestClassifier' object has no attribute 'estimators_'
O que estaria fazendo de errado?