Update README.md
Browse files
README.md
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
|
| 2 |
-
# EuroLLM
|
| 3 |
|
| 4 |
-
This
|
| 5 |
|
| 6 |
-
|
| 7 |
|
| 8 |
-
|
| 9 |
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
The base model used is: `utter-project/EuroLLM-9B-Instruct`
|
| 16 |
|
| 17 |
## How to Use
|
| 18 |
|
|
@@ -23,4 +26,4 @@ from peft import PeftModel, PeftConfig
|
|
| 23 |
peft_config = PeftConfig.from_pretrained("MB55/EuroLLM-Classifier-QLoRA")
|
| 24 |
base_model = AutoModelForSequenceClassification.from_pretrained(peft_config.base_model_name_or_path)
|
| 25 |
model = PeftModel.from_pretrained(base_model, "MB55/EuroLLM-Classifier-QLoRA")
|
| 26 |
-
tokenizer = AutoTokenizer.from_pretrained("MB55/EuroLLM-Classifier-QLoRA")
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
base_model:
|
| 4 |
+
- utter-project/EuroLLM-9B-Instruct
|
| 5 |
+
---
|
| 6 |
|
| 7 |
+
# EuroLLM QLoRA – Grounding Act Classification
|
| 8 |
|
| 9 |
+
This model is a fine-tuned version of utter-project/EuroLLM-9B-Instruct optimized using QLoRA for efficient binary classification of German dialogue utterances into:
|
| 10 |
|
| 11 |
+
ADVANCE: Contribution that moves the dialogue forward (e.g. confirmations, follow-ups, elaborations)
|
| 12 |
|
| 13 |
+
NON-ADVANCE: Other utterances (e.g. vague responses, misunderstandings, irrelevant comments)
|
| 14 |
|
| 15 |
+
## Use Cases
|
| 16 |
+
Dialogue system analysis
|
| 17 |
+
Teacher-student interaction classification
|
| 18 |
+
Grounding in institutional advising or classroom discourse
|
|
|
|
|
|
|
| 19 |
|
| 20 |
## How to Use
|
| 21 |
|
|
|
|
| 26 |
peft_config = PeftConfig.from_pretrained("MB55/EuroLLM-Classifier-QLoRA")
|
| 27 |
base_model = AutoModelForSequenceClassification.from_pretrained(peft_config.base_model_name_or_path)
|
| 28 |
model = PeftModel.from_pretrained(base_model, "MB55/EuroLLM-Classifier-QLoRA")
|
| 29 |
+
tokenizer = AutoTokenizer.from_pretrained("MB55/EuroLLM-Classifier-QLoRA")
|