joujiboi commited on
Commit
e70a3cf
1 Parent(s): 9ea5ef3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -27
README.md CHANGED
@@ -1,12 +1,4 @@
1
  ---
2
- language:
3
- - ja
4
- license: cc0-1.0
5
- size_categories:
6
- - 10K<n<100K
7
- task_categories:
8
- - automatic-speech-recognition
9
- pretty_name: Japanese-Anime-Speech
10
  dataset_info:
11
  features:
12
  - name: audio
@@ -15,15 +7,19 @@ dataset_info:
15
  dtype: string
16
  splits:
17
  - name: train
18
- num_bytes: 3981327871.675
19
- num_examples: 38325
20
- download_size: 1417935311
21
- dataset_size: 3981327871.675
22
  configs:
23
  - config_name: default
24
  data_files:
25
  - split: train
26
  path: data/train-*
 
 
 
 
27
  tags:
28
  - anime
29
  - japanese
@@ -33,6 +29,10 @@ tags:
33
  - audio-text
34
  - asr
35
  - whisper
 
 
 
 
36
  ---
37
  # Japanese Anime Speech Dataset
38
 
@@ -40,29 +40,23 @@ tags:
40
 
41
  The goal of this dataset is to enhance the proficiency of automatic speech recognition systems, such as OpenAI's [Whisper](https://huggingface.co/openai/whisper-large-v2), in accurately transcribing dialogue from anime and other similar Japanese media. This genre is characterized by unique linguistic features and speech patterns that diverge from conventional Japanese speech.
42
 
43
- The code used for scraping the audio will be available once I feel it is reliable enough and easy-to-use.
44
-
45
  # Changelog
46
 
47
  * V1 - This version contains **16,143** audio-text pairs from the visual novel `IxSHE Tell`. Some cleaning of the transcriptions has been done to get rid of unwanted characters at the start and end of lines, but I intend to do much more for the second version.
48
 
49
- * **V2** - The dataset now contains **23,422** audio-text pairs from three different visual novels. Lots of cleaning has been done to remove nsfw lines, especially noises that aren't words.
50
-
51
- # Dataset information
52
 
53
- * The dataset contains **32.57** hours of labeled audio (OpenAI suggests a minimum of 5 hours for productive [Whisper](https://huggingface.co/openai/whisper-large-v2) fine-tuning).
54
- * The average audio length is 5.0s.
55
-
56
- ### The dataset is comprised of:
57
- * **23,422** audio-text pairs
58
- * **12,782** lines from **IxSHE Tell** (3,739/16,521 were filtered out)
59
- * **8,102** lines from **ユキイロサイン** (1,842/9,944 were filtered out)
60
- * **2,538** lines from **幼馴染のいる暮らし** (26/2564 were filtered out)
61
 
 
62
 
 
 
 
 
63
 
64
  <div class="course-tip course-tip-orange bg-gradient-to-br dark:bg-gradient-to-r before:border-orange-500 dark:before:border-orange-800 from-orange-50 dark:from-gray-900 to-white dark:to-gray-950 border border-orange-50 text-orange-700 dark:text-gray-400">
65
- <p><b>NSFW Warning:</b> Please be advised that the majority of the audio in this dataset is sourced from visual novels and may include content that is not suitable for all audiences, such as suggestive sounds or mature topics. Efforts have been undertaken to minimise this content. </p>
66
  </div>
67
 
68
  # To do
@@ -70,7 +64,7 @@ The code used for scraping the audio will be available once I feel it is reliabl
70
  * [X] Create a dataset of over 10k items
71
  * [X] Create a dataset of over 20k items
72
  * [X] Compress the audio with minimal quality loss
73
- * [ ] Create a dataset of over 30k items
74
  * [ ] Create more workflows for scraping audio from visual novels that use an engine other than Artemis
75
  * [ ] Add audio from more visual novels
76
  * [ ] Convert names in transcriptions to katakana?
 
1
  ---
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  features:
4
  - name: audio
 
7
  dtype: string
8
  splits:
9
  - name: train
10
+ num_bytes: 6338735137.714
11
+ num_examples: 16143
12
+ download_size: 6016375356
13
+ dataset_size: 6338735137.714
14
  configs:
15
  - config_name: default
16
  data_files:
17
  - split: train
18
  path: data/train-*
19
+ task_categories:
20
+ - automatic-speech-recognition
21
+ language:
22
+ - ja
23
  tags:
24
  - anime
25
  - japanese
 
29
  - audio-text
30
  - asr
31
  - whisper
32
+ pretty_name: Japanese-Anime-Speech
33
+ size_categories:
34
+ - 10K<n<100K
35
+ license: cc0-1.0
36
  ---
37
  # Japanese Anime Speech Dataset
38
 
 
40
 
41
  The goal of this dataset is to enhance the proficiency of automatic speech recognition systems, such as OpenAI's [Whisper](https://huggingface.co/openai/whisper-large-v2), in accurately transcribing dialogue from anime and other similar Japanese media. This genre is characterized by unique linguistic features and speech patterns that diverge from conventional Japanese speech.
42
 
 
 
43
  # Changelog
44
 
45
  * V1 - This version contains **16,143** audio-text pairs from the visual novel `IxSHE Tell`. Some cleaning of the transcriptions has been done to get rid of unwanted characters at the start and end of lines, but I intend to do much more for the second version.
46
 
47
+ * V2 - The version contains **23,422** audio-text pairs from three different visual novels. Cleaning has been done to remove most nsfw lines, especially noises that aren't words. The audio is now in mp3 format, rather than wav. This version contains **32.6** hours of audio.
 
 
48
 
49
+ * **V3** - The dataset now contains **38,325** audio-text pairs from five different visual novels. Very thorough cleaning has been done to remove almost all nsfw or low-quality audio files. Transcriptions have been formatted to contain much fewer dramatised duplicated characters (for example 「ああああーーー」), and transcriptions have been made much more consistent (for example, using the same type of quotation mark). This version contains **52.5 hours** of audio.
 
 
 
 
 
 
 
50
 
51
+ # Dataset information
52
 
53
+ * **38,325** audio-text pairs
54
+ * **52.5 hours** of audio (OpenAI suggests a minimum of [5 hours](https://huggingface.co/blog/fine-tune-whisper) for productive [Whisper](https://huggingface.co/openai/whisper-large-v2) fine-tuning).
55
+ * **4.9s** average audio length.
56
+ * **All** transcriptions have been scraped directly from the game files of visual novels.
57
 
58
  <div class="course-tip course-tip-orange bg-gradient-to-br dark:bg-gradient-to-r before:border-orange-500 dark:before:border-orange-800 from-orange-50 dark:from-gray-900 to-white dark:to-gray-950 border border-orange-50 text-orange-700 dark:text-gray-400">
59
+ <p><b>Content Warning:</b> Please be advised that the majority of the audio in this dataset is sourced from visual novels and may include content that is not suitable for all audiences, such as suggestive sounds or mature topics. Efforts have been undertaken to minimise this content as much as possible. </p>
60
  </div>
61
 
62
  # To do
 
64
  * [X] Create a dataset of over 10k items
65
  * [X] Create a dataset of over 20k items
66
  * [X] Compress the audio with minimal quality loss
67
+ * [X] Create a dataset of over 30k items
68
  * [ ] Create more workflows for scraping audio from visual novels that use an engine other than Artemis
69
  * [ ] Add audio from more visual novels
70
  * [ ] Convert names in transcriptions to katakana?