Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Questions about ML classifiers #7

Open
emilyemchen opened this issue May 22, 2020 · 1 comment
Open

Questions about ML classifiers #7

emilyemchen opened this issue May 22, 2020 · 1 comment
Labels
question Further information is requested

Comments

@emilyemchen
Copy link
Collaborator

Hi @dllussier!
My team and I have come up with a variety of classifier models from this article and I was wondering if you had some suggestions about which ones would be good ones to start with:

NON-LINEAR

  • Nearest Neighbors (K-NN) (Cover and Hart, 1967) with K=1 and Euclidean distance metric
  • Gaussian Naïve Bayes (GNB)
  • Random Forests Classifier (RF) (Breiman, 2001) @anproulx
  • Decision trees

LINEAR (sparse l_1 regularization)

  • Support Vector Classification (SVC)
  • Logistic Regression (Hastie et al., 2009)

NON-SPARSE LINEAR (l_2 regularization)

  • Ridge classification
  • SVC
  • Logistic regression

We are thinking of starting with supervised learning and then perhaps branching out to unsupervised learning if we have time.

@emilyemchen emilyemchen added the question Further information is requested label May 22, 2020
@dllussier
Copy link

The model you select will depend on what problem you are trying to solve or the question you are interested in and your data. Scikit learn has a nice cheat sheet that can show you how some of the options might be used: https://scikit-learn.org/stable/tutorial/machine_learning_map/index.html

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants