show-attend-and-tell icon indicating copy to clipboard operation
show-attend-and-tell copied to clipboard

TensorFlow Implementation of "Show, Attend and Tell"

Results 58 show-attend-and-tell issues
Sort by recently updated
recently updated
newest added

Thank you very much for sharing your code. I was wondering if you preprocessed the image somewhere, e.g. subtracting the mean pixel values?

I get the following error on executing train.py. Does somebody knows what this is about? Traceback (most recent call last): File "train.py", line 25, in main() File "train.py", line 8,...

Hi, According to https://github.com/vanpersie32/show-attend-and-tell/blob/master/core/model.py#L160-L171, the model is not unrolled in a fixed length mode. But I want ask how to unroll the model dynamically?

According to https://github.com/vanpersie32/show-attend-and-tell/blob/master/core/model.py#L160-L171, the model recurse in a fixed steps regardless of the length of the input sentence. If the sentence length is much smaller than the fixed steps, it...

Can you provide the models already trained?

WARNING:tensorflow:: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True. Traceback (most recent call last): File "train.py", line 25, in main() File "train.py", line 22, in...

`tf.einsum` provides a pretty way to do tensor multiplications past 2D. Simplifies the code but only slightly, mostly increases readability.

I'm having trouble understanding the magic constant `16./196` in https://github.com/yunjey/show-attend-and-tell/blob/master/core/model.py#L176. In the paper, this value is `1`, meaning they try to force the different alphas to sum up to 1...

my RAM is not big enough to run this code, so I'm trying to split batch size to be smaller. and I'm having trouble with the size of train.features.hkl It...