The EmbeddingRWKV Model
Project description
EmbeddingRWKV
A high-efficiency text embedding and reranking model based on RWKV architecture.
🚀 Quick Start (End-to-End)
Get text embeddings in just a few lines. The tokenizer and model are designed to work seamlessly together.
Note: Always set
add_eos=Trueduring tokenization. The model relies on the EOS token (65535) to mark the end of a sentence for correct embedding generation.
import os
# Set environment for JIT compilation (Optional, set to '1' for CUDA acceleration)
os.environ["RWKV_CUDA_ON"] = '1'
from rwkv_emb.tokenizer import RWKVTokenizer
from rwkv_emb.model import EmbeddingRWKV
# 1. Initialize Tokenizer & Model
model = EmbeddingRWKV(model_path='/path/to/model.pth')
tokenizer = RWKVTokenizer()
# 2. Tokenize (Text -> Tokens)
text = "Hello world! This is RWKV embedding."
# Important: Enable add_eos=True to append the required EOS token (65535)
tokens = tokenizer.encode(text, add_eos=True)
print(f"Tokens: {tokens}")
# 3. Inference (Tokens -> Embedding)
embedding, state = model.forward(tokens, None)
print(f"Embedding shape: {embedding.shape}")
print(embedding.shape)
⚡ Batch Inference & Performance Guide
For production use cases, running inference in batches is significantly faster.
⚠️ Critical Performance Tip: Pad to Same Length
While the model supports batches with variable sequence lengths, we strongly recommend padding all sequences to the same length for maximum GPU throughput.
- Pad Token:
0 - Performance: Fixed-length batches allow the CUDA kernel to parallelize computation efficiently. Variable-length batches will trigger a slower execution path.
Batch Example (Recommended)
# Example: Batching two sentences of different lengths
sentences = [
"Short sentence.",
"This is a slightly longer sentence for demonstration."
]
# 1. Tokenize all
batch_tokens = [tokenizer.encode(s, add_eos=True) for s in sentences]
# 2. Left pad to the longest sequence in the batch using 0
max_len = max(len(t) for t in batch_tokens)
for i in range(len(batch_tokens)):
pad_len = max_len - len(batch_tokens[i])
# insert 0s to the beginning
batch_tokens[i] = [0] * pad_len + batch_tokens[i]
# batch_tokens is now a rectangular matrix (List of Lists with same length)
print(f"Padded Batch: {batch_tokens}")
# 3. Fast Inference
embeddings, states = model.forward(batch_tokens, None)
# embeddings shape: [Batch_Size, Embedding_Dim]
print("Batch Embeddings:", embeddings.shape)
print("Batch States:", states.shape)
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rwkv_emb-0.0.6.tar.gz.
File metadata
- Download URL: rwkv_emb-0.0.6.tar.gz
- Upload date:
- Size: 397.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a9e8549a5c38a52b47d2cc19a6b20b7f7cd2f4f0a29c4058e801a5f72aafc976
|
|
| MD5 |
6af7a48e0c83a7a7880633c372c04030
|
|
| BLAKE2b-256 |
6b815e9449305117cf6828e18ce4c42883602f653a37b4ad28c59be0d21ed9ed
|
File details
Details for the file rwkv_emb-0.0.6-py3-none-any.whl.
File metadata
- Download URL: rwkv_emb-0.0.6-py3-none-any.whl
- Upload date:
- Size: 396.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c1a3054b6b2b071c21fd84f203b9a3a904f80bb4a565dcd07edefe7377a28d0
|
|
| MD5 |
7b1e985a9ed1f9a4901549b505489e4f
|
|
| BLAKE2b-256 |
0a95c51849fe5ce4898e4652232bd2e82211fd254e8fad8b91098cca3ac9773f
|