Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created July 25, 2021 08:03
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/e9b849198ca56ee3a1db92fa9ed55572 to your computer and use it in GitHub Desktop.
Save amankharwal/e9b849198ca56ee3a1db92fa9ed55572 to your computer and use it in GitHub Desktop.
x = np.array(data["tweet"])
y = np.array(data["labels"])
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 = DecisionTreeClassifier()
clf.fit(X_train,y_train)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment