sequence-to-sequence Questions
1
Solved
I'm trying to go seq2seq with a Transformer model. My input and output are the same shape (torch.Size([499, 128]) where 499 is the sequence length and 128 is the number of features.
My input looks ...
Meredith asked 17/11, 2020 at 14:3
2
Solved
I've tried to build a sequence to sequence model to predict a sensor signal over time based on its first few inputs (see figure below)
The model works OK, but I want to 'spice things up' and try ...
Irreconcilable asked 12/5, 2020 at 16:56
5
I have a sequence to sequence learning model which works fine and able to predict some outputs. The problem is I have no idea how to convert the output back to text sequence.
This is my code.
fro...
Concertino asked 1/2, 2017 at 3:51
3
Solved
I have coded a sequence to sequence learning LSTM in keras myself using the knowledge gained from the web tutorials and my own intuitions. I converted my sample text to sequences and then padded us...
Edette asked 2/2, 2017 at 12:49
0
this question is an extension of this one which focuses on LSTM as opposed to CRF. Unfortunately, I do not have any experience with CRFs, which is why I'm asking these questions.
Problem:
I would...
Steamship asked 31/12, 2018 at 12:45
1
Solved
I'm working on a sequence forecasting problem and I don't have much experience in this area, so some of the below questions might be naive.
FYI: I've created a follow-up question with a focus on C...
Parley asked 30/12, 2018 at 12:43
2
Solved
I'm having trouble using buckets in my Tensorflow model. When I run it with buckets = [(100, 100)], it works fine. When I run it with buckets = [(100, 100), (200, 200)] it doesn't work at all (stac...
Xenos asked 30/6, 2017 at 22:31
3
Solved
The newest Tensorflow api about seq2seq model has included scheduled sampling:
https://www.tensorflow.org/api_docs/python/tf/contrib/seq2seq/ScheduledEmbeddingTrainingHelper
https://www.tensorflow...
Ify asked 5/5, 2017 at 2:15
1
I can't seem to find a concrete answer to the question of how to feed data into Keras. Most examples seem to work off image / text data and have clearly defined data points.
I'm trying to feed mu...
Williswillison asked 15/8, 2017 at 5:36
1
Solved
I managed to build a sequence to sequence model in tensorflow using the tf.contrib.seq2seq classes in 1.1 version.
For know I use the TrainingHelper for training my model.
But does this helper fee...
Birdie asked 7/5, 2017 at 0:51
1
Solved
I am trying to write a sequence to sequence RNN in keras. I coded this program using what I understood from the web. I first tokenized the text then converted the text into sequence and padded to f...
Lafountain asked 30/1, 2017 at 10:47
1
Solved
Is there a way to visualize the attention weights on some input like the figure in the link above(from Bahdanau et al., 2014), in TensorFlow's seq2seq models? I have found TensorFlow's github iss...
Concerto asked 15/11, 2016 at 3:34
1
© 2022 - 2024 — McMap. All rights reserved.