pydata-carolinas-2016
pydata-carolinas-2016 copied to clipboard
:bar_chart: My tutorial for PyData Carolinas 2016
Results
2
pydata-carolinas-2016 issues
Sort by
recently updated
recently updated
newest added
from keras.layers import Input, Embedding, merge, Flatten, Reshape, Lambda import keras.backend as K from keras.models import Model input_sentence = Input(shape=(sentence_maxlen,), dtype='int32') input_embedding = Embedding(n_words, n_embed_dims)(input_sentence) avepool = Lambda(lambda x: K.mean(x,...
Shouldn't [0 1] and [1 0] be True? https://en.wikipedia.org/wiki/Exclusive_or#Truth_table In both Theano and Keras XOR notebooks it looks like you have them flipped.