File size: 820 Bytes
ccae627
 
865088f
 
 
 
 
 
 
 
 
 
 
ccae627
865088f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
license: apache-2.0
language:
- en
tags:
- text-classification
- evaluation
- deberta
- transformers
pipeline_tag: text-classification
base_model:
- microsoft/deberta-v3-small
library_name: transformers
---
# zLoLA-V Quality Classifier

A lightweight classification model built on DeBERTa-v3-small for analyzing input structure, clarity, and intent categories.

## Labels

- clear
- vague
- unsafe
- overloaded
- technical
- creative

## Intended Uses

- Input dataset filtering
- Evaluation workflows
- Input quality inspection
- Safety preprocessing

## Base Model

This model is fine-tuned from:

- microsoft/deberta-v3-small

## Example

```python
from transformers import pipeline

clf = pipeline(
    "text-classification",
    model="asycv/zLoLA-V-p-classifier"
)

clf("Explain transformers in simple terms.")