show_attend_and_tell.tensorflow
show_attend_and_tell.tensorflow copied to clipboard
updated according to custom images
Have somebody train out a good result with the built model in this repo?Trying to recurrent the result in this repo, until now the result is not satisfactory......
@jazzsaxmafia Have you trained out a good model from your code ? There might be a bug: In the function of **build_model** and **build_generator** in **model_tensorflow.py** `h = o *...
In the following code, it seems that the parameter 'c' is never used. ` ``` lstm_preactive = tf.matmul(h, self.lstm_U) + x_t + tf.matmul(weighted_context,self.image_encode_W) i, f, o, new_c = tf.split(1, 4,...
Thank you very much for sharing. I want to use the attention model to do video classification, but there is always a gradient vanishing during the training. Have you had...
I am trying to test the model. So I want model-8 and annotations.pickle file. Can anyone please share the files ?
ERROR LOG: ``` C:\Python35\python.exe C:/MainProject/show_attend_and_tell/model_tensorflow.py Using TensorFlow backend. preprocessing word counts and creating vocab based on word count threshold 30 filtered words from 20326 to 2942 Traceback (most recent call...
In model.py, both in function `build_model(self)` and `build_generator(self, maxlen)`, there is a line `state = tf.zeros([self.batch_size, self.lstm.state_size])`. However, this line cannot run (I am running on tf 0.12). Since self.lstm.state_size...
I want to train and test in my dataset, and I have trained in my dataset and got the model. How do I generate files(guitar.npy) when testing?