gramophone icon indicating copy to clipboard operation
gramophone copied to clipboard

Node library to extract keywords from text

Results 7 gramophone issues
Sort by recently updated
recently updated
newest added

Seriously, we need some changes and I cannot see activity from the admins. If not, there's no problem: fork and publish with other name in npm. But I'd appreciate some...

I have used this text http://online.wsj.com/news/articles/SB10001424127887323611604578398342398991844 with this code ``` var gramophone = require('gramophone') keywords = gramophone.extract(text, {score: true, stem: true}) .sort(function(a, b) { return b.tf - a.tf }) console.log(keywords)...

Adds stop words from 20 other languages (as well as English). When the language is known in advance, the stop word language can be specified as an option; default is...

This respects accented characters and apostrophes in words. It resolves #5

gramophone has a problems with german umlauts ( Ä, Ö, Ü, ä, ö, ü, ß) var gramophone = require('gramophone'); var fs = require('fs'); var result = gramophone.extract('Hallo Welt! Das ist...

Following the example, I issue this chained command: http://bashmodernquantity.com/bash-modern-quantity/2014/1/10/wool-and-copper ``` request = require('request') gramophone = require('gramophone') request('http://bashmodernquantity.com/bash-modern-quantity/2014/1/10/wool-and-copper').pipe(gramophone.stream({html: true, limit: 10})).on('data', console.error.bind(console)); ``` In the results, I'm clearing getting the contents...

Hi, How would you advice to implement tf-idf inside gramophone ? Good work, by the way.