prompt-harassment-binary (moderation)
Collection
Tiny guardrails for 'prompt-harassment-binary' trained on https://huggingface.co/datasets/enguard/multi-lingual-prompt-moderation.
•
5 items
•
Updated
This model is a fine-tuned Model2Vec classifier based on minishlab/potion-base-8m for the prompt-harassment-binary found in the enguard/multi-lingual-prompt-moderation dataset.
pip install model2vec[inference]
from model2vec.inference import StaticModelPipeline
model = StaticModelPipeline.from_pretrained(
"enguard/tiny-guard-8m-en-prompt-harassment-binary-moderation"
)
# Supports single texts. Format input as a single text:
text = "Example sentence"
model.predict([text])
model.predict_proba([text])
Below is a quick overview of the model variant and core metrics.
| Field | Value |
|---|---|
| Classifies | prompt-harassment-binary |
| Base Model | minishlab/potion-base-8m |
| Precision | 0.8895 |
| Recall | 0.7767 |
| F1 | 0.8292 |
| True \ Predicted | FAIL | PASS |
|---|---|---|
| FAIL | 1539 | 445 |
| PASS | 192 | 1792 |
{
"FAIL": {
"precision": 0.8894675925925926,
"recall": 0.7766548762001011,
"f1-score": 0.8292419746425681,
"support": 1979.0
},
"PASS": {
"precision": 0.800811176205498,
"recall": 0.9029471544715447,
"f1-score": 0.8488177692858849,
"support": 1968.0
},
"accuracy": 0.8396250316696225,
"macro avg": {
"precision": 0.8451393843990453,
"recall": 0.8398010153358229,
"f1-score": 0.8390298719642265,
"support": 3947.0
},
"weighted avg": {
"precision": 0.8452629238695619,
"recall": 0.8396250316696225,
"f1-score": 0.8390025938110625,
"support": 3947.0
}
}
| Text | True Label | Predicted Label |
|---|---|---|
| you don't have much experience with european gypsies, do you? Touch one, and they spawn cousins all around you like an RPG boss. |
FAIL | FAIL |
| 良い、悪天候時butthole! | FAIL | FAIL |
| I know what you are thinking....but where will he build the fire for the smoke signals? | PASS | PASS |
| Not really even an "unnatural" disaster. Oil comes from the earth, water comes from the earth. Its inevitable that they will find each other. | PASS | PASS |
| You don't even know what you were quoting, do you? You just saw it on the internet somewhere and decided to parrot it here on reddit for karma. Nicely done, I'll give you a C for effort, but you should try harder next time. |
FAIL | PASS |
| you don't have much experience with european gypsies, do you? Touch one, and they spawn cousins all around you like an RPG boss. |
FAIL | FAIL |
| Dataset Size | Time (seconds) | Predictions/Second |
|---|---|---|
| 1 | 0.0003 | 3862.16 |
| 1000 | 0.0624 | 16028.19 |
| 3968 | 0.2244 | 17680.36 |
Below is a general overview of the best-performing models for each dataset variant.
If you use this model, please cite Model2Vec:
@software{minishlab2024model2vec,
author = {Stephan Tulkens and {van Dongen}, Thomas},
title = {Model2Vec: Fast State-of-the-Art Static Embeddings},
year = {2024},
publisher = {Zenodo},
doi = {10.5281/zenodo.17270888},
url = {https://github.com/MinishLab/model2vec},
license = {MIT}
}