-
-
Notifications
You must be signed in to change notification settings - Fork 88
Description
I am not a professional computer engineer, so I would like to point out some problems I encountered during the installation process, which may be inaccurate.
Problem1: pip install graph-weather
ModuleNotFoundError: No module named 'graph_weather.data.nnjai_wrapp'
The installed PyPI version of the project is incomplete.
Problem2: environment_cuda.yml
Direct installation of the environment may result in errors because require python=3.12. The CUDA version of PyTorch currently only supports Python 3.11 in conda. For 3.12, you can only install the official CUDA wheel using pip.
Problem3: Project needs 'anemoi.datasets'
However, anemoi depends on plotly.plotly, which is unfortunately deprecated.
Discussion on GNN performance
In general this is a very good library. I am currently having some doubts in the process of learning GNN and hope to get some inspiration from this library.
In the article "Forecasting Global Weather with GNN", there is a clear comparison with the CNN model and shows that GNN performs much better. I couldn't find the code on the original author's homepage, so I came to your project library to look for inspiration.
But in fact, when I was testing AI meteorology model, I found that the performance of GNN on meteorological analysis/reanalysis data was far inferior to that of CNN designed for structured data.
The author of HRRRCast seems to have made similar findings. I would like to ask you professional researchers, how does the performance of GNN compare to that of CNN? Is there any comprehensive comparison between GNN and CNN under the same conditions?