Bo Pan

Results 3 comments of Bo Pan

Yes. It seems that the cuda ext is not installed successfully. My env: cuda 10.1, gcc 8, pytorch 1.4, my install log is: > running install > running bdist_egg >...

> Hi @kiarashza and @shayestehfard , > > I am also trying to run the code on enzymes without any changes, but unfortunately the max pool matching code seems to...

> Hi all, I solved this issue by changing the `adj_recon_loss` function in `graphvae/model.py` to: ``` def adj_recon_loss(self, adj_truth, adj_pred): return F.binary_cross_entropy_with_logits(adj_truth, adj_pred) ``` Thanks.