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.8.tar.gz
(12.9 kB
view details)
Built Distribution
File details
Details for the file light_embed-0.1.8.tar.gz
.
File metadata
- Download URL: light_embed-0.1.8.tar.gz
- Upload date:
- Size: 12.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 099ee6184d4bda580af0ff935263088a6281fb6b7272ec4af0013a8684919200 |
|
MD5 | 9d8b5759542ccd4b96999b3dd77ba3aa |
|
BLAKE2b-256 | e2ca49922eea8121d4ee17df94e3ff15fa1a87f9857aa3c84c5ddadf8cb2b2bc |
File details
Details for the file light_embed-0.1.8-py3-none-any.whl
.
File metadata
- Download URL: light_embed-0.1.8-py3-none-any.whl
- Upload date:
- Size: 15.1 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 | 962c8beb96f5c23c3a8577712be223d53f309fd35fa6b566fd4f312872a95e7a |
|
MD5 | 4af6cf35c18c18b43303f917210ac3f5 |
|
BLAKE2b-256 | 746148fd04bb2e4f1c970e08388f131c54a1b673f8af5485c89f53b463569e0c |