Hi,
I have a question regarding feature selection and classification cost.
Suppose I have a dataset A with equal classification costs and I found the most important features using a feature selection mechanism.
If I decide to change the classification costs Should I just alter the trained classifier as is done in prex_cost
cost = [0.0 1.0 1.0;
9.0 0.0 1.0;
1.0 1.0 0.0];
wc = w*classc*costm([],cost,class_labels);
or should I go back and alter the classification costs IN THE DATASET, e.g,
A1=A*costm([],cost_matrix)
and do the feature selection again?
Thanks,
Jorge

