SYMBOL INDEX (59 symbols across 5 files) FILE: src/arithmeticcoding_fast.py class ArithmeticCoderBase (line 16) | class ArithmeticCoderBase(object): method __init__ (line 19) | def __init__(self, statesize): method update (line 68) | def update(self, cumul, symbol): method shift (line 106) | def shift(self): method underflow (line 111) | def underflow(self): class ArithmeticEncoder (line 117) | class ArithmeticEncoder(ArithmeticCoderBase): method __init__ (line 120) | def __init__(self, statesize, bitout): method write (line 130) | def write(self, cumul, symbol): method finish (line 139) | def finish(self): method shift (line 143) | def shift(self): method underflow (line 153) | def underflow(self): class ArithmeticDecoder (line 159) | class ArithmeticDecoder(ArithmeticCoderBase): method __init__ (line 163) | def __init__(self, statesize, bitin): method read (line 175) | def read(self, cumul, alphabet_size): method shift (line 208) | def shift(self): method underflow (line 212) | def underflow(self): method read_code_bit (line 218) | def read_code_bit(self): class BitInputStream (line 532) | class BitInputStream(object): method __init__ (line 535) | def __init__(self, inp): method read (line 546) | def read(self): method read_no_eof (line 563) | def read_no_eof(self): method close (line 572) | def close(self): class BitOutputStream (line 582) | class BitOutputStream(object): method __init__ (line 585) | def __init__(self, out): method write (line 592) | def write(self, b): method close (line 607) | def close(self): FILE: src/compressor.py function strided_app (line 60) | def strided_app(a, L, S): # Window len = L, Stride len/stepsize = S function predict_lstm (line 67) | def predict_lstm(X, y, y_original, timesteps, bs, alphabet_size, model_n... function var_int_encode (line 119) | def var_int_encode(byte_str_len, f): function main (line 129) | def main(): FILE: src/decompressor.py function strided_app (line 62) | def strided_app(a, L, S): # Window len = L, Stride len/stepsize = S function create_data (line 69) | def create_data(rows, p=0.5): function predict_lstm (line 75) | def predict_lstm(len_series, timesteps, bs, alphabet_size, model_name, f... function arithmetic_step (line 123) | def arithmetic_step(prob, freqs, dec): function var_int_decode (line 128) | def var_int_decode(f): function main (line 140) | def main(): FILE: src/models.py function biGRU (line 22) | def biGRU(bs,time_steps,alphabet_size): function biGRU_big (line 31) | def biGRU_big(bs,time_steps,alphabet_size): function biGRU_16bit (line 40) | def biGRU_16bit(bs,time_steps,alphabet_size): function biLSTM (line 50) | def biLSTM(bs,time_steps,alphabet_size): function biLSTM_16bit (line 60) | def biLSTM_16bit(bs,time_steps,alphabet_size): function LSTM_multi (line 70) | def LSTM_multi(bs,time_steps,alphabet_size): function LSTM_multi_big (line 80) | def LSTM_multi_big(bs,time_steps,alphabet_size): function LSTM_multi_bn (line 89) | def LSTM_multi_bn(bs,time_steps,alphabet_size): function LSTM_multi_16bit (line 100) | def LSTM_multi_16bit(bs,time_steps,alphabet_size): function LSTM_multi_selu (line 111) | def LSTM_multi_selu(bs,time_steps,alphabet_size): function LSTM_multi_selu_16bit (line 121) | def LSTM_multi_selu_16bit(bs,time_steps,alphabet_size): function GRU_multi (line 133) | def GRU_multi(bs,time_steps,alphabet_size): function GRU_multi_big (line 143) | def GRU_multi_big(bs,time_steps,alphabet_size): function GRU_multi_16bit (line 152) | def GRU_multi_16bit(bs,time_steps,alphabet_size): function FC_4layer_16bit (line 166) | def FC_4layer_16bit(bs,time_steps, alphabet_size): function FC_4layer (line 178) | def FC_4layer(bs,time_steps, alphabet_size): function FC_4layer_big (line 189) | def FC_4layer_big(bs,time_steps, alphabet_size): function FC_16bit (line 200) | def FC_16bit(bs,time_steps,alphabet_size): function FC (line 212) | def FC(bs,time_steps,alphabet_size): FILE: src/trainer.py function loss_fn (line 43) | def loss_fn(y_true, y_pred): function strided_app (line 46) | def strided_app(a, L, S): # Window len = L, Stride len/stepsize = S function generate_single_output_data (line 52) | def generate_single_output_data(file_path,batch_size,time_steps): function fit_model (line 71) | def fit_model(X, Y, bs, nb_epoch, model):