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.

9 lines 242 B
/* * Lambda function used for wait for empty loop tests. */ exports.handler = function(event, context, callback) { setTimeout(function() { console.log("Timeout finished !") }, 1000); context.succeed({"success": true}); }