Model reference · open weights

Echo-DSRN.3-Embed-Exp

Available as managed deployment Embeddings ethicalabs Embeddings 1 variants 1k dl/mo

Echo-DSRN.3-Embed-Exp is an open-weight embedding model from ethicalabs. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.

Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.

What it is

Released byethicalabs
TypeEmbedding models
TaskEmbeddings
Parameters (lead)98M
Context2k tokens
Runs withsentence-transformers
Released2026-06-17
Popularity1k downloads / month
LicenceUnknown

About

What Echo-DSRN.3-Embed-Exp is

[!WARNING] This repository contains experimental models designed strictly for academic evaluation and research purposes.

Critical Constraints:

Read the full model card
  • No Production Deployment: Experimental models must not be deployed in commercial, enterprise, or mission-critical environments under any circumstances.
  • No Liability: Experimental models are provided "as-is" without warranties of any kind. The developers assume zero liability for downstream consequences, system integration failures, or regulatory non-compliance resulting from unauthorized deployment.

This is a high-performance experimental sentence embedding model based on the recurrent-hybrid Echo-DSRN architecture.

It scales linearly ($O(N)$) with sequence length, offering extreme efficiency and sub-millisecond latency on both CPU and GPU.

🚀 Model Details

📊 Evaluation Results (MTEB STS)

Spearman Rank Correlation scores on Semantic Textual Similarity (STS) benchmark tasks:

Benchmark TaskEcho-DSRN (Ours)
STS120.6667
STS130.7692
STS140.7683
STS150.8227
STS160.7460
STSBenchmark0.7293
SICK-R0.7876
Average STS0.7557

⚡ Efficiency and Systems Scaling Profile

Inference performance (latency and peak VRAM allocation) on GPU and CPU configurations across different sequence lengths:

GPU Latency & VRAM Benchmark

Sequence LengthEcho-DSRN Latency (GPU)Echo-DSRN VRAM (GPU)
12815.93 ms516.69 MB
25617.56 ms548.44 MB
51232.14 ms604.95 MB
102471.30 ms710.96 MB
2048155.26 ms932.99 MB
4096N/A (OOR)N/A (OOR)

CPU Latency Benchmark

Sequence LengthEcho-DSRN Latency (CPU)
12848.50 ms
25684.94 ms
512160.93 ms
1024328.93 ms
2048727.57 ms
4096N/A (OOR)

Note: 'N/A (OOR)' indicates sequence length exceeds model's maximum position embedding range.

🏗️ Architecture Details

PropertyValue
Layers8
Hidden Dim512
Vocab Size32017
Attention Heads4

📊 Parameter Breakdown

ComponentParameters% of Total
Total98.26M (98,264,064)100%
Embeddings16.39M16.68%
DSRN Recurrent Blocks81.87M83.32%
Norms & Biases5120.00%

💻 Usage

You can load and use this model directly via sentence-transformers:

from sentence_transformers import SentenceTransformer

# Load model with auto-mapping enabled
model = SentenceTransformer("ethicalabs/Echo-DSRN-v0.1.3-Embed-Exp", trust_remote_code=True)

# Encode text to get 2048-dimensional embeddings
sentences = ["The recurrent slow state contains the aligned sequence representations.", "Echo-DSRN has linear complexity."]
embeddings = model.encode(sentences)
print(embeddings.shape) # (2, 2048)

🛠️ Training Procedure

The model was trained in three sequential phases:

  1. Contrastive Pre-training: Representation space alignment using natural language inference datasets.
  2. Fine-grained Similarity Tuning: Fine-tuning using semantic textual similarity benchmarks to calibrate similarity scores.
  3. Multi-Task Generalization Tuning: Training on NLI retrieval and STS semantic similarity.

This model card was automatically generated by scripts/generate_model_card.py.


Note on tokenizer padding

The benchmark results on this card (STS table) were measured with left padding (padding_side: left), and this model version reproduces them under that convention. A right-padded training version is planned: right padding keeps padded-batch embeddings consistent with single-request embeddings (leading pad tokens do not pollute the recurrent state), so future checkpoints will be batch-composition independent.

From the published model card. Full card on the HuggingFace links in the sidebar.

Using it via the API

Call it like any OpenAI endpoint

Once AxForge deploys echo-dsrn-3-embed-exp for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (echo-dsrn-3-embed-exp below is illustrative; you get the exact model name on deployment.)

$ curl -sS https://api.axforge.ai/v1/embeddings \
  -H "Authorization: Bearer $AXFORGE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"echo-dsrn-3-embed-exp","input":"text to embed"}'

Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.

© 2026 AxForge · EU-hosted AI infrastructure Pricing Docs Trust Privacy Terms