rosette_api 1.27.1 → 1.37.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/README.md +22 -14
- data/examples/README.md +2 -2
- data/examples/address_similarity.rb +7 -6
- data/examples/categories.rb +7 -6
- data/examples/entities.rb +7 -6
- data/examples/events.rb +23 -0
- data/examples/info.rb +7 -6
- data/examples/language.rb +7 -6
- data/examples/language_multilingual.rb +7 -6
- data/examples/morphology_complete.rb +7 -6
- data/examples/morphology_compound-components.rb +7 -6
- data/examples/morphology_han-readings.rb +7 -6
- data/examples/morphology_lemmas.rb +7 -6
- data/examples/morphology_parts-of-speech.rb +7 -6
- data/examples/multipart_language_file.rb +29 -0
- data/examples/name_deduplication.rb +7 -6
- data/examples/name_similarity.rb +9 -7
- data/examples/name_translation.rb +7 -6
- data/examples/ping.rb +7 -6
- data/examples/record_similarity.rb +114 -0
- data/examples/relationships.rb +7 -6
- data/examples/semantic_vectors.rb +7 -6
- data/examples/sentences.rb +7 -6
- data/examples/sentiment.rb +8 -7
- data/examples/similar_terms.rb +7 -6
- data/examples/syntax_dependencies.rb +7 -6
- data/examples/tokens.rb +7 -6
- data/examples/topics.rb +7 -6
- data/examples/transliteration.rb +7 -6
- data/lib/address_parameter.rb +1 -1
- data/lib/address_similarity_parameters.rb +11 -3
- data/lib/bad_request_error.rb +1 -1
- data/lib/bad_request_format_error.rb +1 -1
- data/lib/document_parameters.rb +4 -5
- data/lib/name_deduplication_parameters.rb +2 -2
- data/lib/name_parameter.rb +20 -2
- data/lib/name_similarity_parameters.rb +49 -16
- data/lib/name_translation_parameters.rb +14 -4
- data/lib/record_similarity_parameters.rb +68 -0
- data/lib/request_builder.rb +89 -49
- data/lib/rosette_api.rb +78 -42
- data/lib/rosette_api_error.rb +3 -3
- metadata +25 -31
metadata
CHANGED
|
@@ -1,36 +1,28 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rosette_api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.37.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
8
|
-
autorequire:
|
|
7
|
+
- Analytics by Babel Street
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
12
|
-
dependencies:
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
description: The Rosette Text Analytics Platform uses natural language processing,
|
|
28
|
-
statistical modeling, and machine learning to analyze unstructured and semi-structured
|
|
29
|
-
text across 364 language-encoding-script combinations, revealing valuable information
|
|
30
|
-
and actionable data. Rosette provides endpoints for extracting entities and relationships,
|
|
31
|
-
translating and comparing the similarity of names, categorizing and adding linguistic
|
|
32
|
-
tags to text and more.
|
|
33
|
-
email: support@rosette.com
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: Our product is a full text processing pipeline from data preparation
|
|
13
|
+
to extracting the most relevant information andanalysis utilizing precise, focused
|
|
14
|
+
AI that has built-in human understanding. Text Analytics provides foundationallinguistic
|
|
15
|
+
analysis for identifying languages and relating words. The result is enriched and
|
|
16
|
+
normalized text forhigh-speed search and processing without translation.Text Analytics
|
|
17
|
+
extracts events and entities — people, organizations, and places — from unstructured
|
|
18
|
+
text and adds thestructure of associating those entities into events that deliver
|
|
19
|
+
only the necessary information for near real-timedecision making. Accompanying tools
|
|
20
|
+
shorten the process of training AI models to recognize domain-specific events.The
|
|
21
|
+
product delivers a multitude of ways to sharpen and expand search results. Semantic
|
|
22
|
+
similarity expands searchbeyond keywords to words with the same meaning, even in
|
|
23
|
+
other languages. Sentiment analysis and topic extraction helpfilter results to what’s
|
|
24
|
+
relevant.
|
|
25
|
+
email: analyticssupport@babelstreet.com
|
|
34
26
|
executables: []
|
|
35
27
|
extensions: []
|
|
36
28
|
extra_rdoc_files: []
|
|
@@ -41,6 +33,7 @@ files:
|
|
|
41
33
|
- examples/address_similarity.rb
|
|
42
34
|
- examples/categories.rb
|
|
43
35
|
- examples/entities.rb
|
|
36
|
+
- examples/events.rb
|
|
44
37
|
- examples/info.rb
|
|
45
38
|
- examples/language.rb
|
|
46
39
|
- examples/language_multilingual.rb
|
|
@@ -49,10 +42,12 @@ files:
|
|
|
49
42
|
- examples/morphology_han-readings.rb
|
|
50
43
|
- examples/morphology_lemmas.rb
|
|
51
44
|
- examples/morphology_parts-of-speech.rb
|
|
45
|
+
- examples/multipart_language_file.rb
|
|
52
46
|
- examples/name_deduplication.rb
|
|
53
47
|
- examples/name_similarity.rb
|
|
54
48
|
- examples/name_translation.rb
|
|
55
49
|
- examples/ping.rb
|
|
50
|
+
- examples/record_similarity.rb
|
|
56
51
|
- examples/relationships.rb
|
|
57
52
|
- examples/semantic_vectors.rb
|
|
58
53
|
- examples/sentences.rb
|
|
@@ -71,15 +66,15 @@ files:
|
|
|
71
66
|
- lib/name_parameter.rb
|
|
72
67
|
- lib/name_similarity_parameters.rb
|
|
73
68
|
- lib/name_translation_parameters.rb
|
|
69
|
+
- lib/record_similarity_parameters.rb
|
|
74
70
|
- lib/request_builder.rb
|
|
75
71
|
- lib/rosette_api.rb
|
|
76
72
|
- lib/rosette_api_error.rb
|
|
77
|
-
homepage: https://developer.
|
|
73
|
+
homepage: https://developer.babelstreet.com/
|
|
78
74
|
licenses:
|
|
79
75
|
- Apache-2.0
|
|
80
76
|
metadata:
|
|
81
77
|
rubygems_mfa_required: 'true'
|
|
82
|
-
post_install_message:
|
|
83
78
|
rdoc_options: []
|
|
84
79
|
require_paths:
|
|
85
80
|
- lib
|
|
@@ -94,8 +89,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
94
89
|
- !ruby/object:Gem::Version
|
|
95
90
|
version: '0'
|
|
96
91
|
requirements: []
|
|
97
|
-
rubygems_version:
|
|
98
|
-
signing_key:
|
|
92
|
+
rubygems_version: 4.0.6
|
|
99
93
|
specification_version: 4
|
|
100
|
-
summary: A Ruby interface for
|
|
94
|
+
summary: A Ruby interface for Babel Street Analytics Server and Hosted Services
|
|
101
95
|
test_files: []
|