set classifier to handle all classifiers #5
Labels
enhancement
New feature or request
experiments
Experiments package
testing
Testing related issue or pull request
all implemented classifiers (as returned (just names) by list_classifiers) should be at least recognised by set_classifier, even if not dealt with.
def list_classifiers(multivariate=False,dictionary=True):
cls = []
filter_tags = {}
if multivariate:
filter_tags["capability:multivariate"] = True
cls = all_estimators(estimator_types="classifier", filter_tags=filter_tags)
names= [i for i, _ in cls]
The text was updated successfully, but these errors were encountered: