Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- cyberbullying
|
| 4 |
+
- text-classification
|
| 5 |
+
- transformers
|
| 6 |
+
license: mit
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
# Flaming Detection Model
|
| 10 |
+
|
| 11 |
+
This model is part of the Cyberbully Detection System and is designed to detect flaming in text/images.
|
| 12 |
+
|
| 13 |
+
## Model Type
|
| 14 |
+
transformers
|
| 15 |
+
|
| 16 |
+
## Usage
|
| 17 |
+
|
| 18 |
+
```python
|
| 19 |
+
from huggingface_hub import hf_hub_download
|
| 20 |
+
|
| 21 |
+
# Download the model
|
| 22 |
+
model_path = hf_hub_download(
|
| 23 |
+
repo_id="MuhammadSaadMehboob/cyberbully-flaming",
|
| 24 |
+
filename="model_file.pt" # or appropriate filename
|
| 25 |
+
)
|
| 26 |
+
```
|
| 27 |
+
|
| 28 |
+
## Training
|
| 29 |
+
This model was trained on cyberbullying datasets for flaming detection.
|
| 30 |
+
|
| 31 |
+
## License
|
| 32 |
+
MIT License
|