wailoktam

Results 26 comments of wailoktam

Thanks for your reply. Can you be more specific on the instruction? I do include the theano options. But I have to add device=cuda as the latest theano requires that....

Hi, thanks for your response. I have tried running 100 epochs and the result (top 1 precision) looks close to what is posted here. However, this is still quite different...

Hi, I have changed my keras installation as stated in: https://github.com/fchollet/keras/pull/2413 after installing keras 1.03. And then I change the following line in keras_model.py: qa_model = merge([question_output, answer_output], mode=similarity, output_shape=lambda...

Hi, I replace my Keras installation with what is found here: https://github.com/codekansas/keras Now it is yielding this warning: /home/ubuntu/anaconda2/lib/python2.7/site-packages/Keras-1.0.1-py2.7.egg/keras/backend/theano_backend.py:509: UserWarning: theano.function was asked to create a function computing outputs given...

Hi, thanks for you guy's prompt response. I have not yet start checking the cause of the error. I once get such error for my own code because I define...

Hi, I am trying to reduce the size of the training set and reducing the training epochs such that I can speed up debugging. (I am looking for the cause...

Thanks for your prompt response. I think the x in fit is the training sample whereas the y in fit is the label (1 for correct label and 0 for...

I figure out how to do away with the warning about unused input: Changing the following line: `self.training_model.compile(loss=lambda y_true, y_pred: y_pred, optimizer=optimizer, **kwargs)` to: `self.training_model.compile(loss=lambda y_true, y_pred: y_pred + y_true...

Hi, thanks for your prompt reply. So the following line is necessary for using the embedding layer in Keras? `'initial_embed_weights': np.load('word2vec_100_dim.embeddings')` Is my understanding correction: Keras won't train its own...

Hi, do you mean outfilename.syn0.np = word2vec_100_dim.embeddings?