Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created October 4, 2021 07:49
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/dc432ef5293886abf9ba1a5b615203b8 to your computer and use it in GitHub Desktop.
Save amankharwal/dc432ef5293886abf9ba1a5b615203b8 to your computer and use it in GitHub Desktop.
x = np.array(data["title"])
y = np.array(data["label"])
cv = CountVectorizer()
x = cv.fit_transform(x)
xtrain, xtest, ytrain, ytest = train_test_split(x, y, test_size=0.2, random_state=42)
automl.fit(xtrain, ytrain, task="classification")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment