All Projects → AYLIEN → aylien_textapi_nodejs

AYLIEN / aylien_textapi_nodejs

Licence: other
AYLIEN's officially supported node.js client library for accessing Text API

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to aylien textapi nodejs

big-data-upf
RECSM-UPF Summer School: Social Media and Big Data Research
Stars: ✭ 21 (+61.54%)
Mutual labels:  text-analysis
aylien textapi go
AYLIEN's officially supported Go client library for accessing Text API
Stars: ✭ 15 (+15.38%)
Mutual labels:  text-analysis
Giveme5W
Extraction of the five journalistic W-questions (5W) from news articles
Stars: ✭ 16 (+23.08%)
Mutual labels:  text-analysis
ChineseTextAnalysisResouce
中文文本分析相关资源汇总
Stars: ✭ 71 (+446.15%)
Mutual labels:  text-analysis
TRUNAJOD2.0
An easy-to-use library to extract indices from texts.
Stars: ✭ 18 (+38.46%)
Mutual labels:  text-analysis
HurdleDMR.jl
Hurdle Distributed Multinomial Regression (HDMR) implemented in Julia
Stars: ✭ 19 (+46.15%)
Mutual labels:  text-analysis
corpusexplorer2.0
Korpuslinguistik war noch nie so einfach...
Stars: ✭ 16 (+23.08%)
Mutual labels:  text-analysis
support-tickets-classification
This case study shows how to create a model for text analysis and classification and deploy it as a web service in Azure cloud in order to automatically classify support tickets. This project is a proof of concept made by Microsoft (Commercial Software Engineering team) in collaboration with Endava http://endava.com/en
Stars: ✭ 142 (+992.31%)
Mutual labels:  text-analysis
quanteda.corpora
A collection of corpora for quanteda
Stars: ✭ 17 (+30.77%)
Mutual labels:  text-analysis
YelpDatasetSQL
Working with the Yelp Dataset in Azure SQL and SQL Server
Stars: ✭ 16 (+23.08%)
Mutual labels:  text-analysis
uima-uimaj
Apache UIMA Java SDK
Stars: ✭ 50 (+284.62%)
Mutual labels:  text-analysis
nlpbuddy
A text analysis application for performing common NLP tasks through a web dashboard interface and an API
Stars: ✭ 115 (+784.62%)
Mutual labels:  text-analysis
rita
Website, documentation and examples for RiTa
Stars: ✭ 42 (+223.08%)
Mutual labels:  text-analysis
knime-textprocessing
KNIME - Text Processing Extension (Labs)
Stars: ✭ 17 (+30.77%)
Mutual labels:  text-analysis
LSX
A word embeddings-based semi-supervised model for document scaling
Stars: ✭ 42 (+223.08%)
Mutual labels:  text-analysis
woolly
The Text Mining Elixir
Stars: ✭ 48 (+269.23%)
Mutual labels:  text-analysis
learning-stm
Learning structural topic modeling using the stm R package.
Stars: ✭ 103 (+692.31%)
Mutual labels:  text-analysis
kwx
BERT, LDA, and TFIDF based keyword extraction in Python
Stars: ✭ 33 (+153.85%)
Mutual labels:  text-analysis
DaDengAndHisPython
【微信公众号:大邓和他的python】, Python语法快速入门https://www.bilibili.com/video/av44384851 Python网络爬虫快速入门https://www.bilibili.com/video/av72010301, 我的联系邮箱[email protected]
Stars: ✭ 59 (+353.85%)
Mutual labels:  text-analysis
occupationcoder
Given a job title and job description, the algorithm assigns a standard occupational classification (SOC) code to the job.
Stars: ✭ 30 (+130.77%)
Mutual labels:  text-analysis

About

This is the node.js client library for AYLIEN's APIs. If you haven't already done so, you will need to sign up.

Installation

To install, simply use npm:

$ npm install aylien_textapi

See the Developers Guide for additional documentation.

Example

var AYLIENTextAPI = require('aylien_textapi');
var textapi = new AYLIENTextAPI({
  application_id: "YourApplicationId",
  application_key: "YourApplicationKey"
});
textapi.sentiment({'text': 'John is a very good football player!'}, function(error, response) {
  if (error === null) {
    console.log(response);
  }
});
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].