mirror of
https://github.com/gsi-upm/senpy
synced 2024-11-14 12:42:27 +00:00
31 lines
1.1 KiB
Plaintext
31 lines
1.1 KiB
Plaintext
{
|
|
"name": "sentiment-meaningCloud",
|
|
"module": "sentiment-meaningCloud",
|
|
"description": "Sentiment analysis with meaningCloud service. To use this plugin, you need to obtain an API key from meaningCloud signing up here: https://www.meaningcloud.com/developer/login. When you had obtained the meaningCloud API Key, you have to provide it to the plugin, using param apiKey. Example request: http://senpy.cluster.gsi.dit.upm.es/api/?algo=meaningCloud&language=en&apiKey=<put here your API key>&input=I%20love%20Madrid.",
|
|
"author": "GSI UPM",
|
|
"version": "1.0",
|
|
"extra_params": {
|
|
"language": {
|
|
"aliases": ["language", "l"],
|
|
"required": true,
|
|
"options": ["en","es"],
|
|
"default": "en"
|
|
},
|
|
"model": {
|
|
"aliases": ["model"],
|
|
"required": true,
|
|
"options": ["general"],
|
|
"default": "general"
|
|
},
|
|
"apiKey":{
|
|
"aliases":["meaningCloud-key","apiKey"],
|
|
"required":true
|
|
}
|
|
|
|
},
|
|
"requirements": {},
|
|
"maxPolarityValue": "1",
|
|
"minPolarityValue": "-1"
|
|
|
|
}
|