Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
---
|
| 4 |
+
# Universal Sentence Encoder
|
| 5 |
+
|
| 6 |
+
This model is a full precision version of the original [universal-sentence-encoder](https://tfhub.dev/google/universal-sentence-encoder/4),
|
| 7 |
+
wrapped by input and output reshaping layers.
|
| 8 |
+
|
| 9 |
+
These wrapping processing layers change the input and output signature from Rank-1 (Lists) to Rank-2 (Matrices),
|
| 10 |
+
making the model compatible with the serving environments of the Actian Analytics Engine that requires a feature dimension of Rank-2 or higher.
|
| 11 |
+
|
| 12 |
+
## Description adapted from [TFHub](https://tfhub.dev/google/universal-sentence-encoder/4)
|
| 13 |
+
|
| 14 |
+
The Universal Sentence Encoder encodes text into high dimensional vectors that can be used for text classification, semantic similarity,
|
| 15 |
+
clustering and other natural language tasks.
|
| 16 |
+
|
| 17 |
+
The model is trained and optimized for greater-than-word length text, such as sentences, phrases or short paragraphs.
|
| 18 |
+
It is trained on a variety of data sources and a variety of tasks with the aim of dynamically accommodating a wide variety of natural language understanding tasks.
|
| 19 |
+
The input is column of English strings and the output is a column of 512 dimensional vectors.
|
| 20 |
+
|
| 21 |
+
## Requirements
|
| 22 |
+
|
| 23 |
+
- Actian Analytics Engine: 8.0
|