Skip to content

Commit 2683272

Browse files
committed
WS-3151: Clarify indoc comment in example. Metadata updates.
1 parent 7a33c79 commit 2683272

3 files changed

Lines changed: 23 additions & 16 deletions

File tree

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
1-
<a href="https://www.babelstreet.com/rosette"><img src="https://s3.amazonaws.com/styleguide.basistech.com/logos/rosette-logo.png" width="181" height="47" /></a>
1+
<a href="https://www.babelstreet.com/rosette"><img src="https://charts.babelstreet.com/icon.png" width="181" height="47" /></a>
22

33
---
44

55
[![Packagist](https://img.shields.io/packagist/v/rosette/api.svg?colorB=bright%20green&style=flat)](https://packagist.org/packages/rosette/api)
66

77
## Rosette API
8-
The Rosette Text Analytics Platform uses natural language processing, statistical modeling, and machine learning to
9-
analyze unstructured and semi-structured text across 364 language-encoding-script combinations, revealing valuable
10-
information and actionable data. Rosette provides endpoints for extracting entities and relationships, translating and
11-
comparing the similarity of names, categorizing and adding linguistic tags to text and more.
8+
Rosette uses natural language processing, statistical modeling, and machine learning to analyze unstructured and semi-structured text across hundreds of language-script combinations, revealing valuable information and actionable data. Rosette provides endpoints for extracting entities and relationships, translating and comparing the similarity of names, categorizing and adding linguistic tags to text and more. Rosette Server is the on-premises installation of Rosette, with access to Rosette's functions as RESTful web service endpoints. This solves cloud security worries and allows customization (models/indexes) as needed for your business.
129

1310
## Rosette API Access
1411
- Rosette Cloud [Sign Up](https://developer.rosette.com/signup)

composer.json

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,33 +6,44 @@
66
"license": "Apache-2.0",
77
"keywords": [
88
"address similarity",
9-
"cateogories",
9+
"analyze language",
10+
"babel street",
11+
"categories",
12+
"coreference",
1013
"entity extraction",
11-
"lemmas",
14+
"entity linking",
15+
"event extraction",
16+
"fuzzy matching",
17+
"langauge identification",
18+
"lemmatization",
19+
"match identity",
1220
"morphology",
1321
"name deduplication",
1422
"name similarity",
1523
"name translation",
1624
"ner",
1725
"nlp",
1826
"parts of speech",
27+
"record similarity",
1928
"relationships",
2029
"rosette",
21-
"sentiment",
30+
"semantic similarity",
31+
"semantic vectors",
32+
"sentiment analysis",
2233
"text analytics",
2334
"text embeddings",
24-
"record-similarity"
35+
"tokenization"
2536
],
2637
"authors": [
2738
{
2839
"name": "Babel Street Rosette Ltd",
29-
"email": "php@rosette.com",
30-
"homepage": "https://developer.rosette.com"
40+
"email": "rosette-php@babelstreet.com",
41+
"homepage": "https://babelstreet.com/rosette"
3142
}
3243
],
3344
"support": {
34-
"email": "support@rosette.com",
35-
"issues": "https://github.com/rosette-api/php/issues",
45+
"email": "helpdesk@babelstreet.com",
46+
"issues": "https://babelstreet.my.site.com/support/s/",
3647
"source": "https://github.com/rosette-api/php"
3748
},
3849
"require": {

examples/entities.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,8 @@
1919
$content = $entities_text_data;
2020
$params->set('content', $content);
2121

22-
// Within a document, there may be multiple references to a single entity.
23-
// indoc-coref server chains together all mentions to an entity.
24-
// Uncomment the next line to enable the entity extraction to use the indoc-coref server
22+
// Starting with 1.29.0, an alternate, in-document coreference server was added. It can be accessed
23+
// using the option below. See the documentation for more information.
2524
// $api->setOption('useIndocServer', true);
2625

2726
try {

0 commit comments

Comments
 (0)