Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created October 7, 2021 07:46
Show Gist options
  • Save amankharwal/d0cf67fde0fee551937d66dfc2c49949 to your computer and use it in GitHub Desktop.
Save amankharwal/d0cf67fde0fee551937d66dfc2c49949 to your computer and use it in GitHub Desktop.
data = data[["title", "category"]]
x = np.array(data["title"])
y = np.array(data["category"])
cv = CountVectorizer()
X = cv.fit_transform(x)
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.33, random_state=42)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment