forked from gooofy/zamia-speech
-
Notifications
You must be signed in to change notification settings - Fork 2
/
gspv2_mic_accept.py
executable file
·134 lines (98 loc) · 3.16 KB
/
gspv2_mic_accept.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright 2019 Guenter Bartsch
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#
# export speech training data to create a wav2letter case
#
import sys
import logging
import os
import codecs
from optparse import OptionParser
from nltools import misc
from nltools.tokenizer import tokenize
from nltools.phonetics import ipa2xsampa
from speech_lexicon import Lexicon
from speech_transcripts import Transcripts
APP_NAME = 'gspv2_mic_accept'
AUDIO_CORPUS = 'gspv2'
#
# main
#
misc.init_app(APP_NAME)
#
# commandline
#
parser = OptionParser("usage: %prog [options]")
parser.add_option ("-v", "--verbose", action="store_true", dest="verbose", help="verbose output")
(options, args) = parser.parse_args()
if options.verbose:
logging.basicConfig(level=logging.DEBUG)
else:
logging.basicConfig(level=logging.INFO)
#
# load transcripts
#
logging.info ('loading transcripts from %s ...' % AUDIO_CORPUS)
transcripts = Transcripts(corpus_name=AUDIO_CORPUS)
logging.info ('loading transcripts from %s ... done.' % AUDIO_CORPUS)
#
# build set of accepted submissions
#
accept = set()
mics = set (['Kinect-RAW', 'Realtek', 'Samson', 'Yamaha', 'Kinect-Beam'])
for utt_id in transcripts:
data = transcripts[utt_id]
if data['quality'] < 2:
continue
parts = utt_id.split('-')
n = len(parts)
mic = '-'.join(parts[n-1:])
if not mic in mics:
mic = '-'.join(parts[n-2:])
if not mic in mics:
logging.error('unknown mic: %s' % mic)
continue
logging.debug('%s -> mic=%s' % (utt_id, mic))
accept.add(utt_id.replace(mic,''))
#
# apply to corresponding submissions that use other mics
#
cnt = 0
for utt_id in transcripts:
data = transcripts[utt_id]
if data['quality'] != 0 :
continue
parts = utt_id.split('-')
n = len(parts)
mic = '-'.join(parts[n-1:])
if not mic in mics:
mic = '-'.join(parts[n-2:])
if not mic in mics:
logging.error('unknown mic: %s' % mic)
continue
logging.debug('%s -> mic=%s' % (utt_id, mic))
base_utt_id = utt_id.replace(mic, '')
if base_utt_id in accept:
cnt += 1
logging.info('accepting utt #%5d : %s' % (cnt, utt_id))
transcripts[utt_id]['quality'] = 2
transcripts[utt_id]['ts'] = u' '.join(tokenize(transcripts[utt_id]['prompt'], lang='de', keep_punctuation=True))
logging.info("saving transcripts...")
transcripts.save()
logging.info("saving transcripts...done.")