Downloads · 30 days
34
3% of all-time downloads
mudes/multilingual-large
multilingual-large is a token classification model from mudes. Use it when you need labels on individual words, such as names. It is set up for transformers.
We provide state-of-the-art models to detect toxic spans in text. We have evaluated our models on Toxic Spans task at SemEval 2021 (Task 5).
Downloads · 30 days
34
3% of all-time downloads
All-time downloads
1.2K
Public
Repo size
8.9 GB
Likes
2
Public
Click a slice to open those files.
.pt4.5 GB · 67%
From the Hugging Face model README
We provide state-of-the-art models to detect toxic spans in text. We have evaluated our models on Toxic Spans task at SemEval 2021 (Task 5).
You can use this model when you have MUDES installed:
pip install mudes
Then you can use the model like this:
from mudes.app.mudes_app import MUDESApp
app = MUDESApp("multilingual-large", use_cuda=False)
print(app.predict_toxic_spans("You motherfucking cunt", spans=True))
An experimental demonstration interface called MUDES-UI has been released on GitHub and can be checked out in here.
If you find this model helpful, feel free to cite our publication
@inproceedings{ranasinghemudes,
title={{MUDES: Multilingual Detection of Offensive Spans}},
author={Tharindu Ranasinghe and Marcos Zampieri},
booktitle={Proceedings of NAACL},
year={2021}
}
@inproceedings{ranasinghe2021semeval,
title={{WLV-RIT at SemEval-2021 Task 5: A Neural Transformer Framework for Detecting Toxic Spans}},
author = {Ranasinghe, Tharindu and Sarkar, Diptanu and Zampieri, Marcos and Ororbia, Alex},
booktitle={Proceedings of SemEval},
year={2021}
}