Rik Nijessen

Results 2 issues of Rik Nijessen

shouldn't this [line](https://github.com/phdowling/abcnn-keras/blob/master/keras_abcnn.py#L139): `nb_filter=nb_filter, nb_row=filter_width, nb_col=embed_dimensions, activation="tanh", border_mode="valid",` be `nb_filter=1, nb_row=filter_width, nb_col=embed_dimensions, activation="tanh", border_mode="valid",` to get an output shape of `(1,steps, embed_dimensions)` which can then be reshaped to: `(steps, embed_dimensions)`...