Skip to content

Version 0.9.7

Compare
Choose a tag to compare
@dan-blanchard dan-blanchard released this 16 Aug 18:41
· 3202 commits to main since this release
  • Can now use any objective function scikit-learn supports for tuning (i.e.,
    any valid argument for scorer when instantiating GridSearchCV) in addition
    to those we define.
  • Removed ml_metrics dependency and we now support custom weights for kappa
    (through the API only so far).
  • Require's scikit-learn 0.14+.
  • accuracy, quadratic_weighted_kappa, unweighted_kappa,
    f1_score_micro, and f1_score_macro functions are no longer available
    under skll.metrics. The accuracy and f1 score ones are no longer needed
    because we just use the built-in ones. As for quadratic_weighted_kappa and
    unweighted_kappa, they've been superseded by the kappa function that takes
    a weights argument.
  • Fixed issue where you couldn't write prediction files if you were
    classifying using numeric classes.