O código
feature_names = vectorizer.get_feature_names()
retorna o seguinte erro:
AttributeError: 'CountVectorizer' object has no attribute 'get_feature_names'
O código
feature_names = vectorizer.get_feature_names()
retorna o seguinte erro:
AttributeError: 'CountVectorizer' object has no attribute 'get_feature_names'
Analizando a biblioteca do Scikit-learn, vi que o método mudou. O correto agora é get_feature_names_out()
.
Então o seguinte código funcionou:
feature_names = vectorizer.get_feature_names_out()
Eu acho que isso deveria estar indicado na aula.