Text Classification Implementation
Posted
by
Hearty
on Programmers
See other posts from Programmers
or by Hearty
Published on 2012-05-17T17:46:58Z
Indexed on
2012/10/09
9:53 UTC
Read the original article
Hit count: 188
I've been trying to implement a text classification system. It needs to read a text file, and extract the words and the word frequency. So far, I've been planning to parse the words, put them in a dictionary and save it to an XML file. I am using C++/CLI.
Is this a good implementation or is there a simpler or better implementation?
May be related question (some code implementation): http://stackoverflow.com/questions/10631309/save-dictionary-to-xml-file
© Programmers or respective owner