|
--- |
|
license: mit |
|
language: |
|
- en |
|
base_model: |
|
- google-bert/bert-large-cased |
|
pipeline_tag: token-classification |
|
library_name: transformers |
|
--- |
|
|
|
|
|
|
|
|
|
**How to use** |
|
|
|
|
|
```from transformers import AutoTokenizer, AutoModelForTokenClassification |
|
|
|
tokenizer = AutoTokenizer.from_pretrained("hadiaskari98/SOFTWARE_NER_Fixed") |
|
model = AutoModelForTokenClassification.from_pretrained("hadiaskari98/SOFTWARE_NER_Fixed") |
|
|
|
nlp = pipeline("ner", model=model, tokenizer=tokenizer) |
|
|
|
example = "Python is my favourite programing language." |
|
|
|
ner_results = nlp(example) |
|
print(ner_results) |