Silas-Embedding is an embedding model from Convence Lab for semantic search, retrieval, reranking pipelines, and multimodal embedding experiments.
The model is designed to embed queries and documents into a shared vector space for fast retrieval. It can be used for document search, question-to-passage matching, image-text retrieval experiments, and retrieval-augmented generation pipelines.
Developed by: Convence Lab
Model name: Silas-Embedding
Model type: Embedding model
Primary task: Text and multimodal retrieval
License: Apache 2.0
Core Capabilities
Silas-Embedding focuses on practical retrieval behavior:
Semantic Search - Match natural-language queries to relevant passages or documents.
RAG Pipelines - Use embeddings as the retrieval layer before generation.
Similarity Scoring - Compare query/document or sentence-pair similarity.
Multimodal Retrieval Experiments - Supports image-text style embedding workflows when used with compatible tooling.
Benchmark Results
ParseEmbed
ParseEmbed is an internal Convence retrieval benchmark candidate. These results are provided as an early, unverified benchmark score while the benchmark is still being prepared for broader validation.
1from sentence_transformers import SentenceTransformer
23model = SentenceTransformer("Convence/Silas-Embedding", trust_remote_code=True)45queries =[6"Find the memo where payment hold is capped at 96 hours during Q1.",7]89documents =[10"Cedar privacy requests memo: The payment hold is capped at 96 hours during Q1, after the second failed retry.",11"Cedar privacy requests memo: The payment hold target is at least 96 hours during Q1.",12]1314query_embeddings = model.encode(queries, normalize_embeddings=True)15document_embeddings = model.encode(documents, normalize_embeddings=True)1617scores = query_embeddings @ document_embeddings.T
18print(scores)
For retrieval, use the highest-scoring documents as candidates:
python
1import numpy as np
23top_k =24ranking = np.argsort(-scores[0])[:top_k]56for idx in ranking:7print(float(scores[0][idx]), documents[idx])
Recommended Usage
Semantic Retrieval
Use short instruction prefixes for better retrieval consistency:
text
1query: <user question>
2passage: <document text>
Example:
python
1query ="query: Find the refund policy for enterprise customers."2passage ="passage: Enterprise refund requests must be reviewed within 7 business days."
RAG
Recommended retrieval flow:
Split documents into chunks.
Embed chunks with Silas-Embedding.
Store vectors in a vector database.
Embed the user query.
Retrieve top-k chunks.
Optionally rerank the top results with a reranker.
Pass the final context to a language model.
ParseEmbed-Style Retrieval
For high-precision first-result retrieval, pair Silas-Embedding with a reranker. The ParseEmbed result shows strong candidate retrieval at Recall@5 and Recall@10, while Recall@1 can still improve with more hard-negative training.
ParseEmbed is currently an internal benchmark candidate and should not be treated as an official leaderboard result yet.
Top-1 retrieval is still improving; reranking is recommended for high-stakes retrieval.
Embeddings may be sensitive to prompt formatting, chunk size, and document noise.
Long documents should be chunked before embedding.
The model may retrieve semantically similar but factually incorrect distractors when the corpus contains hard negatives.
Do not use retrieval results without validation for legal, medical, financial, identity, or safety-critical decisions.
Ethics and Safety
Embedding models can be used to retrieve sensitive or private information from large document collections. Users are responsible for applying access controls, dataset permissions, privacy review, and logging policies when deploying this model.
Silas-Embedding should be used with care when indexing personal data, private records, confidential documents, or regulated information.