Comments

You must log in or register to comment.

KBM_KBM t1_ja70ytj wrote

Hopefully it is easier to use than pytorch geometric

18

mlmaster17 t1_ja777wt wrote

I actually find it (DGL) very easy to use. I switched from PyG just over a year ago because DGL was easier to install across MacOS, Linux, and Windows. Some of the recent PyG updates are interesting but not enough for me to move back. Anyway, I find both libraries to be very similar so I think either choice is good.

13

Gamond_Jass t1_ja8aahj wrote

I was using it on my research, I’m glad the first stable version dropped. I’ll check the changes.

1

xFreaki t1_ja8pgws wrote

I'm using it on my masters thesis atm. Having problems because of a deprecated feature without replacement (g sampling)

5

YodaML t1_ja9ykvh wrote

Interesting as I have not had much trouble reproducing the results from papers I use as baselines. I find that sometimes, weight initialisation can make a difference so read the paper carefully on how they initialised the convolutional layer weights and check that DGL is using the same method. If not, do a custom initialisation based on the paper.

1