Instructions to use CyberPeace-Institute/SecureBERT-NER with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use CyberPeace-Institute/SecureBERT-NER with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="CyberPeace-Institute/SecureBERT-NER")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("CyberPeace-Institute/SecureBERT-NER") model = AutoModelForTokenClassification.from_pretrained("CyberPeace-Institute/SecureBERT-NER") - Notebooks
- Google Colab
- Kaggle
Commit ·
8441a5e
1
Parent(s): 308ac77
Update README.md
Browse files
README.md
CHANGED
|
@@ -13,4 +13,4 @@ This model has been finetuned with SecureBERT (https://arxiv.org/abs/2204.02685)
|
|
| 13 |
on the APTNER dataset (https://ieeexplore.ieee.org/document/9776031)
|
| 14 |
|
| 15 |
## NER Classes
|
| 16 |
-
|
|
|
|
| 13 |
on the APTNER dataset (https://ieeexplore.ieee.org/document/9776031)
|
| 14 |
|
| 15 |
## NER Classes
|
| 16 |
+

|