jbrooksuk / node-summary

Node module that summarizes text using a naive summarization algorithm
http://jbrooksuk.github.io/node-summary/
769 stars 92 forks source link

NP Extraction #2

Open jbrooksuk opened 11 years ago

jbrooksuk commented 11 years ago

I saw on HackerNews today another article from TheTokenizer.com which goes over extraction of main topics from a sentence.

Since node-summary is based on the first post in text summarization, it'd be neat to have this new code ported over too.

There is a new Python script, np_extractor.py which is awesome, however it may be quite hard to port over since it relies on NLTK module, which I believe Node.js doesn't have.

Anyway, it'd be worth a shot to emulate what it's doing.

jbrooksuk commented 11 years ago

Just a quick search and found this, natural module for Node.js - perhaps it'll help.