Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1,25 +1,50 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# ArMeme Dataset
|
2 |
+
|
3 |
+
## Overview
|
4 |
+
|
5 |
+
ArMeme is the first multimodal Arabic memes dataset that includes both text and images, collected from various social media platforms. It serves as the first resource dedicated to Arabic multimodal research. While the dataset has been annotated to identify propaganda in memes, it is versatile and can be utilized for a wide range of other research purposes, including sentiment analysis, hate speech detection, cultural studies, meme generation, and cross-lingual transfer learning. The dataset opens new avenues for exploring the intersection of language, culture, and visual communication.
|
6 |
+
|
7 |
+
## Dataset Structure
|
8 |
+
|
9 |
+
The dataset is divided into three splits:
|
10 |
+
- **Train**: The training set
|
11 |
+
- **Dev**: The development/validation set
|
12 |
+
- **Test**: The test set
|
13 |
+
|
14 |
+
Each entry in the dataset includes:
|
15 |
+
- `id`: id corresponds to the entry
|
16 |
+
- `text`: The textual content associated with the image.
|
17 |
+
- `image`: The corresponding image.
|
18 |
+
- `img_path`: The file path to the image.
|
19 |
+
|
20 |
+
|
21 |
+
## How to Use
|
22 |
+
|
23 |
+
You can load the dataset using the `datasets` library from Hugging Face:
|
24 |
+
|
25 |
+
```python
|
26 |
+
from datasets import load_dataset
|
27 |
+
|
28 |
+
dataset = load_dataset("QCRI/ArMeme")
|
29 |
+
```
|
30 |
+
|
31 |
+
**Language:** Arabic
|
32 |
+
**Modality:** Multimodal (text + image)
|
33 |
+
**Number of Samples:** ~6000
|
34 |
+
|
35 |
+
|
36 |
+
## License
|
37 |
+
|
38 |
+
This dataset is licensed under the **CC-By-NC-SA-4.0** license.
|
39 |
+
|
40 |
+
## Citation
|
41 |
+
|
42 |
+
```
|
43 |
+
@article{alam2024armeme,
|
44 |
+
title={{ArMeme}: Propagandistic Content in Arabic Memes},
|
45 |
+
author={Alam, Firoj and Hasnat, Abul and Ahmed, Fatema and Hasan, Md Arid and Hasanain, Maram},
|
46 |
+
year={2024},
|
47 |
+
journal={arXiv: 2406.03916},
|
48 |
+
}
|
49 |
+
```
|
50 |
+
|