Giter Club home page Giter Club logo

node-stanford-postagger's Introduction

Node Stanford POS-tagger

Let your node.js application think like a human.

Usage

node-stanford-postagger has one usage, to interact with Stanford's POS-tagger.

Dependencies

To simply configure and install Stanford's POS-tagger with Turian's XMLPRC service, you can simply run my Stanford POS-tagger Docker image:

docker pull cuzzo/stanford-pos-tagger
docker run -t -i -p 9000:9000 cuzzo/stanford-pos-tagger

Otherwise, carefully follow Stanford's and Turian's instructions. Be prepared to spend hours |= (Just get Docker).

Installation

git clone https://github.com/cuzzo/node-stanford-postagger
cd node-stanford-postagger
npm install

How to Run the XMLRPC Service

As posted above, with Docker, it's as simple as:

docker pull cuzzo/stanford-pos-tagger
docker run -t -i -p 9000:9000 cuzzo/stanford-pos-tagger

Without Docker, I've included util/run-server.sh to simplify running Turian's XMLRPC service for Stanford's POS-tagger in a user-friendly way.

run-server.sh models/left3words-wsj-0-18.tagger 9000

The above runs the service using the built-in left3words-wsj-0-18 training model on port 9000. To run this script, it's required to live in the root directory of the stanford-postagger code--in the same directory as Turian's tagger-server.jar is required to be moved.

Interacting with the XMLRPC Service in node.js

$ bin/tag "Hello, world!"
> [ 'Hello_UH ,_, world_NN !_.\n' ]

Interacting with the XMLRPC Service in Your node.js Project

var Tagger = require("node-stanford-postagger/postagger").Tagger;
var tagger = new Tagger({
  port: "9000",
  host: "localhost"
});

tagger.tag("Hello, world!", function(err, resp) {
  if (err) return console.error(err);
  console.log(resp);
});

If you don't like callbacks and prefer promises, node-stanford-postagger supports denodeify.

var Q = require("q");
var Tagger = require("node-stanford-postagger/postagger").Tagger;
var tagger = new Tagger({
  port: "9000",
  host: "localhost"
});
tagger.denodify(Q);

tagger.tag("Hello, world!")
  .then(function(resp) {
      console.log(resp);
    },
    function(err) {
      console.error(err);
    }
  );

Acknowledgements

License

node-stanford-postagger is free--as in BSD. Hack your heart out, hackers.

  • NOTE: Stanford's POS Tagger itself is licensed GPL.

node-stanford-postagger's People

Contributors

cuzzo avatar tomhebbron avatar

Watchers

Davor Maksimović avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.