Update README.md
Browse files
README.md
CHANGED
@@ -22,4 +22,28 @@ widget:
|
|
22 |
---
|
23 |
|
24 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
25 |
-
should probably proofread and complete it, then remove this comment. -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
---
|
23 |
|
24 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
25 |
+
should probably proofread and complete it, then remove this comment. -->
|
26 |
+
|
27 |
+
# <a name="introduction"></a>ViHateT5: Enhancing Hate Speech Detection in Vietnamese with A Unified Text-to-Text Transformer Model | ACL'2024 (Findings)
|
28 |
+
**Disclaimer**: This paper contains examples from actual content on social media platforms that could be considered toxic and offensive.
|
29 |
+
|
30 |
+
ViHateT5-HSD is the fine-tuned model of [ViHateT5](https://huggingface.co/tarudesu/ViHateT5-base) on multiple Vietnamese hate speech detection benchmark datasets.
|
31 |
+
|
32 |
+
The architecture and experimental results of ViHateT5 can be found in the [paper](LINK):
|
33 |
+
|
34 |
+
@inproceedings{
|
35 |
+
}
|
36 |
+
|
37 |
+
The pre-training dataset named VOZ-HSD is available at [HERE](https://huggingface.co/datasets/tarudesu/VOZ-HSD).
|
38 |
+
|
39 |
+
Kindly **CITE** our paper if you use ViHateT5-HSD to generate published results or integrate it into other software.
|
40 |
+
|
41 |
+
**Example usage**
|
42 |
+
```python
|
43 |
+
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
|
44 |
+
|
45 |
+
tokenizer = AutoTokenizer.from_pretrained("tarudesu/ViHateT5-base-HSD")
|
46 |
+
model = AutoModelForSeq2SeqLM.from_pretrained("tarudesu/ViHateT5-base-HSD")
|
47 |
+
```
|
48 |
+
|
49 |
+
Please feel free to contact us by email luannt@uit.edu.vn if you have any further information!
|