I am working on a project which perform text auto classification, I have a lot of data set like as below:
Text | CategoryName
xxxxx... | AA
yyyyy... | BB
zzzzz... | AA
then, i will use above data set to generate a classifier, once new text coming, the classifier can label new text with correct CategoryName (text is natural language, size between 10-10000)
Now, the problem is, the original data set contains some incorrect data, (E.g. AAA should be labeled as Category AA, but it is labeled as Category BB accidentally ) because these data is classified manually. And i don't know which label is wrong and how many percentage is wrong because i can't review all data manually....
So my question is, what should i do?
- Can i find wrong label via some automatic way?
- How to increase presicion and recall when new data coming?
- How to evaluate impact of wrong data?(since i don't know how many percentage data is wrong)
- Any other suggestion?