-
**System information**
- Have I written custom code (as opposed to using a stock example script provided in TensorFlow.js):
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Windows 11
…
kzay updated
5 months ago
-
Your bidirectional LSTM's implementation has a mistake. ```go_backwards=True``` in LSTM (rnn_1b, rnn_2b) is only reverse the input before using LSTM, so you have to reverse the output of LSTM before …
-
### Deep Learning Simplified Repository (Proposing new issue)
:red_circle: **Project Title** : Next Word Predictor using Deep Learning
:red_circle: **Aim** : To find the generate word of the given s…
-
Like we are provided with lstm checkpoints, I wonder if anyone would be willing to share their checkpoint files for bidirectional LSTM or if the author @charlesashby can share that.
Thank you
-
hi Abraham and first of all, thank you for your amazing job... i have a couple of question:
- what's the purpose of the back up?
why in some particular cases you perform a backup? is it necessary …
-
Does anyone have an implementation of a bidirectional gpt model? Like bi-lstm.
-
Just create this dataset:
```python
import numpy as np
import pandas as pd
multi_target_test_data = pd.DataFrame(
dict(
target1=np.random.rand(30),
target2=np.random.ran…
-
Hello, I didn't encounter any errors when training small amounts of data, but when I tried to train several Gs worth of data, I received the following error. Could you please advise me on how to fix i…
XLOXL updated
1 month ago
-
when i run the code, I meet the following problem. I hope that you can help me. Thanks.
(pytorch_gpu) G:\RNN-Capsule>python main.py --rnn_type LSTM --name_model 'LSTM-Capsule' --data_dir ./data-rt-a…
ZXXSG updated
5 months ago
-
input_text = Input(shape=(1,), dtype="string")
embedding = ElmoEmbeddingLayer()(input_text)
lstm_output = Bidirectional(LSTM(120))(embedding)
error:
File "E:/workspaces/python/elm…