![]() |
Multivariate Pattern Analysis in Python |
Least angle regression (LARS) classifier.
The comprehensive API documentation for this module, including all technical details, is available in the Epydoc-generated API reference for mvpa.clfs.lars (for developers).
Bases: mvpa.clfs.base.Classifier
Least angle regression (LARS) Classifier.
LARS is the model selection algorithm from:
Bradley Efron, Trevor Hastie, Iain Johnstone and Robert Tibshirani, Least Angle Regression Annals of Statistics (with discussion) (2004) 32(2), 407-499. A new method for variable subset selection, with the lasso and ‘epsilon’ forward stagewise methods as special cases.
Similar to SMLR, it performs a feature selection while performing classification, but instead of starting with all features, it starts with none and adds them in, which is similar to boosting.
This classifier behaves more like a ridge regression in that it returns prediction values and it treats the training labels as continuous.
In the true nature of the PyMVPA framework, this algorithm is actually implemented in R by Trevor Hastie and wrapped via RPy. To make use of LARS, you must have R and RPy installed as well as the LARS contributed package. You can install the R and RPy with the following command on Debian-based machines:
sudo aptitude install python-rpy python-rpy-doc r-base-dev
You can then install the LARS package by running R as root and calling:
install.packages()
Note
Available state variables:
- feature_ids: Feature IDS which were used for the actual training.
- predicting_time+: Time (in seconds) which took classifier to predict
- predictions+: Most recent set of predictions
- trained_dataset: The dataset it has been trained on
- trained_labels+: Set of unique labels it has been trained on
- training_confusion: Confusion matrix of learning performance
- training_time+: Time (in seconds) which took classifier to train
- values+: Internal classifier values the most recent predictions are based on
(States enabled by default are listed with +)
Initialize LARS.
See the help in R for further details on the following parameters:
| Parameters: |
|
|---|
See also
Derived classes might provide additional methods via their base classes. Please refer to the list of base classes (if it exists) at the begining of the LARS documentation.
Full API documentation of LARS in module mvpa.clfs.lars.
Bases: mvpa.measures.base.Sensitivity
SensitivityAnalyzer that reports the weights LARS trained on a given Dataset.
Note
Available state variables:
- base_sensitivities: Stores basic sensitivities if the sensitivity relies on combining multiple ones
- null_prob+: State variable
- null_t: State variable
- raw_result: Computed results before applying any transformation algorithm
(States enabled by default are listed with +)
Initialize the analyzer with the classifier it shall use.
| Parameters: |
|
|---|
See also
Derived classes might provide additional methods via their base classes. Please refer to the list of base classes (if it exists) at the begining of the LARSWeights documentation.
Full API documentation of LARSWeights in module mvpa.clfs.lars.