Update README.md
Browse files
README.md
CHANGED
|
@@ -14,9 +14,9 @@ tags:
|
|
| 14 |
- cybersecurity
|
| 15 |
---
|
| 16 |
|
| 17 |
-
# Model Card for
|
| 18 |
|
| 19 |
-
The **Secure Modern BERT NER Model** is a fine-tuned transformer based on [**SecureBERT 2.0**](https://huggingface.co/
|
| 20 |
|
| 21 |
It extracts domain-specific entities such as **Indicators, Malware, Organizations, Systems, and Vulnerabilities** from unstructured data sources like threat reports, incident analyses, advisories, and blogs.
|
| 22 |
|
|
@@ -40,7 +40,7 @@ NER in cybersecurity enables:
|
|
| 40 |
- **Task:** Named Entity Recognition (NER)
|
| 41 |
- **License:** Apache-2.0
|
| 42 |
- **Language:** English
|
| 43 |
-
- **Base Model:** [
|
| 44 |
|
| 45 |
#### Supported Entity Labels
|
| 46 |
|
|
@@ -114,7 +114,7 @@ This model can be integrated into:
|
|
| 114 |
```python
|
| 115 |
from transformers import AutoTokenizer, TFAutoModelForTokenClassification, pipeline
|
| 116 |
|
| 117 |
-
model_name = "
|
| 118 |
|
| 119 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
| 120 |
model = TFAutoModelForTokenClassification.from_pretrained(model_name)
|
|
|
|
| 14 |
- cybersecurity
|
| 15 |
---
|
| 16 |
|
| 17 |
+
# Model Card for cisco-ai/SecureBERT2.0-NER
|
| 18 |
|
| 19 |
+
The **Secure Modern BERT NER Model** is a fine-tuned transformer based on [**SecureBERT 2.0**](https://huggingface.co/cisco-ai/SecureBERT2.0-base), designed for **Named Entity Recognition (NER)** in cybersecurity text.
|
| 20 |
|
| 21 |
It extracts domain-specific entities such as **Indicators, Malware, Organizations, Systems, and Vulnerabilities** from unstructured data sources like threat reports, incident analyses, advisories, and blogs.
|
| 22 |
|
|
|
|
| 40 |
- **Task:** Named Entity Recognition (NER)
|
| 41 |
- **License:** Apache-2.0
|
| 42 |
- **Language:** English
|
| 43 |
+
- **Base Model:** [cisco-ai/SecureBERT2.0](https://huggingface.co/cisco-ai/SecureBERT2.0-base)
|
| 44 |
|
| 45 |
#### Supported Entity Labels
|
| 46 |
|
|
|
|
| 114 |
```python
|
| 115 |
from transformers import AutoTokenizer, TFAutoModelForTokenClassification, pipeline
|
| 116 |
|
| 117 |
+
model_name = "cisco-ai/SecureBERT2.0-NER"
|
| 118 |
|
| 119 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
| 120 |
model = TFAutoModelForTokenClassification.from_pretrained(model_name)
|