All Projects → mbejda → Node-Ark-TweetNLP

mbejda / Node-Ark-TweetNLP

Licence: MIT license
Node wrapper for Ark-TweetNLP.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Node-Ark-TweetNLP

Danlp
DaNLP is a repository for Natural Language Processing resources for the Danish Language.
Stars: ✭ 111 (+593.75%)
Mutual labels:  nlp-library
Sudachipy
Python version of Sudachi, a Japanese tokenizer.
Stars: ✭ 207 (+1193.75%)
Mutual labels:  nlp-library
schrutepy
The Entire Transcript from the Office in Tidy Format
Stars: ✭ 22 (+37.5%)
Mutual labels:  nlp-library
Camel tools
A suite of Arabic natural language processing tools developed by the CAMeL Lab at New York University Abu Dhabi.
Stars: ✭ 124 (+675%)
Mutual labels:  nlp-library
Pyarabic
pyarabic
Stars: ✭ 183 (+1043.75%)
Mutual labels:  nlp-library
Multi Task Nlp
multi_task_NLP is a utility toolkit enabling NLP developers to easily train and infer a single model for multiple tasks.
Stars: ✭ 221 (+1281.25%)
Mutual labels:  nlp-library
Transformers
🤗 Transformers: State-of-the-art Machine Learning for Pytorch, TensorFlow, and JAX.
Stars: ✭ 55,742 (+348287.5%)
Mutual labels:  nlp-library
rsmorphy
Morphological analyzer / inflection engine for Russian and Ukrainian languages rewritten in Rust
Stars: ✭ 27 (+68.75%)
Mutual labels:  nlp-library
Urduhack
An NLP library for the Urdu language. It comes with a lot of battery included features to help you process Urdu data in the easiest way possible.
Stars: ✭ 200 (+1150%)
Mutual labels:  nlp-library
py-lingualytics
A text analytics library with support for codemixed data
Stars: ✭ 36 (+125%)
Mutual labels:  nlp-library
Awesome Pytorch List
A comprehensive list of pytorch related content on github,such as different models,implementations,helper libraries,tutorials etc.
Stars: ✭ 12,475 (+77868.75%)
Mutual labels:  nlp-library
Nlp profiler
A simple NLP library allows profiling datasets with one or more text columns. When given a dataset and a column name containing text data, NLP Profiler will return either high-level insights or low-level/granular statistical information about the text in that column.
Stars: ✭ 181 (+1031.25%)
Mutual labels:  nlp-library
Cn2an
📦 快速转化「中文数字」和「阿拉伯数字」~ (最新特性:分数,日期、温度等转化)
Stars: ✭ 249 (+1456.25%)
Mutual labels:  nlp-library
Lingo
package lingo provides the data structures and algorithms required for natural language processing
Stars: ✭ 113 (+606.25%)
Mutual labels:  nlp-library
lima
The Libre Multilingual Analyzer, a Natural Language Processing (NLP) C++ toolkit.
Stars: ✭ 75 (+368.75%)
Mutual labels:  nlp-library
Turkish Deasciifier
Turkish deasciifier in Python based on Deniz Yüret's turkish-mode for Emacs
Stars: ✭ 108 (+575%)
Mutual labels:  nlp-library
Fnlp
中文自然语言处理工具包 Toolkit for Chinese natural language processing
Stars: ✭ 2,468 (+15325%)
Mutual labels:  nlp-library
bllip-parser
BLLIP reranking parser (also known as Charniak-Johnson parser, Charniak parser, Brown reranking parser) See http://pypi.python.org/pypi/bllipparser/ for Python module.
Stars: ✭ 217 (+1256.25%)
Mutual labels:  nlp-library
ppdb
Interface for reading the Paraphrase Database (PPDB)
Stars: ✭ 22 (+37.5%)
Mutual labels:  nlp-library
spaczz
Fuzzy matching and more functionality for spaCy.
Stars: ✭ 215 (+1243.75%)
Mutual labels:  nlp-library


Ark TweetNLP is a Part-of-Speech Tagging tool for Tweets.

Installation :

TweetNLP Node module uses Node-Java as a dependency. Your project environment should be properly configured to work with Node-Java. Click here to learn more about Node-Java.

npm install tweetnlp --save

Usage :

The following is a copy and paste example of how to use the tweetnlp module.

 var TweetNLP = require("tweetnlp");
 var tweetnlp = new TweetNLP();
 var tweet = '#MakeYourTailgate RT @DAbitty: My @MakersMark Bloody Mary in @Waterford Crystal.';
 tweetnlp.runTagger(tweet, function(error, array) {a
     console.log(array)
 })

Configurations :

TweetNLP Node module uses a trained model by default. You can pass a file path to your own trained model when initializing the module.
Example :

var TweetNLP = require("tweetnlp");
var tweetnlp = new TweetNLP('path/to/trained/model');

### Resources : Official TweetNLP Site :
http://www.ark.cs.cmu.edu/TweetNLP
Ark Tweet-NLP for Node Github:
[https://github.com/mbejda/Node-Ark-TweetNLP](https://github.com/mbejda/Node-Ark-TweetNLP)

My Twitter : @notmilobejda
My Website : mbejda.com

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].