You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
224 B

  1. """
  2. Baseline model.
  3. """
  4. from sklearn.calibration import CalibratedClassifierCV
  5. from sklearn.svm import LinearSVC
  6. def build_model():
  7. estimator = CalibratedClassifierCV(base_estimator=LinearSVC())
  8. return estimator