forked from sharathadavanne/sed-crnn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
feature.py
211 lines (170 loc) · 7.74 KB
/
feature.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
import wave
import numpy as np
import utils
import librosa
from IPython import embed
import os
from sklearn import preprocessing
def load_audio(filename, mono=True, fs=44100):
"""Load audio file into numpy array
Supports 24-bit wav-format
Taken from TUT-SED system: https://github.com/TUT-ARG/DCASE2016-baseline-system-python
Parameters
----------
filename: str
Path to audio file
mono : bool
In case of multi-channel audio, channels are averaged into single channel.
(Default value=True)
fs : int > 0 [scalar]
Target sample rate, if input audio does not fulfil this, audio is resampled.
(Default value=44100)
Returns
-------
audio_data : numpy.ndarray [shape=(signal_length, channel)]
Audio
sample_rate : integer
Sample rate
"""
file_base, file_extension = os.path.splitext(filename)
if file_extension == '.wav':
_audio_file = wave.open(filename)
# Audio info
sample_rate = _audio_file.getframerate()
sample_width = _audio_file.getsampwidth()
number_of_channels = _audio_file.getnchannels()
number_of_frames = _audio_file.getnframes()
# Read raw bytes
data = _audio_file.readframes(number_of_frames)
_audio_file.close()
# Convert bytes based on sample_width
num_samples, remainder = divmod(len(data), sample_width * number_of_channels)
if remainder > 0:
raise ValueError('The length of data is not a multiple of sample size * number of channels.')
if sample_width > 4:
raise ValueError('Sample size cannot be bigger than 4 bytes.')
if sample_width == 3:
# 24 bit audio
a = np.empty((num_samples, number_of_channels, 4), dtype=np.uint8)
raw_bytes = np.fromstring(data, dtype=np.uint8)
a[:, :, :sample_width] = raw_bytes.reshape(-1, number_of_channels, sample_width)
a[:, :, sample_width:] = (a[:, :, sample_width - 1:sample_width] >> 7) * 255
audio_data = a.view('<i4').reshape(a.shape[:-1]).T
else:
# 8 bit samples are stored as unsigned ints; others as signed ints.
dt_char = 'u' if sample_width == 1 else 'i'
a = np.fromstring(data, dtype='<%s%d' % (dt_char, sample_width))
audio_data = a.reshape(-1, number_of_channels).T
if mono:
# Down-mix audio
audio_data = np.mean(audio_data, axis=0)
# Convert int values into float
audio_data = audio_data / float(2 ** (sample_width * 8 - 1) + 1)
# Resample
if fs != sample_rate:
audio_data = librosa.core.resample(audio_data, sample_rate, fs)
sample_rate = fs
return audio_data, sample_rate
return None, None
def load_desc_file(_desc_file):
_desc_dict = dict()
for line in open(_desc_file):
words = line.strip().split('\t')
name = words[0].split('/')[-1]
if name not in _desc_dict:
_desc_dict[name] = list()
_desc_dict[name].append([float(words[2]), float(words[3]), __class_labels[words[-1]]])
return _desc_dict
def extract_mbe(_y, _sr, _nfft, _nb_mel):
spec, n_fft = librosa.core.spectrum._spectrogram(y=_y, n_fft=_nfft, hop_length=_nfft/2, power=1)
mel_basis = librosa.filters.mel(sr=_sr, n_fft=_nfft, n_mels=_nb_mel)
return np.log(np.dot(mel_basis, spec))
# ###################################################################
# Main script starts here
# ###################################################################
is_mono = False
__class_labels = {
'brakes squeaking': 0,
'car': 1,
'children': 2,
'large vehicle': 3,
'people speaking': 4,
'people walking': 5
}
# location of data.
folds_list = [1, 2, 3, 4]
evaluation_setup_folder = '/home/adavanne/taitoSharedData/DCASE2017/task_3/TUT-sound-events-2017-development/evaluation_setup'
audio_folder = '/home/adavanne/taitoSharedData/DCASE2017/task_3/TUT-sound-events-2017-development/audio/street'
# Output
feat_folder = '/home/adavanne/taitoSharedData/DCASE2017/task_3/feat/'
utils.create_folder(feat_folder)
# User set parameters
nfft = 2048
win_len = nfft
hop_len = win_len / 2
nb_mel_bands = 40
sr = 44100
# -----------------------------------------------------------------------
# Feature extraction and label generation
# -----------------------------------------------------------------------
# Load labels
train_file = os.path.join(evaluation_setup_folder, 'street_fold{}_train.txt'.format(1))
evaluate_file = os.path.join(evaluation_setup_folder, 'street_fold{}_evaluate.txt'.format(1))
desc_dict = load_desc_file(train_file)
desc_dict.update(load_desc_file(evaluate_file)) # contains labels for all the audio in the dataset
# Extract features for all audio files, and save it along with labels
for audio_filename in os.listdir(audio_folder):
audio_file = os.path.join(audio_folder, audio_filename)
print('Extracting features and label for : {}'.format(audio_file))
y, sr = load_audio(audio_file, mono=is_mono, fs=sr)
mbe = None
if is_mono:
mbe = extract_mbe(y, sr, nfft, nb_mel_bands).T
else:
for ch in range(y.shape[0]):
mbe_ch = extract_mbe(y[ch, :], sr, nfft, nb_mel_bands).T
if mbe is None:
mbe = mbe_ch
else:
mbe = np.concatenate((mbe, mbe_ch), 1)
label = np.zeros((mbe.shape[0], len(__class_labels)))
tmp_data = np.array(desc_dict[audio_filename])
frame_start = np.floor(tmp_data[:, 0] * sr / hop_len).astype(int)
frame_end = np.ceil(tmp_data[:, 1] * sr / hop_len).astype(int)
se_class = tmp_data[:, 2].astype(int)
for ind, val in enumerate(se_class):
label[frame_start[ind]:frame_end[ind], val] = 1
tmp_feat_file = os.path.join(feat_folder, '{}_{}.npz'.format(audio_filename, 'mon' if is_mono else 'bin'))
np.savez(tmp_feat_file, mbe, label)
# -----------------------------------------------------------------------
# Feature Normalization
# -----------------------------------------------------------------------
for fold in folds_list:
train_file = os.path.join(evaluation_setup_folder, 'street_fold{}_train.txt'.format(fold))
evaluate_file = os.path.join(evaluation_setup_folder, 'street_fold{}_evaluate.txt'.format(fold))
train_dict = load_desc_file(train_file)
test_dict = load_desc_file(evaluate_file)
X_train, Y_train, X_test, Y_test = None, None, None, None
for key in train_dict.keys():
tmp_feat_file = os.path.join(feat_folder, '{}_{}.npz'.format(key, 'mon' if is_mono else 'bin'))
dmp = np.load(tmp_feat_file)
tmp_mbe, tmp_label = dmp['arr_0'], dmp['arr_1']
if X_train is None:
X_train, Y_train = tmp_mbe, tmp_label
else:
X_train, Y_train = np.concatenate((X_train, tmp_mbe), 0), np.concatenate((Y_train, tmp_label), 0)
for key in test_dict.keys():
tmp_feat_file = os.path.join(feat_folder, '{}_{}.npz'.format(key, 'mon' if is_mono else 'bin'))
dmp = np.load(tmp_feat_file)
tmp_mbe, tmp_label = dmp['arr_0'], dmp['arr_1']
if X_test is None:
X_test, Y_test = tmp_mbe, tmp_label
else:
X_test, Y_test = np.concatenate((X_test, tmp_mbe), 0), np.concatenate((Y_test, tmp_label), 0)
# Normalize the training data, and scale the testing data using the training data weights
scaler = preprocessing.StandardScaler()
X_train = scaler.fit_transform(X_train)
X_test = scaler.transform(X_test)
normalized_feat_file = os.path.join(feat_folder, 'mbe_{}_fold{}.npz'.format('mon' if is_mono else 'bin', fold))
np.savez(normalized_feat_file, X_train, Y_train, X_test, Y_test)
print('normalized_feat_file : {}'.format(normalized_feat_file))