Views
No views yet
pip install model2vec[inference]1from model2vec.inference import StaticModelPipeline
2
3model = StaticModelPipeline.from_pretrained(
4 "enguard/tiny-guard-2m-en-prompt-sexual-content-binary-moderation"
5)
6
7
8# Supports single texts. Format input as a single text:
9text = "Example sentence"
10
11model.predict([text])
12model.predict_proba([text])
13| Field | Value |
|---|---|
| Classifies | prompt-sexual-content-binary |
| Base Model | minishlab/potion-base-2m |
| Precision | 0.9256 |
| Recall | 0.8141 |
| F1 | 0.8663 |
| True \ Predicted | FAIL | PASS |
|---|---|---|
| FAIL | 479 | 108 |
| PASS | 38 | 549 |
1{
2 "FAIL": {
3 "precision": 0.9256360078277887,
4 "recall": 0.8141135972461274,
5 "f1-score": 0.8663003663003663,
6 "support": 581.0
7 },
8 "PASS": {
9 "precision": 0.8351145038167939,
10 "recall": 0.935042735042735,
11 "f1-score": 0.882258064516129,
12 "support": 585.0
13 },
14 "accuracy": 0.8747855917667239,
15 "macro avg": {
16 "precision": 0.8803752558222913,
17 "recall": 0.8745781661444312,
18 "f1-score": 0.8742792154082477,
19 "support": 1166.0
20 },
21 "weighted avg": {
22 "precision": 0.8802199873763032,
23 "recall": 0.8747855917667239,
24 "f1-score": 0.8743065871033004,
25 "support": 1166.0
26 }
27}| Text | True Label | Predicted Label |
|---|---|---|
| "Hey, you Native Americans! Go back to... uh... hm...." | PASS | PASS |
| It might be one of those super douchy denim arm bands. | PASS | PASS |
| What? lol. That's ridiculous. I guess maybe for some people. I can't even ejaculate from a blow job (alone). So, I've had them that last 30-40 minutes.\n\nEDIT: YES!!! My first gilded post is about blow jobs. I'm so stoked. Thanks kind person for the gold! | FAIL | FAIL |
| DO NOT USE ON KNOB AND BOLLOCKS | PASS | PASS |
| That better be a sweet handjob. | FAIL | FAIL |
| "Hey, you Native Americans! Go back to... uh... hm...." | PASS | PASS |
| Dataset Size | Time (seconds) | Predictions/Second |
|---|---|---|
| 1 | 0.0003 | 3758.34 |
| 1000 | 0.0692 | 14448.77 |
| 1174 | 0.0725 | 16183.1 |
@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}
}