Created
April 6, 2020 10:40
-
-
Save damzaky/5891985ceac4c0304903bbd59724e2a2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
X = data['text'] | |
y = data['label'] | |
vectorizer = CountVectorizer() | |
vectorizer.fit(X) | |
X = vectorizer.transform(X).toarray() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment