iammytoo commited on
Commit
9e5289f
·
verified ·
1 Parent(s): 7818b79

Add comprehensive README

Browse files
Files changed (1) hide show
  1. README.md +83 -43
README.md CHANGED
@@ -1,45 +1,85 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: odai_id
5
- dtype: string
6
- - name: odai_type
7
- dtype: string
8
- - name: odai
9
- dtype: string
10
- - name: response
11
- dtype: string
12
- - name: score
13
- dtype: float64
14
- - name: original_score
15
- dtype: float64
16
- - name: original_dataset
17
- dtype: string
18
- - name: split
19
- dtype: string
20
- - name: user_name
21
- dtype: string
22
- - name: award
23
- dtype: string
24
- splits:
25
- - name: train
26
- num_bytes: 2097301.1667427155
27
- num_examples: 9817
28
- - name: validation
29
- num_bytes: 524485.5214783913
30
- num_examples: 2455
31
- - name: test
32
- num_bytes: 655660.3117788931
33
- num_examples: 3069
34
- download_size: 1331271
35
- dataset_size: 3277447.0
36
- configs:
37
- - config_name: default
38
- data_files:
39
- - split: train
40
- path: data/train-*
41
- - split: validation
42
- path: data/validation-*
43
- - split: test
44
- path: data/test-*
45
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - ja
4
+ license: apache-2.0
5
+ task_categories:
6
+ - text-scoring
7
+ - multimodal
8
+ tags:
9
+ - humor
10
+ - japanese
11
+ - multimodal
12
+ - comedy
13
+ pretty_name: Japanese Multimodal Humor Evaluation Dataset
14
+ size_categories:
15
+ - 10K<n<100K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  ---
17
+
18
+ # Japanese Multimodal Humor Evaluation Dataset
19
+
20
+ This dataset combines two Japanese humor datasets for evaluating the funniness of responses to prompts (odai).
21
+
22
+ ## Dataset Description
23
+
24
+ This dataset merges:
25
+ - **bokete dataset**: Image prompts with text responses
26
+ - **keitai dataset**: Text prompts with text responses
27
+
28
+ All scores are normalized to a 0-4 scale for consistency.
29
+
30
+ ## Dataset Structure
31
+
32
+ ### Data Fields
33
+
34
+ - `odai_id`: Unique identifier for the prompt
35
+ - `odai_type`: Type of prompt ('image' or 'text')
36
+ - `odai`: The prompt content (image reference for bokete, text for keitai)
37
+ - `response`: The humorous response text
38
+ - `score`: Normalized humor score (0-4 scale)
39
+ - `original_score`: Original score from the source dataset
40
+ - `original_dataset`: Source dataset ('bokete' or 'keitai')
41
+ - `split`: Original data split
42
+ - `user_name`: Responder name (keitai only)
43
+ - `award`: Award received (keitai only)
44
+
45
+ ### Data Splits
46
+
47
+ The dataset is split into train/validation/test sets with an 80/10/10 ratio.
48
+
49
+ ## Usage
50
+
51
+ ```python
52
+ from datasets import load_dataset
53
+
54
+ dataset = load_dataset("iammytoo/japanese-humor-evaluation")
55
+
56
+ # Access different splits
57
+ train_data = dataset['train']
58
+ val_data = dataset['validation']
59
+ test_data = dataset['test']
60
+
61
+ # Example item
62
+ print(train_data[0])
63
+ ```
64
+
65
+ ## Source Data
66
+
67
+ - bokete dataset: https://huggingface.co/datasets/YANS-official/ogiri-bokete
68
+ - keitai dataset: https://huggingface.co/datasets/YANS-official/ogiri-keitai
69
+
70
+ ## Citation
71
+
72
+ If you use this dataset, please cite the original datasets:
73
+
74
+ ```bibtex
75
+ @misc{japanese-humor-evaluation,
76
+ title={Japanese Multimodal Humor Evaluation Dataset},
77
+ author={iammytoo},
78
+ year={2024},
79
+ publisher={HuggingFace}
80
+ }
81
+ ```
82
+
83
+ ## License
84
+
85
+ This dataset is released under the Apache 2.0 license, following the original datasets' licensing.