Skip to content

Commit

Permalink
Disable PDB
Browse files Browse the repository at this point in the history
  • Loading branch information
shuttle1987 committed Oct 14, 2018
1 parent 056d090 commit 4b092b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion persephone/preprocess/feat_extract.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def fbank(wav_path, flat=True):
""" Currently grabs log Mel filterbank, deltas and double deltas."""

(rate, sig) = wav.read(wav_path)
import pdb; pdb.set_trace()
#import pdb; pdb.set_trace()
if len(sig) == 0:
logger.warning("Empty wav: {}".format(wav_path))
fbank_feat = python_speech_features.logfbank(sig, rate, nfilt=40)
Expand Down

0 comments on commit 4b092b1

Please sign in to comment.