SYMBOL INDEX (16 symbols across 4 files) FILE: model.py class Model (line 6) | class Model(): method __init__ (line 7) | def __init__(self, n_out, batch_size=1, n_mfcc=20, is_training=True): method residual_block (line 43) | def residual_block(self, input_tensor, size, rate, dim): method conv1d_layer (line 50) | def conv1d_layer(self, input_tensor, size=1, dim=128, bias=False, acti... method aconv1d_layer (line 65) | def aconv1d_layer(self, input_tensor, size=7, rate=2, bias=False, acti... method batch_norm_wrapper (line 81) | def batch_norm_wrapper(self, inputs, decay=0.999): method activation_wrapper (line 98) | def activation_wrapper(self, inputs, activation): FILE: test.py function speech_to_text (line 14) | def speech_to_text(): FILE: train.py function train (line 10) | def train(): FILE: utils.py class SpeechLoader (line 12) | class SpeechLoader(): method __init__ (line 14) | def __init__(self, wav_path=None, label_file=None, batch_size=1, n_mfc... method preprocess (line 40) | def preprocess(self, wav_path, label_file, wavs_file, vocab_file, mfcc... method load_preprocessed (line 119) | def load_preprocessed(self, vocab_file, mfcc_tensor, label_tensor): method create_batches (line 135) | def create_batches(self): method next_batch (line 178) | def next_batch(self): method reset_batch_pointer (line 183) | def reset_batch_pointer(self):