CoolFace
Modelpublic

onnx-models/gtr-t5-large-onnx

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes10downloads
Model Card

onnx-models/gtr-t5-large-onnx

This is the ONNX-ported version of the sentence-transformers/gtr-t5-large for generating text embeddings.

Model details

  • —Embedding dimension: 768
  • —Max sequence length: 512
  • —File size on disk: 1.25 GB
  • —Modules incorporated in the onnx: Transformer, Pooling, Dense, Normalize

<!--- Describe your model here -->

Usage

Using this model becomes easy when you have light-embed installed:

pip install -U light-embed

Then you can use the model by specifying the original model name like this:

python
from light_embed import TextEmbedding
sentences = [
	"This is an example sentence",
	"Each sentence is converted"
]

model = TextEmbedding('sentence-transformers/gtr-t5-large')
embeddings = model.encode(sentences)
print(embeddings)

or by specifying the onnx model name like this:

python
from light_embed import TextEmbedding
sentences = [
	"This is an example sentence",
	"Each sentence is converted"
]

model = TextEmbedding('onnx-models/gtr-t5-large-onnx')
embeddings = model.encode(sentences)
print(embeddings)

Citing & Authors

Binh Nguyen / binhcode25@gmail.com