├── .gitignore ├── LICENSE ├── README.md ├── displacy ├── README.md ├── app.py └── requirements.txt ├── matcher ├── README.md ├── app.py └── requirements.txt └── sense2vec ├── README.md ├── app.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/spacy-services/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/spacy-services/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/spacy-services/HEAD/README.md -------------------------------------------------------------------------------- /displacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/spacy-services/HEAD/displacy/README.md -------------------------------------------------------------------------------- /displacy/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/spacy-services/HEAD/displacy/app.py -------------------------------------------------------------------------------- /displacy/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/spacy-services/HEAD/displacy/requirements.txt -------------------------------------------------------------------------------- /matcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/spacy-services/HEAD/matcher/README.md -------------------------------------------------------------------------------- /matcher/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/spacy-services/HEAD/matcher/app.py -------------------------------------------------------------------------------- /matcher/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/spacy-services/HEAD/matcher/requirements.txt -------------------------------------------------------------------------------- /sense2vec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/spacy-services/HEAD/sense2vec/README.md -------------------------------------------------------------------------------- /sense2vec/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/spacy-services/HEAD/sense2vec/app.py -------------------------------------------------------------------------------- /sense2vec/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/spacy-services/HEAD/sense2vec/requirements.txt --------------------------------------------------------------------------------