Instructions to use aieng-lab/CodeLlama-7b-hf_bug-issue with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use aieng-lab/CodeLlama-7b-hf_bug-issue with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="aieng-lab/CodeLlama-7b-hf_bug-issue")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("aieng-lab/CodeLlama-7b-hf_bug-issue") model = AutoModelForSequenceClassification.from_pretrained("aieng-lab/CodeLlama-7b-hf_bug-issue") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
---
|
| 2 |
library_name: transformers
|
| 3 |
-
license:
|
| 4 |
language:
|
| 5 |
- en
|
| 6 |
metrics:
|
|
@@ -30,4 +30,4 @@ This model classifies GitHub issues as 'bug' or 'not a bug'.
|
|
| 30 |
title = {Evaluating Large Language Models on Non-Code Software Engineering Tasks},
|
| 31 |
year = {2025}
|
| 32 |
}
|
| 33 |
-
```
|
|
|
|
| 1 |
---
|
| 2 |
library_name: transformers
|
| 3 |
+
license: llama2
|
| 4 |
language:
|
| 5 |
- en
|
| 6 |
metrics:
|
|
|
|
| 30 |
title = {Evaluating Large Language Models on Non-Code Software Engineering Tasks},
|
| 31 |
year = {2025}
|
| 32 |
}
|
| 33 |
+
```
|