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 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