libTLDA icon indicating copy to clipboard operation
libTLDA copied to clipboard

Construct all methods from scikit classifiers

Open wmkouw opened this issue 6 years ago • 0 comments

A couple of people have sent emails that they expected certain scikit methods to be present, e.g. predict_proba.

Plan is to make sure that all my classifiers have at least:

  • [x] fit(X, y[, sample_weight])
  • [ ] get_params([deep])
  • [x] predict(X)
  • [ ] predict_log_proba(X)
  • [ ] predict_proba(X)
  • [ ] score(X, y[, sample_weight])
  • [ ] set_params(**params)

Or throw an exception that a particular functionality is not possible.

wmkouw avatar Oct 28 '18 16:10 wmkouw