Hi, does any one know any methods for solving this problem?
Input: features vector x (N-dimensional vector),
Output: results y (scalar)
We know that y is a function (may be not linear) of some components of x (e.g., depends only on K elements of x) ;
We have some samples of x and y; How can we find which K components that y depends on?
I think this is similar to the dimensionality reduction in Machine Learning, but different because: what we want is which component will affect the value of y; the components of x may not be correlated; all components of x may be dependent, but some of them can be discarded because it does not affect the value of y.
Could some one give me some suggestions or references? Thanks!