How to use from the
Use from the
Transformers library
# 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")
Quick Links

Named Entity Recognition for Cybersecurity

This model has been finetuned with SecureBERT (https://arxiv.org/abs/2204.02685) on the APTNER dataset (https://ieeexplore.ieee.org/document/9776031)

NER Classes

Labels

Downloads last month
304
Safetensors
Model size
0.1B params
Tensor type
I64
Β·
F32
Β·
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ 1 Ask for provider support

Spaces using CyberPeace-Institute/SecureBERT-NER 5

Paper for CyberPeace-Institute/SecureBERT-NER