Doc String Correction: Attention class forward function

This commit is contained in:
Tejas Mahajan 2020-06-15 22:22:51 +05:30
parent d38c3cbfdb
commit 4be75b3877
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ class Attention(nn.Module):
def forward(self, batch_H, text, is_train=True, batch_max_length=25):
"""
input:
batch_H : contextual_feature H = hidden state of encoder. [batch_size x num_steps x num_classes]
batch_H : contextual_feature H = hidden state of encoder. [batch_size x num_steps x contextual_feature_channels]
text : the text-index of each image. [batch_size x (max_length+1)]. +1 for [GO] token. text[:, 0] = [GO].
output: probability distribution at each step [batch_size x num_steps x num_classes]
"""