joujiboi commited on
Commit
e06a93a
1 Parent(s): ca3192f

Upload dataset_filtering_info.md

Browse files
Files changed (1) hide show
  1. dataset_filtering_info.md +44 -0
dataset_filtering_info.md ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Dataset filtering info
2
+
3
+ ## Character dedeplication
4
+ ### If any of the following repeat 5 or more times, they were replaced with 4:
5
+ 'あ' 'い' 'う' 'え' 'お','ぁ' 'ぃ' 'ぅ' 'ぇ' 'ぉ' 'ん'
6
+
7
+ For example:「ふにゃあああああああ」->「ふにゃああああ」
8
+
9
+ Reasoning: Some audio contains elongated vowel sounds that are long enough to justify 4 characters
10
+
11
+ ### If any of the following repeat 4 or more times, they were replaced with 3:
12
+ '~' 'ー'
13
+
14
+ For example:「きゃわーーーー!?」->「きゃわーーー!?」
15
+
16
+ Reasoning: Some audio contains elongated vowel sounds that are long enough to justify 4 characters but 3 looks better for 長音符 in my opinion
17
+
18
+ ### If any of the following repeat 3 or more times, they were replaced with 2:
19
+ '!' '?' 'っ' '!?'
20
+
21
+ For example:「は!?!?!?」->「!?!?」
22
+
23
+ Reasoning: These are characters that shouldn't repeat much.
24
+
25
+ ### If any of the following repeat 2 or more times, they were replaced with 1:
26
+ '…'
27
+
28
+ For example:「それは……はい」->「それは…はい」
29
+
30
+ ## Other filtering
31
+ I got rid of trailing「…」
32
+
33
+ For example:「それは…」->「それは」 and 「…そうです」->「そうです」
34
+
35
+ I removed「…」that appears before punctuation
36
+
37
+ For example:「…?」->「?」
38
+
39
+ ## Reflection
40
+ * I should consider katakana characters, for some reason I forgot.
41
+ * I think I'll limit「!?」to no repetitions next time
42
+ * There are 192 transcriptions that start with「。」due to string replacements. I should remove these.
43
+ * I should further remove low quality transcriptions who's only characters are: 'ー' 'っ' 'ッ' '…' '!' '?' etc.
44
+ * Open to feedback