-
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.
----------------------------------------…
-
## Reference
- [paper - 2018 - SCAN: Sliding Convolutional Attention Network for Scene Text Recognition](https://arxiv.org/pdf/1806.00578v1.pdf)
## Brief
- Sliding Windows + CNN + Seq2Seq
- Seq2…
-
i am getting this error, as this function is not present after tensorflow version 1.0. can u suggest the code with new functions in upgraded functions of tensorflow?
-
This part of the code:
```
# Create the training and inference logits
train_logits, inference_logits = seq2seq_model(
tf.reverse(input_data, [-1]), targets, keep_prob, batch_size, sequence_l…
-
https://github.com/JayParks/tf-seq2seq/blob/master/seq2seq_model.py#L368
It gives that the dimension 0 of inputs and attention do not match (as we are tile_batching it to batch_size * beam_width). Di…
-
**System information**
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Windows 10
- TensorFlow version and how it was installed (source or binary): 2.2.0, binary
- TensorFlow-Addons ve…
-
# 어텐션 메커니즘 (Attention Mechanism) : Seq2Seq 모델에서 Transformer 모델로 가기까지 | Reinventing the Wheel
[https://heekangpark.github.io/nlp/attention](https://heekangpark.github.io/nlp/attention)
-
When training the model by running the train.py command, I encounter the following issue:
python train.py
I tensorflow/stream_executor/dso_loader.cc:108] successfully opened CUDA library libcublas.so…
-
I am implementing a Seq2Seq model in Tensorflow. I have pre-trained weights for the model, when I used Greedydecoder, I got a normal score like 14.12, but when I used BeamsearchDecoder(beamsize=3 or 5…
-
I have been LM-Cocktail for merging Language models, specifically the 'mix_models_with_data' function. However, I noticed there are only implementations for encoder or decoder models, not encoder-deco…