HendrikStrobelt / LSTMVis

Visualization Toolbox for Long Short Term Memory networks (LSTMs)

Repository from Github https://github.comHendrikStrobelt/LSTMVisRepository from Github https://github.comHendrikStrobelt/LSTMVis

check for discretization

HendrikStrobelt opened this issue · comments

false:

cs[cs >= activation_threshold_corrected] = 1
cs[cs < activation_threshold_corrected] = -1

right:

all_below = cs<activation_threshold_corrected
cs[:,:] = 1
cs[all_below] = -1