Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Filtering Attributes with Weka

Tags:

weka

I have a simple question about filtering attributes in WEKA.

Let's say I have 500 attributes 30 classes and 100 samples for each class which equals 3000 rows and 500 columns. This causes time and memory problems a you can guess.

How do I filter attributes that occur only once or twice (or n times) in 3000 rows. And is it a good idea?

Thank you

like image 900
hrzafer Avatar asked Jun 06 '26 07:06

hrzafer


1 Answers

Use the following filter

weka.filters.unsupervised.attribute.RemoveUseless

This filter removes attributes that do not vary at all or that vary too much. All constant attributes are deleted automatically, along with any that exceed the maximum percentage of variance parameter.

like image 90
George Dontas Avatar answered Jun 10 '26 18:06

George Dontas