tags:

views:

134

answers:

1

I've been searching around this morning, trying to find whether anyone has put together a JS lib that does either sentiment analysis (or even full on NLP) but haven't lucked into anything other than the Java lib that seems to be the standard and some ruby bits and bobs. Wondered if anyone has come across anything in JS that does more than NLP on dates?

update: I found this which seems like a reasonable PoS tagger: http://code.google.com/p/jspos/ and this may be all I need, but still welcome anyone else's finds for anything more fully featured.

+1  A: 

NLP is quite heavy subject for such a lightweight language as JS. If subject is more important than the language, I'd suggest you to check out python nltk.

Eimantas
You're completely right - but I am specifically interested in working on something in JS and could do with even just some very simplistic and light-weight NLP stuff.
Phae
Then the most primitive method is do bruteforce porting from any language's NLP library to JS.
Eimantas
Maybe if I have more time (or more masochistic tendencies) I'll do that :) OK - assuming 'No' is the answer I'm seeking. Thanks.
Phae