Closed meshiguge closed 8 years ago
Yes, that can be replaced with None as the last batch in an epoch may not be equal to N_BATCH
. I have not seen any issues running the code as it is though.
dear bdhingra, how about the MAX_LENGTH
, every input sequence is also different, should I replace it also?
hi, the mask_input was used in GRU layer
l_mask = lasagne.layers.InputLayer(shape=(N_BATCH,MAX_LENGTH), input_var=mask, name='mask')
according to this tutorial shouldN_BATCH
be replaced withNone
? as the n_batchs are not equal in all batch ?