Fast and Lightweight Text Embedding
Project description
LightEmbed
LightEmbed is a light-weight, fast, and efficient tool for generating sentence embeddings. It does not rely on heavy dependencies like PyTorch and Transformers, making it suitable for environments with limited resources.
Benefits
1. Light-weight
- Minimal Dependencies: LightEmbed does not depend on PyTorch and Transformers.
- Low Resource Requirements: Operates smoothly with minimal specs: 1GB RAM, 1 CPU, and no GPU required.
2. Fast (as light)
- ONNX Runtime: Utilizes the ONNX runtime, which is significantly faster compared to Sentence Transformers that use PyTorch.
3. Same as Original Sentence Transformers' Outputs
- Consistency: Incorporates all modules from a Sentence Transformer model, including normalization and pooling.
- Accuracy: Produces embedding vectors identical to those from Sentence Transformers.
Installation
pip install -U light-embed
Usage
Then you can use the model like this:
from light_embed import TextEmbedding
sentences = ["This is an example sentence", "Each sentence is converted"]
model = TextEmbedding('sentence-transformers-model-name')
embeddings = model.encode(sentences)
print(embeddings)
For example:
from light_embed import TextEmbedding
sentences = ["This is an example sentence", "Each sentence is converted"]
model = TextEmbedding('sentence-transformers/all-MiniLM-L6-v2')
embeddings = model.encode(sentences)
print(embeddings)
Citing & Authors
Binh Nguyen / binhcode25@gmail.com
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
light_embed-0.1.4.tar.gz
(8.5 kB
view details)
Built Distribution
File details
Details for the file light_embed-0.1.4.tar.gz
.
File metadata
- Download URL: light_embed-0.1.4.tar.gz
- Upload date:
- Size: 8.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fbf347d9d04ee1237780e0c7ddf163c5d80607404bc585f76ddfcc1a1fa43d91 |
|
MD5 | 75c24984bcec2fc8f7f3d1c36c461a93 |
|
BLAKE2b-256 | 05d40e55d517134cb2fae458111bdd377fb63ebe2f5b5092f4f20297bb23ecd3 |
File details
Details for the file light_embed-0.1.4-py3-none-any.whl
.
File metadata
- Download URL: light_embed-0.1.4-py3-none-any.whl
- Upload date:
- Size: 9.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b7e9889e185527e7101931d03383d32855c9264a9f4e5755d2f4c5355fa0eebf |
|
MD5 | a0546b4e68616c880b4a096340b794e2 |
|
BLAKE2b-256 | 069bb403a7a54bfca3b092e690f121a9c5dae7dd163376597cadf011d16ace33 |