Instructions to use alexjercan/codebert-base-buggy-token-classification with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use alexjercan/codebert-base-buggy-token-classification with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="alexjercan/codebert-base-buggy-token-classification")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("alexjercan/codebert-base-buggy-token-classification") model = AutoModelForTokenClassification.from_pretrained("alexjercan/codebert-base-buggy-token-classification") - Notebooks
- Google Colab
- Kaggle
Librarian Bot: Add base_model information to model
#2
by librarian-bot - opened
README.md
CHANGED
|
@@ -6,6 +6,7 @@ metrics:
|
|
| 6 |
- recall
|
| 7 |
- f1
|
| 8 |
- accuracy
|
|
|
|
| 9 |
model-index:
|
| 10 |
- name: codebert-base-buggy-token-classification
|
| 11 |
results: []
|
|
|
|
| 6 |
- recall
|
| 7 |
- f1
|
| 8 |
- accuracy
|
| 9 |
+
base_model: microsoft/codebert-base
|
| 10 |
model-index:
|
| 11 |
- name: codebert-base-buggy-token-classification
|
| 12 |
results: []
|