You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but when i looking the model of SimpleGATBERTNet,
x = self.fc1(gnn_x)
x = self.fc2(x)
x = F.log_softmax(x, dim=1)
return x
this only return one parm, Am I wrong
The text was updated successfully, but these errors were encountered:
I also encounter the same problem few weeks ago, the code provided by the author has several problems.
For the issue you mentioned here, modifying the following line
the coding result of return contain 2 parm:
emb, out_labels= model(Batch_data),
but when i looking the model of SimpleGATBERTNet,
x = self.fc1(gnn_x)
x = self.fc2(x)
x = F.log_softmax(x, dim=1)
return x
this only return one parm, Am I wrong
The text was updated successfully, but these errors were encountered: