-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (25 loc) · 802 Bytes
/
composer.json
File metadata and controls
27 lines (25 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"name": "mitmelon/sentiment",
"type": "library",
"description": "Sentiment is a sentiment classifier. It uses a model of words that are categorised as positive, negative or neutral, and a naive bayes algorithm to calculate sentiment. To improve accuracy, Sentiment removes 'noise' words.",
"keywords": ["sentiment", "text", "nlp", "ai", "algorithm", "sentiment analysis", "naive bayes"],
"homepage": "https://github.com/mitmelon/sentiment",
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "Mitnets Technologies"
}
],
"require": {
"php": ">=7.0"
},
"autoload": {
"psr-4": {
"Sentiment\\":
[
"Sentiment/"
]
}
}
}