This content refers to an unreleased development version of PyMVPA
To provide the most recent news and documentation www.pymvpa.org reflects the
development 0.6 series of PyMVPA. If you are interested in the
documentation of the previous stable 0.4 series of PyMVPA, please
visit v04.pymvpa.org.
class mvpa.clfs.warehouse.Warehouse(known_tags=None, matches=None)¶
Class to keep known instantiated classifiers
Should provide easy ways to select classifiers of needed kind:
clfswh[‘linear’, ‘svm’] should return all linear SVMs
clfswh[‘linear’, ‘multiclass’] should return all linear classifiers
capable of doing multiclass classification
Initialize warehouse
Parameters :
known_tags : list of str
List of known tags
matches : dict
Optional dictionary of additional matches. E.g. since any
regression can be used as a binary classifier,
matches={‘binary’:[‘regression’]}, would allow to provide
regressions also if ‘binary’ was requested