Text Classification
Transformers
Safetensors
English
hermes_spam_filter
spam-detection
spam-filter
discord
moderation
cpu
lightweight
custom-architecture
custom_code
Instructions to use hidan616/hermes_spam_filter with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use hidan616/hermes_spam_filter with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="hidan616/hermes_spam_filter", trust_remote_code=True)# Load model directly from transformers import AutoModelForSequenceClassification model = AutoModelForSequenceClassification.from_pretrained("hidan616/hermes_spam_filter", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Hermes Spam Filter
|
| 2 |
|
| 3 |
A lightweight Transformer-based spam classifier designed for
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
license: apache-2.0
|
| 5 |
+
library_name: transformers
|
| 6 |
+
pipeline_tag: text-classification
|
| 7 |
+
tags:
|
| 8 |
+
- spam-detection
|
| 9 |
+
- text-classification
|
| 10 |
+
- spam-filter
|
| 11 |
+
- discord
|
| 12 |
+
- moderation
|
| 13 |
+
- cpu
|
| 14 |
+
- lightweight
|
| 15 |
+
- custom-architecture
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
|
| 20 |
# Hermes Spam Filter
|
| 21 |
|
| 22 |
A lightweight Transformer-based spam classifier designed for
|