Instructions to use aieng-lab/codebert-base_se-entities with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use aieng-lab/codebert-base_se-entities with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="aieng-lab/codebert-base_se-entities")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("aieng-lab/codebert-base_se-entities") model = AutoModelForTokenClassification.from_pretrained("aieng-lab/codebert-base_se-entities", device_map="auto") - Notebooks
- Google Colab
- Kaggle
| library_name: transformers | |
| license: mit | |
| language: | |
| - en | |
| metrics: | |
| - seqeval | |
| base_model: | |
| - microsoft/codebert-base | |
| pipeline_tag: token-classification | |
| # CodeBERT base for detecting software engineering terminology | |
| This model detects software engineering terminology in developer forums (e.g., Stack Overflow) as 'Data_Structure', 'Application', 'Code_Block', 'Function", 'Data_Type', 'Language', 'Library', 'Variable', 'Device', 'User_Name', 'User_Interface_Element', 'Class', 'Website', 'Version', 'File_Name', 'File_Type', 'Operating_System', 'Output_Block', 'Algorithm' or 'HTML_XML_Tag'. | |
| - **Developed by:** Fabian C. Peña, Steffen Herbold | |
| - **Finetuned from:** [microsoft/codebert-base](https://huggingface.co/microsoft/codebert-base) | |
| - **Replication kit:** [https://github.com/aieng-lab/senlp-benchmark](https://github.com/aieng-lab/senlp-benchmark) | |
| - **Language:** English | |
| - **License:** MIT | |
| ## Citation | |
| ``` | |
| @misc{pena2025benchmark, | |
| author = {Fabian Peña and Steffen Herbold}, | |
| title = {Evaluating Large Language Models on Non-Code Software Engineering Tasks}, | |
| year = {2025} | |
| } | |
| ``` | |