-
hi, I met up with an error : ValueError: Trying to share variable stack_bidirectional_rnn/cell_0/bidirectional_rnn/fw/lstm_cell/kernel, but specified shape (120, 160) and found shape (53, 160) when I …
-
"Converting sparse IndexedSlices to a dense Tensor of unknown shape. "
WARNING:tensorflow:Variable cls_pred/weights missing in checkpoint data/vgg_16.ckpt
WARNING:tensorflow:Variable BiLSTM/bidirect…
MS-MA updated
5 years ago
-
InvalidArgumentError: Graph execution error:
2 root error(s) found.
(0) INVALID_ARGUMENT: No OpKernel was registered to support Op 'CudnnRNN' used by {{node CudnnRNN}} with these attrs: [seed=0…
-
Is there a way to train a bidirectional RNN (like LSTM or GRU) on trax nowadays?
-
I would like to use a data generator and tune epochs and batch size of a BLSTM Model. How do I pass the generator to the trial function?
Batch Generator :
```
def batch_generator(ids, batch_size…
-
pytorch version1.0.1
libtorch version 1.0.1
```
...
self.lstm_1 = nn.LSTM(512 * 8, 100, 1, bidirectional=False)
...
traced_script_module = torch.jit.trace(net, img)
traced_script_module.sav…
-
Hello, author.
After I entered the command ‘python ./main/train.py’.then,without any error message, the ccode was stopped running . The terminal output the following:
===============================…
-
Hi, thanks for the helpful work.
Coudl I ask if any plan for supporting bidirectional lstm with custom stacks?
-
Hi team. thanks for great work.
I'm currently trying to construct seq2seq model with Bahdanau style, featured by bidirectional encoder - decoder using GRU cell.
This repository, however, doesn't see…
-
Hi, I am wondering how to implement bidirectional RNNs, instead of reversing the sequence beforehand,
by internally changing the order to feed.
take LSTM as example, can one just modify `x[{{}, t}]` …