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="hadiaskari98/Software_NER_prod")
# Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification

tokenizer = AutoTokenizer.from_pretrained("hadiaskari98/Software_NER_prod")
model = AutoModelForTokenClassification.from_pretrained("hadiaskari98/Software_NER_prod")
Quick Links

How to use


tokenizer = AutoTokenizer.from_pretrained("hadiaskari98/Software_NER_prod")
model = AutoModelForTokenClassification.from_pretrained("hadiaskari98/Software_NER_prod")

nlp = pipeline("ner", model=model, tokenizer=tokenizer)

example = "Windows XP is an example of an operating system."

ner_results = nlp(example)
print(ner_results)
Downloads last month
5
Safetensors
Model size
0.3B params
Tensor type
F32
ยท
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for hadiaskari98/Software_NER_prod

Finetuned
(147)
this model

Space using hadiaskari98/Software_NER_prod 1