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
explain_weights_sklearn_crfsuite calls crf_state_coef which builds a feature matrix for all classes, even if only a few classes are requested. It can be slow (I've seen ~20s); it is better to apply targets filter in crf_state_coef as well.
The text was updated successfully, but these errors were encountered:
explain_weights_sklearn_crfsuite
callscrf_state_coef
which builds a feature matrix for all classes, even if only a few classes are requested. It can be slow (I've seen ~20s); it is better to apply targets filter incrf_state_coef
as well.The text was updated successfully, but these errors were encountered: