Cartik

Results 5 issues of Cartik

Hi, I'm setting up my keras layer for glove embeddings as follows: X = X[:set_size] y = y[:set_size] yy = [] for i in range(0,len(X)): yy = np.concatenate((yy,X[i,0:set_size]), axis=0) X...

I'm creating my embedding from glove.6B file as follows embedding_layer = Embedding(input_dim=embedding_matrix.shape[0], output_dim=embedding_matrix.shape[1], input_length=max_len, weights=[embedding_matrix], trainable=False, name='embedding_layer') sequence_input = Input(shape=(max_len,), dtype='int32') tf.squeeze(tf.cast(sequence_input, tf.string)) embedded_sequences = embedding_layer(sequence_input) return embedded_sequences This gets...

Hi Guys, Got qbsolv to build on windows just like the ree bsdbuild. I'm facing a problem with qbsolv. qbsolv on windows command line doesn't converge when given the same...

I'm trying to build qbsolv on windows using MS Visual Studio 14, 2015 using CMake I'm getting errors in header files such as vadefs.h, vcruntime.h, attached error list. Please advise...

I'm running classify on the MRPC dataset. In trainer.train trainer.train(get_loss,model_file,True), it allows only three arguments not 4 so I cant use the pretrain file. Also it runs out of memory,...