-
Hi Chris
In one of your classifiers rnn.py, I found a possible bug, I might be wrong but just fyi.
In your forward() function:
"""
if True:
if self.rnn_type == 'gru':
…
-
Hello, just a question if there are any plans to support NAM https://github.com/sdatkinson/neural-amp-modeler format. It would be amazing addition for this plugin I would say.
-
def compute_init_memory(self, images, questions, ques_lens, keep_prob):
# ut
state_fw = tf.contrib.rnn.LSTMCell(self.rnn_size, use_peepholes=False).zero_state(self.batch_si…
-
train_rnn.py文件里的from RNN import *代码报错,不太了解是否有RNN这个库,而且环境下pip install RNN后依然报错ModuleNotFoundError: No module named 'RNN'
-
```
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
in ()
----> 1 pred = RNN(x, weights, bi…
-
I want to use LSTM as the encoder of sentences and then calculate their similarity based on it.
But when I train the model, it seems that the parameters of it dont change at all.
I've also tried other…
-
Good understanding of deep learning architectures like Multi-Layer Perceptron, Recurrent Neural Networks (RNNs), Long Short Term Memory models (LSTMs), Gated Recurrent Units (GRUs), and Convolutional …
-
I'm trying to add a Basic LSTM layer after the conv2d layers on the [AC3 demo](https://github.com/tflearn/tflearn/blob/master/examples/reinforcement_learning/atari_1step_qlearning.py) but I get
``…
-
### 📚 The doc issue
[https://pytorch.org/docs/1.8.1/generated/torch.nn.GRU.html#torch.nn.GRU](https://pytorch.org/docs/1.8.1/generated/torch.nn.GRU.html#torch.nn.GRU)
[https://pytorch.org/docs/1.9.0…
-
### Describe the issue
I now want multiple threads to load the same model and perform inference in a data-parallel manner. To reduce memory usage, I want to avoid having each session individually rea…