mukhlishga / gnn-powerflow

Graph Neural Network application in predicting AC Power Flow calculation. Developed with Pytorch Geometric framework. My Master Thesis at Eindhoven University of Technology
64 stars 15 forks source link

about graph #1

Open chostorjax opened 1 year ago

chostorjax commented 1 year ago

Hello! I want to know that when you predict in a timestep,did you use one P and one Q to predict one V and &?

mukhlishga commented 1 year ago

Hi, sorry it's been a while so I need to remember it correctly. But if I'm not mistaken, yeah that's correct.

chostorjax commented 1 year ago

Thanks for your answer! I already know by learning your code.Do you still working something about graph neural network?your code is perfect for me to learn graph neural network.

mukhlishga commented 1 year ago

Hi, nice to know that. I am now fully in software engineering, so rarely touch ML. You can see my other repos where I coded gnn from scratch instead of using built-in framework like the one I used here. There you can see the step-by-step gnn algorithm. Hope that helps

Ayomi993 commented 1 year ago

Hi. Thank you for this! Can you please share the references and resources you used to learn more about GNN/GCN theory and programming in Python? I could not find something I could use to learn to develop something similar to your code.

Thanks in advance.

mukhlishga commented 1 year ago

I still remember it like yesterday that this GNN resource from Stanford was like the gold mine of GNN, truly helped me get through my thesis life. https://www.youtube.com/watch?v=w9phpqZBt7k&list=PLQjfNCRPCjmZYPsZkjKVm6xoFqzFYWjTI&index=11&ab_channel=AbenDu You can watch the overall lecture about graph ML in the playlist, but lecture no 8 and 9 is the core of GNN concept and its implementation using PyTorch

Ayomi993 commented 1 year ago

I still remember it like yesterday that this GNN resource from Stanford was like the gold mine of GNN, truly helped me get through my thesis life. https://www.youtube.com/watch?v=w9phpqZBt7k&list=PLQjfNCRPCjmZYPsZkjKVm6xoFqzFYWjTI&index=11&ab_channel=AbenDu You can watch the overall lecture about graph ML in the playlist, but lecture no 8 and 9 is the core of GNN concept and its implementation using PyTorch

Thanks alot!