Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created June 27, 2021 14:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/b73ae40d211a067e64075062866e5935 to your computer and use it in GitHub Desktop.
Save amankharwal/b73ae40d211a067e64075062866e5935 to your computer and use it in GitHub Desktop.
x = np.array(data["message"])
y = np.array(data["class"])
cv = CountVectorizer()
X = cv.fit_transform(x) # Fit the Data
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.33, random_state=42)
clf = MultinomialNB()
clf.fit(X_train,y_train)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment