Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

When doing the feature construction for text mining, does Lucene has a better performance in terms of classification/clustering result than the traditional bag-of-word approach?

share|improve this question

1 Answer

up vote 1 down vote accepted

Lucene analyzers gives you more flexibility that most naive feature extractors (language specific stemming & lemmatization, ICU normalization, n-grams and shingle based tokenization...).

It's data / problem / user dependent to determine if that flexibility will allow you to build better models or just add noisy feature in your preprocessed dataset.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.