Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created August 24, 2021 07:57
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/8c1d9adb2713d09047bf14b845bf36fa to your computer and use it in GitHub Desktop.
Save amankharwal/8c1d9adb2713d09047bf14b845bf36fa to your computer and use it in GitHub Desktop.
data = data[["headline", "is_sarcastic"]]
x = np.array(data["headline"])
y = np.array(data["is_sarcastic"])
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.20, random_state=42)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment