Bug report for transfer learning.
ha-lins opened this issue · 1 comments
ha-lins commented
huangzizheng01 commented
Two things for this bug in transferLearning_MoleculeNet_PPI\bio may help (maybe similar in chem):
- replace
cat_dim
to__cat_dim__
inloader.py
line177 - replace
return self.propagate(self.aggr, edge_index, x=x, edge_attr=edge_embeddings)
inmodel.py
line52 withreturn self.propagate(edge_index[0], x=x, edge_attr=edge_embeddings)
and replace line111 withreturn self.propagate(edge_index[0], x=x, edge_attr=edge_embeddings, norm = norm)