metadata
license: mit
language:
- en
base_model:
- google-bert/bert-large-cased
pipeline_tag: token-classification
library_name: transformers
How to use
model = AutoModelForTokenClassification.from_pretrained("hadiaskari98/Hardware_NER_prod")
nlp = pipeline("ner", model=model, tokenizer=tokenizer)
example = "GPU's are what power the modern AI revolution."
ner_results = nlp(example)
print(ner_results)