Update README.md
Browse files
README.md
CHANGED
@@ -1,36 +1,40 @@
|
|
1 |
---
|
2 |
configs:
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
license: mit
|
20 |
language:
|
21 |
-
|
22 |
tags:
|
23 |
-
|
|
|
|
|
24 |
size_categories:
|
25 |
-
|
26 |
task_categories:
|
27 |
-
|
|
|
|
|
28 |
dataset_info:
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
---
|
35 |
|
36 |
## Dataset Description
|
@@ -46,7 +50,7 @@ tailored for two tasks: (i) detecting hateful memes and (ii) detecting the socia
|
|
46 |
|
47 |
### Data Downloading
|
48 |
|
49 |
-
|
50 |
|
51 |
You can download this dataset by the following command (make sure that you have installed [Huggingface Datasets](https://huggingface.co/docs/datasets/quickstart)):
|
52 |
|
@@ -59,13 +63,13 @@ task2 = load_dataset("Eftekhar/BHM-Bengali-Hateful-Memes", "task2") # Multiclas
|
|
59 |
|
60 |
### Data Format
|
61 |
|
62 |
-
The dataset is provided in
|
63 |
|
64 |
```csv
|
65 |
{
|
66 |
"image_name": [string] The name of the image,
|
67 |
"Captions": [string] Embedded text on the corresponding images
|
68 |
-
"Labels": [
|
69 |
}
|
70 |
```
|
71 |
|
|
|
1 |
---
|
2 |
configs:
|
3 |
+
- config_name: task1
|
4 |
+
data_files:
|
5 |
+
- split: train
|
6 |
+
path: data/train-task1.csv
|
7 |
+
- split: valid
|
8 |
+
path: data/valid-task1.csv
|
9 |
+
- split: test
|
10 |
+
path: data/test-task1.csv
|
11 |
+
- config_name: task2
|
12 |
+
data_files:
|
13 |
+
- split: train
|
14 |
+
path: data/train-task2.csv
|
15 |
+
- split: valid
|
16 |
+
path: data/valid-task2.csv
|
17 |
+
- split: test
|
18 |
+
path: data/test-task2.csv
|
19 |
license: mit
|
20 |
language:
|
21 |
+
- bn
|
22 |
tags:
|
23 |
+
- Hateful-Memes
|
24 |
+
- Multimodal
|
25 |
+
- Bengali
|
26 |
size_categories:
|
27 |
+
- 1K<n<10K
|
28 |
task_categories:
|
29 |
+
- other
|
30 |
+
- image-classification
|
31 |
+
- image-to-text
|
32 |
dataset_info:
|
33 |
+
- images_path: Memes/
|
34 |
+
columns:
|
35 |
+
- image_name: string
|
36 |
+
- Captions: string
|
37 |
+
- Labels: int32
|
38 |
---
|
39 |
|
40 |
## Dataset Description
|
|
|
50 |
|
51 |
### Data Downloading
|
52 |
|
53 |
+
The data examples were divided into three subsets for each task: *train*, *valid*, and *test*.
|
54 |
|
55 |
You can download this dataset by the following command (make sure that you have installed [Huggingface Datasets](https://huggingface.co/docs/datasets/quickstart)):
|
56 |
|
|
|
63 |
|
64 |
### Data Format
|
65 |
|
66 |
+
The dataset is provided in CSV format and contains the following attributes:
|
67 |
|
68 |
```csv
|
69 |
{
|
70 |
"image_name": [string] The name of the image,
|
71 |
"Captions": [string] Embedded text on the corresponding images
|
72 |
+
"Labels": [string] Class labels.
|
73 |
}
|
74 |
```
|
75 |
|