Xiaoxuan Lu
Xiaoxuan Lu
@zainmehdi I try to reproduce what you did, but got the error when I make `libQGLViewer-2.7.0`: **config.h:79:25: fatal error: QOpenGLWidget: No such file or directory #include ** I am using...
@zainmehdi I tried @blairlpp 's solution, but got the following error when I try to `make`: [ 48%] Linking CXX executable ../../../../bin/g2o_viewer /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libQGLViewer.so: undefined reference to `gluNewQuadric' /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libQGLViewer.so: undefined reference...
Hi, any update on this? I got the same error.
Hi, Can this modification make the `load_model()` work? For now, I can only use the `model.load_weights()` method.
@johntzwei Hi, it saves properly, but when I try `model = load_model(model_path, custom_objects={'_OptionalInputPlaceHolder': _OptionalInputPlaceHolder, 'LSTMDecoderCell': LSTMDecoderCell, 'RecurrentSequential': RecurrentSequential, 'AttentionDecoderCell': AttentionDecoderCell})`, it gives me error messages as follows: **File "build/bdist.linux-x86_64/egg/seq2seq/cells.py", line...
@Slyne how to parse the output to the new network added with softmax? Is it still in the format of [length_output, num_classes]? And did you add `softmax` in the seq2seq...
@Slyne It runs, thx. Just to confirm, **in the case** we added dense and softmax after seq2seq, how do you set the the parameters of `output_length` and `output_dim` in `Seq2Seq(...,...
@martin3252 @Slyne @gibrown After applying `model.add(TimeDistributed(Dense(output_dim)))` and `model.add(Activation('softmax'))` of AttentionSeq2Seq, did you guys ever meet the problem of gradient vanishing (on tensorflow backedn, and on I tried on theano as...
@Slyne I used `model.compile(loss='categorical_crossentropy', optimizer=Adam(), metrics=['accuracy'])` After setting the learning_rate of Adam as default, the NaN problem gets alleviated, however, it still comes up after a hundred epochs. Epoch 140/200...
Hi, Got the same issue on the voxceleb_v1 dataset. I can see the loss is consistently decreasing from 7.2 to 6.01, but the eval/train accuracy is always 0. Have you...