Project

applied

0.0
No commit activity in last 3 years
No release in over 3 years
Ruby Gem for AI Applied service (ai-applied.nl)
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
~> 0.7
~> 10.1
~> 2.12
~> 0.8
~> 2.4
~> 1.17

Runtime

>= 0.9.0, ~> 0.9
>= 0.9.1, ~> 0.9
 Project Readme

Ruby Gem Icon AI Applied Ruby Gem

Code Climate Travis CI Gem Version Coverage Status

Installation

Add this line to your application's Gemfile:

gem 'applied'

And then execute:

$ bundle install

Setup

Setup configuration parameters

Applied.configure do |c|
  c.api_key = "your-api-key-for-applied-account"
  c.endpoint = "http://api.ai-applied.nl/"
end

Usage

Sentiment API

element = Applied::Sentiment.new

options = {return_original: false, classifier: "default"}

data = [
  {text: "Sono molto contento di quello che è successo", language_iso: "ita", id: 42},
  {text: "Sono molto arrabbiato per quello che è successo", language_iso: "ita", id: 69},
  {text: "Sono molto indifferente a quello che è successo", language_iso: "ita", id: 99}
]

response = element.analyze(data, options)

Text Analysis API

Coming Soon

Text Extract API

Coming Soon

Data Miner API

Coming Soon

Text Label API

Coming Soon

Demographics API

Coming Soon

Language Detection API

Coming Soon