''' import errno import os from os import path import sys import tarfile import fnmatch import pandas as pd import subprocess import argparse from mapping import phone_maps import python_speech_features as psf import scipy.io.wavfile as wav import numpy as np timit_phone_map = phone_maps(mapping_file="kaldi_60_48_39.map") def clean(word): # LC ALL & strip punctuation which are not required new = word.lower().replace('.', '') new = new.replace(',', '') new = new.replace(';', '') new = new.replace('"', '') new = new.replace('!', '') new = new.replace('?', '') new = new.replace(':', '') new = new.replace('-', '') return new
import errno import os from os import path import sys import tarfile import fnmatch import pandas as pd import subprocess import argparse from mapping import phone_maps import python_speech_features as psf import scipy.io.wavfile as wav import numpy as np timit_phone_map = phone_maps( mapping_file= "D:\deeplearning\Examples\ASR_2018_T01-master\p1\kaldi_60_48_39.map") def clean(word): # LC ALL & strip punctuation which are not required new = word.lower().replace('.', '') new = new.replace(',', '') new = new.replace(';', '') new = new.replace('"', '') new = new.replace('!', '') new = new.replace('?', '') new = new.replace(':', '') new = new.replace('-', '') return new