Skip to content

Instantly share code, notes, and snippets.

@curiousily
Created March 31, 2019 13:29
Show Gist options
  • Save curiousily/afbadf977971c8495ea71070bc94d44e to your computer and use it in GitHub Desktop.
Save curiousily/afbadf977971c8495ea71070bc94d44e to your computer and use it in GitHub Desktop.
X_test = np.array([10, 250])
X_test = X_test.reshape(X_test.shape[0], 1)
y_test = LogisticRegressor().fit(X, y).predict(X_test)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment