-
## ❔Question
我初始化模型:
```
model = AutoModel('seq2seq', custom_model_params={
"rnn_type": "lstm",
"bi_direction": False,
"rnn_size": 64,
"dense_siz…
-
This is a illustration of the seq2seq model with attention for DLpredictor.
![seq2seq_plus_attention](https://user-images.githubusercontent.com/60371672/154518241-1d05ebe3-592e-416f-a03a-5ef272739f98…
-
`__init__.py` fails with AttributeError, `max_length` does not exist. Fixing this results in a concat error in the `Attn` class:
~~~
45 elif self.method == 'concat':
---> 46 …
-
I am wondering if the attention score calculation could be vectorized to run per batch instead of running two loops (batch size x encoder time steps)
The sections of code are here:
```
class Attn…
pravn updated
6 years ago
-
I am getting the following error when I ran decoding with `unk_replace`. The training was done with `nmt_medium.yml`, which is using `AttentionSeq2Seq` model.
```
Traceback (most recent call last…
-
#My System Configurations
**CUDA: 9.1**
**libCUDNN 7.1**
Tensorflow Version: '1.8.0-rc0'
The system works for default Vietnam to English dataset but while training with Bodo English dataset th…
-
This is my first time to use seq2seq,and this problem confused me about one week.
tensorflow 1.8
python 2.7
I don't know how to solve this problem.
----------------------------------------…
-
Transformers might be a good alternative for time series compared to LSTM.
Mamba as well (not available in pytorch yet: https://github.com/pytorch/pytorch/issues/120189)
Other ideas: lstm with encod…
acxz updated
3 months ago
-
-
I ran this command
"python src/launcher.py --phase=test --visualize --data-path=evaluation_data/svt/test.txt --data-base-dir=evaluation_data/svt --log-path=log.txt --load-model --model-dir=model --o…