0.1.0 • Published 11 years ago

topia v0.1.0

Weekly downloads
5
License
-
Repository
-
Last release
11 years ago

Topia TermExtract 1.1.0 for nodejs

Introduction

Allow use topia term extraction from server side js such as node

Install

$ npm install topia
or get it from the github
	

Usage & Examples

var topia=require('../index.js');

var tagger = new topia.Tagger({},{
	'lexicon' : topia.lexicon
});
var filter = new topia.DefaultFilter();
var extractor = new topia.TermExtraction({
	'tagger' : tagger, 'filter' : filter
});

var text="hello world, how are you? hello world, how are you? hello world, how are you? hello world, how are you?";
var tags = extractor.call(text);
tags.sort();
console.log(tags);
	

Orginal Packages

LICENSE

MIT

TODO

* support other languages