You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're nearing the point where we'll need to implement a machine learning module to execute user queries. We're looking to create a minimum viable product. We can expand functionality later, but for now let's focus on the simplest and most succinct implementation. There are several decisions to make:
Classifier: which classifiers should we support? If we want to support only a single classifier for now, which one?
Predictions: do we want to return probabilities, scores, or class predictions?
Threshold: do we want to report performance measures that depend on a single classification threshold? Or do we want report performance that span thresholds?
Testing: Do we want to use a testing partition in addition to cross-validation? If so, do we refit a model on all observations?
We're nearing the point where we'll need to implement a machine learning module to execute user queries. We're looking to create a minimum viable product. We can expand functionality later, but for now let's focus on the simplest and most succinct implementation. There are several decisions to make:
So let's work out these choices, with a focus on simplicity.