weka 特征选择

1 infomation gains:

      会对连续的attribute进行离散化:

           NumericToBinary, 将属性进行0/1离散,Converts all numeric attributes into binary attributes (apart from the class attribute, if set): if the value of the numeric attribute is exactly zero, the value of the new attribute will be zero. If the value of the numeric attribute is missing, the value of the new attribute will be missing. Otherwise, the value of the new attribute will be one. The new attributes will be nominal.

           Discretize,An instance filter that discretizes a range of numeric attributes in the dataset into nominal attributes. Discretization is by Fayyad & Irani's MDL method (the default).

你可能感兴趣的:(filter,Class,dataset,attributes)