I've found a similar project here: http://stackoverflow.com/questions/573768/sentiment-analysis-for-twitter-in-python . However, I'm working on C# and need to use a naive Bayesian Classifier that is open source in the same language. Unless someone can shed light on how I can utilize a python Bayesian Classifier to achieve the same goals. Any ideas?
closed as not constructive by Bill the Lizard♦ Feb 9 at 14:05
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
I successfully used the code from this CodeProject article in a project a few years ago and it's still working beautifully with ~99% accuracy. |
|||
|
|
If you don't strictly need naive Bayes, I would suggest libshogun. It has a huge number of high-quality classifiers, and it apparently has been successfully built for win32 on cygwin. After that's built you can just p/invoke to the DLLs from C#. I think you will find it difficult to find a classifier library written in C# due to the often performance-heavy nature of classification, so your best bet is to call a native library such as this. |
|||
|
|
|
please check out this article http://www.codeproject.com/KB/recipes/BayesianCS.aspx. It is very popular |
|||
|
|
|
This might be something to look at: |
|||
|
|