Albert Moderation
Collection
Albert Moderation models !
•
2 items
•
Updated
•
2
Albert Moderation 001 is a fine-tuned version of the distilbert/distilbert-base-uncased a distilled version of BERT, smaller and faster.
Developed by Oxygen (oxyapi), with contributions from TornadoSoftwares, Albert Moderation 001 allows you to moderate text content very quickly and efficiently across multiple categories
To utilize Albert Moderation 001 for text classification, you can load the model using the Hugging Face Transformers library:
from transformers import pipeline
text = "Hey little shit, GIVE ME YOUR SNACK !"
classifier = pipeline("text-classification", model="oxyapi/albert-moderation-001", tokenizer="oxyapi/albert-moderation-001")
result = classifier(text,top_k=len(classifier.model.config.id2label))
print(result)
This model is licensed under the Apache 2.0 License.
If you find Albert Moderation 001 useful in your research or applications, please cite it as:
@misc{albertmoderation0012025,
title={Albert Moderation 001: A fast and lightweight moderation model based on BERT},
author={Oxygen (oxyapi)},
year={2024},
howpublished={\url{https://huggingface.co/oxyapi/albert-moderation-001}},
}
Base model
distilbert/distilbert-base-uncased