| |
- alpha_investing(X, y, w0, dw)
- This function implements streamwise feature selection (SFS) algorithm alpha_investing for binary regression or
univariate regression
Input
-----
X: {numpy array}, shape (n_samples, n_features)
input data, assume feature arrives one at each time step
y: {numpy array}, shape (n_samples,)
input class labels or regression target
Output
------
F: {numpy array}, shape (n_selected_features,)
index of selected features in a streamwise way
Reference
---------
Zhou, Jing et al. "Streaming Feature Selection using Alpha-investing." KDD 2006.
|