NekoFi commited on
Commit
88ada1c
1 Parent(s): 5187e60

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +112 -0
README.md ADDED
@@ -0,0 +1,112 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - ja
4
+ license:
5
+ - mit
6
+ multilinguality:
7
+ - monolingual
8
+ size_categories:
9
+ - 1K<n<10K
10
+ task_categories:
11
+ - automatic-speech-recognition
12
+ ---
13
+
14
+ # Dataset Card for Whisper Tokusatsu
15
+
16
+ ## Dataset Description
17
+
18
+ This dataset contains audio segments from Japanese Tokusatsu series with their corresponding transcriptions.
19
+
20
+ ### Languages
21
+
22
+ The dataset is in Japanese (ja).
23
+
24
+ ## Dataset Structure
25
+
26
+ The dataset contains audio files (.wav) and their transcriptions.
27
+
28
+ ### Data Instances
29
+
30
+ An example of a data instance:
31
+
32
+ ```python
33
+ {
34
+ 'audio': {
35
+ 'path': 'path/to/audio/file.wav',
36
+ 'array': [...], # The actual audio time series
37
+ 'sampling_rate': 44100
38
+ },
39
+ 'text': '音声のテキスト転写がここに入ります。' # The transcription of the audio
40
+ }
41
+ ```
42
+
43
+ ### Data Fields
44
+
45
+ - `audio`: The audio file containing the spoken content.
46
+ - `text`: The transcription of the spoken content in the audio file.
47
+
48
+ ### Data Splits
49
+
50
+ The dataset doesn't have predefined splits.
51
+
52
+ ## Dataset Creation
53
+
54
+ ### Source Data
55
+
56
+ The audio segments are extracted from Tokusatsu series episodes.
57
+
58
+ ### Annotations
59
+
60
+ The transcriptions are based on the subtitle files of the episodes.
61
+
62
+ ## Considerations for Using the Data
63
+
64
+ ### Social Impact of Dataset
65
+
66
+ This dataset can be used to improve speech recognition models for Japanese, particularly in the context of Tokusatsu media.
67
+
68
+ ### Discussion of Biases
69
+
70
+ The dataset may contain biases inherent in the source material, including gender representation and language specific to the Tokusatsu genre.
71
+
72
+ ### Other Known Limitations
73
+
74
+ The quality of transcriptions may vary based on the accuracy of the original subtitle files.
75
+
76
+ ## Additional Information
77
+
78
+ ### Dataset Curators
79
+
80
+ This dataset was curated by [Your Name/Organization].
81
+
82
+ ### Licensing Information
83
+
84
+ This dataset is distributed under the MIT License.
85
+
86
+ ### Citation Information
87
+
88
+ If you use this dataset in your research, please cite it as follows:
89
+
90
+ ```
91
+ @dataset{whisper_tokusatsu,
92
+ author = {[Your Name]},
93
+ title = {Whisper Tokusatsu Dataset},
94
+ year = {2024},
95
+ publisher = {Hugging Face},
96
+ url = {https://huggingface.co/datasets/NekoFi/whisper_toku}
97
+ }
98
+ ```
99
+
100
+ ### Contributions
101
+
102
+ Thanks to [@NekoFi] for adding this dataset.
103
+
104
+ ## Visualization
105
+
106
+ Here's a visualization of the data:
107
+
108
+ | Audio | Text |
109
+ |------------------------------------|-----------------------------------|
110
+ | <audio controls><source src="[Hikounin-Raws] Kamen Rider Geats - 01 [555C3D28]/[Hikounin-Raws] Kamen Rider Geats - 01 [555C3D28]_1.wav" type="audio/wav"></audio> | おめでとうございます。 |
111
+ | <audio controls><source src="[Hikounin-Raws] Kamen Rider Geats - 01 [555C3D28]/[Hikounin-Raws] Kamen Rider Geats - 01 [555C3D28]_2.wav" type="audio/wav"></audio> | 今日からあなたは仮面ライダーです。 |
112
+