# perform evaluation on classification tasknum_fea = 100 # number of selected featuresclf = svm.LinearSVC() # linear SVM
here is the code from your script.
i want to know how you are setting num_fea = 100 # number of selected features
is their any criteria? because in some scripts you set it 10.
if i have 193 features how much i will give to num_fea?
# perform evaluation on classification task
num_fea = 100 # number of selected features
clf = svm.LinearSVC() # linear SVM
here is the code from your script. i want to know how you are settingnum_fea = 100 # number of selected features
is their any criteria? because in some scripts you set it 10. if i have 193 features how much i will give to num_fea?please help me to understand this
Thanks