|
1 | 1 | # PHP NLP-Client
|
2 | 2 |
|
3 | | -This is a simple PHP library for performing Natural Language tasks using Web64's NLP-Server https://github.com/web64/nlpserver. |
| 3 | +This is a simple PHP library for performing multi-lingual Natural Language tasks using Web64's NLP-Server https://github.com/web64/nlpserver. |
4 | 4 |
|
5 | 5 | NLP Tasks Available through Web64's NLP Server:
|
6 | 6 | * [Language detection](#language-detection)
|
7 | 7 | * [Article Extraction from HTML or URL](#article--metadata-extraction)
|
8 | 8 | * [Entity Extraction](#entitiy-extraction--sentiment-analysis-polyglot) (NER) - Multilingual
|
9 | 9 | * [Sentiment Analysis](#sentiment-analysis) - Multilingual
|
10 | | -* Embeddings / Neighbouring words - Multilingual |
11 | | -* Summarization |
| 10 | +* [Embeddings / Neighbouring words - Multilingual](#neighbouring-words-embeddings) |
| 11 | +* [Summarization](#summarization) |
12 | 12 |
|
13 | 13 | NLP Tasks Available through Stanford's CoreNLP Server:
|
14 | | -* Entity Extraction (NER) |
| 14 | +* [Entity Extraction (NER)](#corenlp---entity-extraction-ner) |
15 | 15 |
|
16 | 16 | NLP Tasks Available through Microsoft Labs API:
|
17 | | -* Related concepts |
| 17 | +* [Concept Graph](#concept-graph) |
18 | 18 |
|
19 | 19 | ### Laravel Package
|
20 | 20 | There is also a Laravel wrapper for this library available here: https://github.com/web64/laravel-nlp
|
@@ -196,7 +196,7 @@ Array
|
196 | 196 | */
|
197 | 197 | ```
|
198 | 198 |
|
199 | | -### Summarizer |
| 199 | +### Summarization |
200 | 200 | Extract short summary from a long text
|
201 | 201 | ```php
|
202 | 202 | $summary = $nlp->summarize( $long_text );
|
|
0 commit comments