UNPKG

reviews-analysis

Version:

Analyse public vehicle reviews via ML (Aylien) and save the data into a Document Store (Mongo). Supports Classifications and Document and Aspect level Sentiment Analysis.

12 lines (9 loc) 203 B
/* * Lambda function used to test mocking. */ exports.getData = function getData(){ return "WrongData"; } exports.handler = function(event, context) { context.done(null, exports.getData()); };