Reputation: 11
I am going to retrieve the posts from facebook and classify the words in the posts into different generic classes like vulgarity,hate,offense,politics,etc inorder to block them. How to use WEKA tool for this purpose? I have used PHP for designing pages.
Upvotes: 0
Views: 3164
Reputation: 2990
You will first need to build a classification model. I presume that this part can be done using the standard Weka GUI. If you haven't used Weka before, you can read up the documentation and help here: http://www.cs.waikato.ac.nz/ml/weka/
Once you have a model with you then it's upto to you how you'd want to interface it with your PHP scripts. Here are some options:
Upvotes: 2