MB55 commited on
Commit
5d7fac2
·
verified ·
1 Parent(s): ae1fcde

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -11
README.md CHANGED
@@ -1,18 +1,21 @@
 
 
 
 
 
1
 
2
- # EuroLLM-Classifier-QLoRA
3
 
4
- This repository contains a German binary sentence classifier fine-tuned on top of **EuroLLM** using **QLoRA**.
5
 
6
- ## Task
7
 
8
- The model classifies utterances into two categories:
9
 
10
- - `ADVANCE`: Contributions that move the conversation forward (e.g., confirmations, suggestions, answers).
11
- - `NON_ADVANCE`: Utterances that do not advance the dialogue (e.g., misunderstandings, clarifications, hesitation).
12
-
13
- ## Base Model
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")