Counting words (II)
Once the vectorizer has been fit to the data, it can be used to transform the text to an array representing the word counts. This array will have a row per block of text and a column for each of the features generated by the vectorizer that you observed in the last exercise.
The vectorizer to you fit in the last exercise (cv
) is available in your workspace.
Este ejercicio forma parte del curso
Feature Engineering for Machine Learning in Python
Ejercicio interactivo práctico
Prueba este ejercicio completando el código de muestra.
# Apply the vectorizer
cv_transformed = ____(speech_df['text_clean'])
# Print the full array
cv_array = ____
print(cv_array)