-
Notifications
You must be signed in to change notification settings - Fork 34
Open
Description
Hi,
I have read your paper it says it derives the conv features first from the w2v embedding and then applied multi-head attention over that to arrive at final message embeddings and then applied GRE to obtain another representation. but in your code directly conv features are fed for classification
Please clarify:
conv_feature = torch.cat(conv_block, dim=1)
features = self.dropout(conv_feature)
a1 = self.relu(self.fc1(features))
d1 = self.dropout(a1)
output = self.fc2(d1)
return output
where fc2 -----> self.fc2 = nn.Linear(300, config['num_classes'])
I am writing the survey paper to include your results please verify the code or give me the updated code as per paper.
DayDreamChaser
Metadata
Metadata
Assignees
Labels
No labels