-
When i run python -m unittest seq2seq.test.pipeline_test, i get the follow errors:
======================================================================
ERROR: seq2seq (unittest.loader._FailedTest)…
-
Traceback (most recent call last):
File "train.py", line 139, in
main()
File "train.py", line 116, in main
epoch_loss = train(input_variable, target_variable, encoder, decoder, encode…
-
ERROR: seq2seq (unittest.loader._FailedTest)
----------------------------------------------------------------------
ImportError: Failed to import test module: seq2seq
Traceback (most recent call la…
-
**What does it mean?**
```
InvalidArgumentError (see above for traceback): assertion failed: [All values in memory_sequence_length must greater than zero.] [Condition x > 0 did not hold element-wise…
-
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…
-
## ❔Question
我初始化模型:
```
model = AutoModel('seq2seq', custom_model_params={
"rnn_type": "lstm",
"bi_direction": False,
"rnn_size": 64,
"dense_siz…
-
Not sure whats going on, but when I try the setup I get an error
```
ImportError: Failed to import test module: seq2seq
Traceback (most recent call last):
File "C:\Users\charl\AppData\Local\Prog…
-
NMT is failing at the time of training:
```
InvalidArgumentError (see above for traceback): assertion failed: [All values in memory_sequence_length must greater than zero.] [Condition x > 0 did no…
-
`__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