-
Hi, I am using keras 3.2 and when using the ntm layer I had an
error:
574
575 def step(self, x, states):
--> 576 assert len(states) == 4 # 2 states and 2 constants
577 …
-
switching to sparse arrays had a huge negative impact on scores for giveCredit. it about doubled (from 80 to 160) my position.
see if maybe we can do something as simple as format and save and load …
-
Hello,
I'm working on a music composition regression problem, and I am trying to get an output of a series of musical notes modeled in the tensor shape (number of batches of notes, number of notes pe…
-
The way the `UnitNorm` and `MaxNorm` constraints work is currently somewhat different, and problematic on certain layer types. For example if one wanted unit-norm convolutional filters weights, these …
-
Hello everyone,
I open this post to present some new APIs and types of model i have in mind, before start working on them in order to understand: are they feasible? are they needed? or simply understa…
-
Hi, I am new to Keras, and found a NLP example in Keras 0.1.2
https://github.com/vsl9/Sentiment-Analysis-with-Convolutional-Networks/blob/master
However it is out-of-date, can anyone show me how to…
-
My first few hours with Keras were needlessly a lot more painful than needed, because I didn't realize most of the examples at http://keras.io/examples/ and elsewhere were geared at categorical, not b…
pasky updated
8 years ago
-
What would it take to add a GRU variation to compare with LSTMs?
-
layers.py, on which most of the nntools code is based, has always been geared towards feed-forward neural networks. We should look into recurrent neural networks as well. Personally I don't have a lot…
-