-
# KerasLSTMExample.R
# library(asympTest)
library(dplyr)
library(keras)
install_keras()
cat("keras loaded\n")
print("keras implementation:")
print(implementation())
# install_keras()
pr…
-
I have a problem with the Seq2Seq library, and I'm trying to use this tutorial to find out where my bug is. My problem is that my model's alignment values are initially uniformly distributed across en…
-
Hi,
While I was trying to run the auDeep baseline in the compare18, it stops with a lot of errors.
As I track them down, the initial error is from t-rae training procedure as following. Can you …
-
Please make sure that the boxes below are checked before you submit your issue. If your issue is an implementation question, please ask your question on [StackOverflow](http://stackoverflow.com/questi…
-
Hello, I would like to run this project, however I lack the GPU resources to train the model. Could a pre-trained model be shared so that it can be downloaded and the project can quickly be replicated…
vshan updated
6 years ago
-
here is my original keras model
def inference(image_tensor):
# the input size is 90*30*3
x = Conv2D(32,(3,3),name='conv1')(image_tensor)
x = MaxPool2D((2,2),name='pool1')(x)
x =…
-
I can't find it in the paper. Is it intentional or an accident?
Line 116 to 118:
gP = Bidirectional(GRU(units=H,
return_sequences=True,
…
-
I am trying to implement the Character CNN + LSTM model presented in this paper (http://arxiv.org/abs/1511.08308) for Named Entity Recognition using Keras. However, I am facing issue with including th…
-
### System information
Make sure to provide all system information that may be relevant to the issue you are reporting. Some common points are:
- **Have I written custom code (as opposed to using …
LuoDQ updated
6 years ago
-
I'm trying to build a sequence to sequence classifier for natural language tagging. One common problem is the variable length sequences of sentences (both in input and in output). Now I'm trying to us…