Model reference · open weights
SecureBERT2.0-biencoder is an open-weight embedding model from cisco-ai. 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 by | cisco-ai |
|---|---|
| Type | Embedding models |
| Task | Embeddings |
| Parameters (lead) | 149M |
| Context | 8k tokens |
| Runs with | sentence-transformers |
| Based on | cisco-ai/SecureBERT2.0-base |
| Released | 2025-10-06 |
| Popularity | 7k downloads / month |
| Licence | Open weights |
About
The SecureBERT 2.0 Bi-Encoder is a cybersecurity-domain sentence-similarity and document-embedding model fine-tuned from SecureBERT 2.0. It independently encodes queries and documents into a shared vector space for semantic search, information retrieval, and cybersecurity knowledge retrieval.
The Bi-Encoder encodes queries and documents independently into a joint vector space. This architecture enables scalable approximate nearest-neighbor search for candidate retrieval and semantic ranking.
| Dataset Category | Number of Records |
|---|---|
| Cybersecurity QA corpus | 43 000 |
| Security governance QA corpus | 60 000 |
| Cybersecurity instruction–response corpus | 25 000 |
| Cybersecurity rules corpus (evaluation) | 5 000 |
pip install -U sentence-transformers
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("cisco-ai/SecureBERT2.0-biencoder")
sentences = [
"How would you use Amcache analysis to detect fileless malware?",
"Amcache analysis provides forensic artifacts for detecting fileless malware ...",
"To capture and display network traffic"
]
embeddings = model.encode(sentences)
print(embeddings.shape)
from sentence_transformers import util
similarity = util.cos_sim(embeddings, embeddings)
print(similarity)
| Field | Type | Description |
|---|---|---|
| sentence_0 | string | Query or short text input |
| sentence_1 | string | Candidate or document text |
| label | float | Similarity score (1.0 = relevant) |
| sentence_0 | sentence_1 | label |
|---|---|---|
| Under what circumstances does attribution bias distort intrusion linking? | Attribution bias in intrusion linking occurs when analysts allow preconceived notions, organizational pressures, or cognitive shortcuts to influence their assessment of attack origins and relationships between incidents... | 1.0 |
| How can you identify store buffer bypass speculation artifacts? | Store buffer bypass speculation artifacts represent side-channel vulnerabilities that exploit speculative execution to leak sensitive information... | 1.0 |
The model was optimized to maximize semantic similarity between relevant cybersecurity text pairs using contrastive learning.
{
"scale": 20.0,
"similarity_fct": "cos_sim"
}
@article{aghaei2025securebert,
title={SecureBERT 2.0: Advanced Language Model for Cybersecurity Intelligence},
author={Aghaei, Ehsan and Jain, Sarthak and Arun, Prashanth and Sambamoorthy, Arjun},
journal={arXiv preprint arXiv:2510.00240},
year={2025}
}
Cisco AI
For inquiries, please contact ai-threat-intel@cisco.com
From the published model card. Full card on the HuggingFace links in the sidebar.
Using it via the API
Once AxForge deploys securebert2-0-biencoder for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (securebert2-0-biencoder 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":"securebert2-0-biencoder","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.