Views
No views yet
Algorithm, Application, Architecture, Data_Structure, Device, Error_Name, General_Concept, Language,
Library, License, Operating_System, and Protocol.| Type | Examples |
|---|---|
| Algorithm | Auction algorithm, Collaborative filtering |
| Application | Adobe Acrobat, Microsoft Excel |
| Architecture | Graphics processing unit, Wishbone |
| Data_Structure | Array, Hash table, mXOR linked list |
| Device | Samsung Gear S2, iPad, Intel T5300 |
| Error Name | Buffer overflow, Memory leak |
| General_Concept | Memory management, Nouvelle AI |
| Language | C++, Java, Python, Rust |
| Library | Beautiful Soup, FastAPI |
| License | Cryptix General License, MIT License |
| Operating_System | Linux, Ubuntu, Red Hat OS, MorphOS |
| Protocol | TLS, FTPS, HTTP 404 |
bert-large-cased1from transformers import AutoTokenizer, AutoModelForTokenClassification
2
3tokenizer = AutoTokenizer.from_pretrained("taidng/wikiser-bert-large")
4model = AutoModelForTokenClassification.from_pretrained("taidng/wikiser-bert-large")
5
6nlp = pipeline("ner", model=model, tokenizer=tokenizer)
7example = "Windows XP was originally bundled with Internet Explorer 6."
8
9ner_results = nlp(example)
10print(ner_results)1@inproceedings{nguyen2023software,
2 title={Software Entity Recognition with Noise-Robust Learning},
3 author={Nguyen, Tai and Di, Yifeng and Lee, Joohan and Chen, Muhao and Zhang, Tianyi},
4 booktitle={Proceedings of the 38th IEEE/ACM International Conference on Automated Software Engineering (ASE'23)},
5 year={2023},
6 organization={IEEE/ACM}
7}