1
0
mirror of https://github.com/gsi-upm/senpy synced 2024-09-20 22:01:41 +00:00
Go to file
2019-01-09 19:31:51 +01:00
.makefiles Force building before pushing 2018-06-18 17:53:01 +02:00
data@f34155c389 Unify data folders 2018-06-15 16:44:25 +02:00
emotion-anew tweaks for py2/py3 compatibility 2019-01-09 19:29:24 +01:00
emotion-depechemood remove unnecessary import 2019-01-09 19:31:51 +01:00
emotion-wnaffect Unify data folders 2018-06-15 16:44:25 +02:00
example-plugin Add CI/CD and k8s 2018-06-15 09:46:15 +02:00
k8s Bump senpy version to 0.11.3 2018-11-06 14:58:29 +01:00
sentiment-basic tweaks for py2/py3 compatibility 2019-01-09 19:29:24 +01:00
sentiment-meaningCloud Adapt to new mocking of requests 2018-07-24 17:28:32 +02:00
sentiment-taiger tweaks for py2/py3 compatibility 2019-01-09 19:29:24 +01:00
sentiment-vader tweaks for py2/py3 compatibility 2019-01-09 19:29:24 +01:00
.dockerignore Unify data folders 2018-06-15 16:44:25 +02:00
.gitignore Added WordNet-Affect plugin and Makefile 2016-09-21 21:53:37 +02:00
.gitlab-ci.yml Fix resources sentiment-basic 2018-06-20 12:29:01 +02:00
.gitmodules Unify data folders 2018-06-15 16:44:25 +02:00
.travis.yml Added Travis CI 2016-09-22 11:10:13 +02:00
docker-compose.yml Improved docs, docker-compose and dockerfile 2018-06-20 12:16:27 +02:00
Dockerfile Bump senpy version to 0.11.4 2018-11-06 17:23:19 +01:00
LICENSE Initial commit 2015-10-08 18:47:41 +02:00
Makefile Taiger 2018-08-01 11:19:09 +00:00
README.md Improved docs, docker-compose and dockerfile 2018-06-20 12:16:27 +02:00

Senpy Plugins

Requirements

Some of these plugins require licensed files to run, such as lexicons or corpora. You can manually download these resources and add them to the data folder.

Most plugins will look for these resources on activation. By default, we set the flag --allow-fail in senpy, so if a plugin fails to activate, the server will still run with the remaining plugins.

Running

Using docker

To deploy all the plugins in this repository, run:

docker-compose up

A server should now be available at http://localhost:5000.

Alternatively, you can use docker manually with the version of senpy you wish:

docker run --rm -ti -p 5000:5000 -v $PWD:/senpy-plugins gsiupm/senpy:0.10.8-python2.7

Note that some versions are untested.

Manually

First, install senpy from source or through pip:

pip install senpy

Now, you can try to run your plugins:

senpy -f .

Each plugin has different requirements. Senpy will try its best to automatically install requirements (python libraries and NLTK resources) for each plugin. Some cases may require manual installation of dependencies, or external packages.

For developers / Contributors

Licensed data

In our deployments, we keep all licensed data in a private submodule. You will likely need to initialize this submodule if you're a contributor:

git submodule update --init --recursive 

Adding a plugin from a separate repository

To add a plugin that has been developed in its own repository, you can use git-subtree as so:

$mname=<your plugin name>
$murl=<URL to your repository>

git remote add $mname $murl
git subtree add --prefix=$mname $mname master

Make sure to also add

LICENSE

This compilation of plugins for Senpy use Apache 2.0 License. Some of the resources used for train these plugins can not be distributed, specifically, resources for the plugins emotion-anew and emotion-wnaffect. For more information visit Senpy documentation