Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created October 17, 2021 10:10
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/f7380818980a1e94cc245501486d7d9a to your computer and use it in GitHub Desktop.
Save amankharwal/f7380818980a1e94cc245501486d7d9a to your computer and use it in GitHub Desktop.
x = iris.drop("species", axis=1)
y = iris["species"]
from sklearn.model_selection import train_test_split
x_train, x_test, y_train, y_test = train_test_split(x, y,
test_size=0.2,
random_state=0)
from sklearn.neighbors import KNeighborsClassifier
knn = KNeighborsClassifier(n_neighbors=1)
knn.fit(x_train, y_train)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment