Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created July 27, 2021 07:30
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/df821e661bd185c92acc970be680154d to your computer and use it in GitHub Desktop.
Save amankharwal/df821e661bd185c92acc970be680154d 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)
xtrain, xtest, ytrain, ytest = train_test_split(x, y, test_size=0.33, random_state=42)
model = BernoulliNB(binarize=0.0)
model.fit(xtrain, ytrain)
print(model.score(xtest, ytest))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment