Instructions to use asycv/pq-Classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use asycv/pq-Classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="asycv/pq-Classifier")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("asycv/pq-Classifier", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,51 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
tags:
|
| 6 |
+
- text-classification
|
| 7 |
+
- evaluation
|
| 8 |
+
- deberta
|
| 9 |
+
- transformers
|
| 10 |
+
pipeline_tag: text-classification
|
| 11 |
+
base_model:
|
| 12 |
+
- microsoft/deberta-v3-small
|
| 13 |
+
library_name: transformers
|
| 14 |
---
|
| 15 |
+
# zLoLA-V Quality Classifier
|
| 16 |
+
|
| 17 |
+
A lightweight classification model built on DeBERTa-v3-small for analyzing input structure, clarity, and intent categories.
|
| 18 |
+
|
| 19 |
+
## Labels
|
| 20 |
+
|
| 21 |
+
- clear
|
| 22 |
+
- vague
|
| 23 |
+
- unsafe
|
| 24 |
+
- overloaded
|
| 25 |
+
- technical
|
| 26 |
+
- creative
|
| 27 |
+
|
| 28 |
+
## Intended Uses
|
| 29 |
+
|
| 30 |
+
- Input dataset filtering
|
| 31 |
+
- Evaluation workflows
|
| 32 |
+
- Input quality inspection
|
| 33 |
+
- Safety preprocessing
|
| 34 |
+
|
| 35 |
+
## Base Model
|
| 36 |
+
|
| 37 |
+
This model is fine-tuned from:
|
| 38 |
+
|
| 39 |
+
- microsoft/deberta-v3-small
|
| 40 |
+
|
| 41 |
+
## Example
|
| 42 |
+
|
| 43 |
+
```python
|
| 44 |
+
from transformers import pipeline
|
| 45 |
+
|
| 46 |
+
clf = pipeline(
|
| 47 |
+
"text-classification",
|
| 48 |
+
model="asycv/zLoLA-V-p-classifier"
|
| 49 |
+
)
|
| 50 |
+
|
| 51 |
+
clf("Explain transformers in simple terms.")
|