Datasets:
QCRI
/

Modalities:
Image
Text
Formats:
parquet
Languages:
Arabic
ArXiv:
Libraries:
Datasets
pandas
License:
Firoj commited on
Commit
685f078
1 Parent(s): f980c42

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +50 -25
README.md CHANGED
@@ -1,25 +1,50 @@
1
- ---
2
- license: cc-by-nc-sa-4.0
3
- dataset_info:
4
- features:
5
- - name: id
6
- dtype: string
7
- - name: text
8
- dtype: string
9
- - name: image
10
- dtype: image
11
- - name: img_path
12
- dtype: string
13
- splits:
14
- - name: train
15
- num_bytes: 288846844.171
16
- num_examples: 4007
17
- - name: dev
18
- num_bytes: 45903775.0
19
- num_examples: 584
20
- - name: test
21
- num_bytes: 81778364.176
22
- num_examples: 1134
23
- download_size: 423373959
24
- dataset_size: 416528983.347
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
+