mooz / asari

Japanese sentiment analyzer implemented in Python.

Home Page:https://asari-sentiment.herokuapp.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

asari

Asari is a Japanese sentiment analyzer implemented in Python.

Image
Photo by Andrew Buchanan on Unsplash

Behold, the power of asari:

>>> from asari.api import Sonar
>>> sonar = Sonar()
>>> sonar.ping(text="広告多すぎる♡")
{
  "text" : "広告多すぎる♡",
  "top_class" : "negative",
  "classes" : [ {
    "class_name" : "positive",
    "confidence" : 0.09130180181262026
  }, {
    "class_name" : "negative",
    "confidence" : 0.9086981981873797
  } ]
}

Asari allows you to classify text into positive/negative class, without the need for training. You have only to fed text into asari.

Installation

To install asari, simply use pip:

$ pip install asari

About

Japanese sentiment analyzer implemented in Python.

https://asari-sentiment.herokuapp.com/

License:MIT License


Languages

Language:Python 47.7%Language:HTML 47.6%Language:CSS 4.7%