Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pattern recognition for Datamining and text based anaylysis

I am in process of creating a software for dumping plain text of whatever users have commented and posted on their Twitter profile regarding some Cosmetic Product "XYZ". I have parsed the JSON objects received from Twitter API and dumped the raw data in MySql database.

Now I have to do analysis of those plain text to fetch patterns whether it is a good comment or a bad comment etc regarding the Cosmetic Product "XYZ" and feed this info into a separate API for creating dymnamic visual charts in HTML.

I am totally new in this field of DataMining and text based pattern recognition. Will really appreciate if anyone could suggest how to go ahead with pattern recognition algorithm from this plain text in my database to provide feed to my separate visual charts API.

like image 205
sunny_dev Avatar asked Dec 05 '22 15:12

sunny_dev


1 Answers

I really encourage you to watch the following NLP Stanford lectures and in particular:

  • Week 3 - Sentiment Analysis (which it is what you want to achieve)
  • Week 4 - Relation Extraction (Hearst's patterns, etc...)
  • I think you'll find them a very valuable resource.

    like image 56
    user278064 Avatar answered Jan 06 '23 07:01

    user278064